├── .gitignore └── themifyflow ├── buddypress.php ├── comments.php ├── footer.php ├── functions.php ├── header.php ├── includes ├── author-box.php ├── loop.php ├── pagination.php └── post-nav.php ├── index.php ├── media-queries.css ├── page.php ├── screenshot.png ├── searchform.php ├── sidebar.php ├── single.php ├── style.css ├── tf ├── assets │ ├── css │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── list.html │ │ ├── jquery.minicolors.css │ │ ├── tf-admin.css │ │ ├── tf-updater.css │ │ └── themify-icons │ │ │ ├── themify-icons.css │ │ │ ├── themify.eot │ │ │ ├── themify.svg │ │ │ ├── themify.ttf │ │ │ └── themify.woff │ ├── img │ │ ├── builder │ │ │ ├── 1-col.png │ │ │ ├── 1.3_2.3.png │ │ │ ├── 1.4_1.4_2.4.png │ │ │ ├── 1.4_2.4_1.4.png │ │ │ ├── 1.4_3.4.png │ │ │ ├── 2-col.png │ │ │ ├── 2.3_1.3.png │ │ │ ├── 2.4_1.4_1.4.png │ │ │ ├── 3-col.png │ │ │ ├── 3.4_1.4.png │ │ │ ├── 4-col.png │ │ │ ├── 5-col.png │ │ │ ├── 6-col.png │ │ │ ├── dashed.png │ │ │ ├── dotted.png │ │ │ ├── double.png │ │ │ ├── fullwidth.png │ │ │ ├── grid2.png │ │ │ ├── grid3.png │ │ │ ├── grid4.png │ │ │ ├── image-center.png │ │ │ ├── image-left.png │ │ │ ├── image-overlay.png │ │ │ ├── image-right.png │ │ │ ├── image-top.png │ │ │ ├── list-post.png │ │ │ ├── solid.png │ │ │ ├── video-left.png │ │ │ ├── video-overlay.png │ │ │ ├── video-right.png │ │ │ └── video-top.png │ │ ├── favicon.png │ │ ├── flow-wheel.png │ │ ├── jquery.minicolors.png │ │ └── layout-icons │ │ │ ├── footer.png │ │ │ ├── header.png │ │ │ ├── none.png │ │ │ ├── sidebar1-left.png │ │ │ ├── sidebar1.png │ │ │ └── sidebar2.png │ └── js │ │ ├── google-fonts-recommended.json │ │ ├── google-fonts.json │ │ ├── tf-admin.js │ │ ├── tf-updater.js │ │ ├── tf │ │ ├── admin-setup.js │ │ ├── collections │ │ │ ├── controls.js │ │ │ └── elementstyles.js │ │ ├── mixins │ │ │ ├── builder.js │ │ │ └── stylingcontrolfield.js │ │ ├── models │ │ │ ├── control.js │ │ │ ├── elementstyle.js │ │ │ ├── style.js │ │ │ ├── template.js │ │ │ └── utility.js │ │ ├── setup.js │ │ ├── tf-updater.js │ │ ├── tf.js │ │ ├── theme.js │ │ ├── utils.js │ │ └── views │ │ │ ├── builder.js │ │ │ ├── builderelement.js │ │ │ ├── lightbox.js │ │ │ ├── loader.js │ │ │ ├── stylingcontrol.js │ │ │ └── templatepart.js │ │ ├── themify.dropdown.js │ │ ├── themify.scroll-highlight.js │ │ └── vendor │ │ ├── jquery.minicolors.js │ │ ├── jquery.nicescroll.js │ │ └── jquery.tipsy.js ├── classes │ ├── class-tf-admin.php │ ├── class-tf-ajax.php │ ├── class-tf-backend.php │ ├── class-tf-content-builder.php │ ├── class-tf-duplicate.php │ ├── class-tf-editor-ui.php │ ├── class-tf-form.php │ ├── class-tf-frontend.php │ ├── class-tf-layout.php │ ├── class-tf-menu-icons.php │ ├── class-tf-model.php │ ├── class-tf-settings.php │ ├── class-tf-shortcodes.php │ ├── class-tf-template-options.php │ ├── class-tf-updater.php │ ├── class-tf-validator.php │ ├── class-tf-walker-nav-menu-edit.php │ ├── engine │ │ ├── class-tf-engine-style-loader.php │ │ ├── class-tf-engine-theme-loader.php │ │ └── class-tf-engine.php │ ├── import-export │ │ ├── class-tf-export.php │ │ └── class-tf-import.php │ ├── modules │ │ ├── class-tf-module-element-loader.php │ │ ├── class-tf-module-element.php │ │ ├── class-tf-module-loader.php │ │ └── class-tf-module.php │ ├── theme-elements │ │ ├── class-tf-interface.php │ │ ├── class-tf-styling-control.php │ │ ├── class-tf-styling-panel.php │ │ ├── class-tf-template-part.php │ │ ├── class-tf-template.php │ │ └── class-tf-theme.php │ └── updater │ │ ├── class-tf-update-check.php │ │ └── class-tf-upgrader.php ├── includes │ ├── data │ │ └── theme-base.zip │ ├── functions │ │ └── tf-core-functions.php │ ├── modules │ │ ├── archive-loop │ │ │ ├── class-tf-module-archive-loop.php │ │ │ ├── class-tf-module-single-loop.php │ │ │ ├── elements │ │ │ │ ├── featured-image.php │ │ │ │ ├── post-excerpt-content.php │ │ │ │ ├── post-meta.php │ │ │ │ ├── post-text.php │ │ │ │ └── post-title.php │ │ │ └── module.php │ │ ├── author-box │ │ │ └── module.php │ │ ├── category-description │ │ │ └── module.php │ │ ├── category-image │ │ │ └── module.php │ │ ├── category-title │ │ │ └── module.php │ │ ├── comments │ │ │ └── module.php │ │ ├── divider │ │ │ └── module.php │ │ ├── icon │ │ │ └── module.php │ │ ├── image │ │ │ └── module.php │ │ ├── list-posts │ │ │ ├── class-tf-module-list-posts.php │ │ │ └── module.php │ │ ├── menu │ │ │ ├── class-menu-dropdown.php │ │ │ └── module.php │ │ ├── next-prev-post │ │ │ └── module.php │ │ ├── page-content │ │ │ └── module.php │ │ ├── page-featured-image │ │ │ └── module.php │ │ ├── page-title │ │ │ └── module.php │ │ ├── searchform │ │ │ └── module.php │ │ ├── site-logo │ │ │ └── module.php │ │ ├── site-tagline │ │ │ └── module.php │ │ ├── template_part │ │ │ └── module.php │ │ ├── text │ │ │ └── module.php │ │ ├── video │ │ │ └── module.php │ │ ├── widget-area │ │ │ └── module.php │ │ └── widget │ │ │ └── module.php │ ├── templates │ │ ├── template-admin-about.php │ │ ├── template-admin-themes.php │ │ ├── template-backend-builder.php │ │ ├── template-content-builder.php │ │ ├── template-frontend-menu.php │ │ ├── template-module-panel.php │ │ ├── template-part-edit.php │ │ ├── template-part.php │ │ ├── template-region-edit.php │ │ ├── template-region.php │ │ ├── template-render-body.php │ │ ├── template-render-footer.php │ │ └── template-render-header.php │ ├── tmpl │ │ ├── tmpl-backend.php │ │ └── tmpl-styling-panel.php │ └── utilities │ │ ├── class-wp-cli.php │ │ ├── export.php │ │ └── parsers.php ├── languages │ └── index.php ├── styling-config.php ├── tf-hooks.php └── tf.php ├── theme-functions.php └── woocommerce.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .htaccess 3 | sitemap.xml 4 | sitemap.xml.gz 5 | wp-config.php 6 | wp-content/advanced-cache.php 7 | wp-content/backup-db/ 8 | wp-content/backups/ 9 | wp-content/blogs.dir/ 10 | wp-content/cache/ 11 | wp-content/upgrade/ 12 | wp-content/uploads/ 13 | wp-content/wp-cache-config.php 14 | .DS_Store -------------------------------------------------------------------------------- /themifyflow/buddypress.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 |

21 | 22 | 23 | 24 |

25 | 26 | 1 && get_option( 'page_comments' ) ) : ?> 28 |
29 | '‹', 'next_text' => '›') );?> 30 |
31 | 32 | 33 | 34 |
    35 | 36 |
37 | 38 | 1 && get_option( 'page_comments' ) ) : ?> 40 |
41 | '‹', 'next_text' => '›') );?> 42 |
43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | apply_filters( 'comment_form_default_fields', array( 54 | 'author' => '

' . 55 | '' . 57 | ' ' . 58 | ( $req ? '*' : '' ) . 59 | '

', 60 | 'email' => '

' . 61 | '' . 62 | ' ' . 63 | ( $req ? '*' : '' ) . 64 | '

', 65 | 'url' => '

' . 66 | '' . 67 | ' ' . 68 | '

') ), 69 | 'comment_field' => '

' . 70 | '' . 71 | '

', 72 | 'logged_in_as' => '

' . sprintf( __( 'Logged in as %s. Log out?', 'themify-flow' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( get_the_ID() ) ) ) ) . '

', 73 | 'comment_notes_before' => '', 74 | 'comment_notes_after' => '', 75 | 'cancel_reply_link' => __( 'Cancel' , 'themify-flow' ), 76 | 'label_submit' => __( 'Post Comment' , 'themify-flow' ), 77 | ); 78 | comment_form($custom_comment_form); 79 | ?> 80 | 81 | 82 | 83 | 84 | 85 |
86 | 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /themifyflow/footer.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
15 | 16 |

17 | 18 |

19 | 20 |
21 | 22 |

23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |

31 | 32 | 33 | 34 | 37 | 38 |
39 | 40 | 41 |
42 | -------------------------------------------------------------------------------- /themifyflow/includes/loop.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 |
> 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 |

22 | 23 |

24 | 25 | 26 | 27 | 28 | 29 | [', ']'); ?> 30 | 31 |
32 | 33 | 34 | 35 |
36 | 37 | 38 | -------------------------------------------------------------------------------- /themifyflow/includes/pagination.php: -------------------------------------------------------------------------------- 1 | ' : ''; 9 | $in_same_cat = ( isset( $in_same_cat ) && '1' == $in_same_cat ) ? true : false; 10 | $next_post_label = ( ! empty( $next_post_label ) ) ? '' . $next_post_label . '' : ''; 11 | $prev_post_label = ( ! empty( $prev_post_label ) ) ? '' . $prev_post_label . '' : ''; 12 | ?> 13 | 14 |
15 | 16 | %link', $arrow . $prev_post_label . ' %title', $in_same_cat ) ?> 17 | 18 | %link', $arrow . $next_post_label . ' %title', $in_same_cat ) ?> 19 | 20 |
21 | -------------------------------------------------------------------------------- /themifyflow/index.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 | 10 | 11 | 12 |
13 | 14 | 15 |

16 | 17 | 18 |
19 | 20 | 21 | 22 | '

'.__('Pages:','themify-flow').' ', 'after' => '

', 'next_or_number' => 'number')); ?> 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 | 9 |
10 | 11 | 12 | 13 |
-------------------------------------------------------------------------------- /themifyflow/sidebar.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /themifyflow/single.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | '

' . __('Pages:', 'themify-flow') . ' ', 'after' => '

', 'next_or_number' => 'number')); ?> 16 | 17 | 18 | 19 | 20 | 21 | ' + tfUpdater.invalid_login + '

'); 14 | } 15 | } else { 16 | $('.prompt-box .prompt-error').remove(); 17 | } 18 | $('.prompt-box').addClass( 'update-theme' ); 19 | $('.overlay, .prompt-box').fadeIn(500); 20 | } 21 | function hideLogin(){ 22 | $('.overlay, .prompt-box').fadeOut(500); 23 | } 24 | function showAlert(){ 25 | $('.alert').addClass('busy').fadeIn(800); 26 | } 27 | function hideAlert(status){ 28 | if(status == 'error'){ 29 | status = 'error'; 30 | showErrors(); 31 | } else { 32 | status = 'done'; 33 | } 34 | $('.alert').removeClass('busy').addClass(status).delay(800).fadeOut(800, function(){ 35 | $(this).removeClass(status); 36 | }); 37 | } 38 | function showErrors(verbose){ 39 | $('.overlay, .prompt-box').delay(900).fadeIn(500); 40 | $('.prompt-box .show-error').show(); 41 | $('.prompt-box .show-error p').remove(); 42 | $('.prompt-box .error-msg').after('

' + verbose + '

'); 43 | $('.prompt-box .show-login').hide(); 44 | } 45 | 46 | // 47 | // Upgrade Theme / Framework 48 | // 49 | $('.tf-upgrade-theme').on('click', function(e){ 50 | e.preventDefault(); 51 | _updater_el = $(this); 52 | if ( confirm( tfUpdater.confirm_update ) ) { 53 | if ( $(this).parent().hasClass( 'login' ) ) { 54 | showLogin(); 55 | } else { 56 | $('#themify_update_form').append( '' ).submit(); 57 | 58 | } 59 | } 60 | }); 61 | 62 | // 63 | // Login Validation 64 | // 65 | $('.tf-upgrade-login').on('click', function(e){ 66 | e.preventDefault(); 67 | if ( $('.prompt-box').hasClass( 'update-theme' ) ) { 68 | var el = $(this), 69 | username = el.parent().parent().find('.username').val(), 70 | password = el.parent().parent().find('.password').val(), 71 | login = el.closest( '.notifications' ).find( '.update' ).hasClass('login'); 72 | if(username != "" && password != ""){ 73 | hideLogin(); 74 | showAlert(); 75 | $.post( 76 | ajaxurl, 77 | { 78 | 'action':'tf_validate_login', 79 | 'type':'theme', 80 | 'login':login, 81 | 'username':username, 82 | 'password':password, 83 | 'nicename_short': _updater_el.data( 'nicename_short' ), 84 | 'update_type': _updater_el.data( 'update_type' ) 85 | }, 86 | function(data){ 87 | data = $.trim(data); 88 | if(data == 'true'){ 89 | hideAlert(); 90 | $('#themify_update_form').append( '' ).submit(); 91 | } else if(data == 'false') { 92 | hideAlert('error'); 93 | showLogin('error'); 94 | } 95 | } 96 | ); 97 | } else { 98 | hideAlert('error'); 99 | showLogin('error'); 100 | } 101 | } 102 | }); 103 | // 104 | // Hide Overlay 105 | // 106 | $('.overlay').on('click', function(){ 107 | hideLogin(); 108 | }); 109 | 110 | $('.themify_changelogs').on('click', function(e){ 111 | e.preventDefault(); 112 | var $self = $(this), 113 | url = $self.data('changelog'); 114 | $('.show-login, .show-error').hide(); 115 | $('.alert').addClass('busy').fadeIn(300); 116 | $('.overlay, .prompt-box').fadeIn(300); 117 | var $iframe = $(' 8 | 9 | 10 |
11 |

12 | 13 |
14 |
15 |
16 |

Flow Themes

17 |

Themify Flow allows you to switch, import, export, and create your own Flow themes with drag & drop.

18 |

Go to Themes

19 |
20 |
21 |

Flow Templates

22 |

Templates are used to render the page layout on the frontend. You can edit and design your own templates.

23 |

Go to Templates

24 |
25 |
26 |

Flow Template Parts

27 |

Template Parts are the layout pieces used in templates such as: Header, Sidebar, and Footer.

28 |

Go to Template Parts

29 |
30 |
31 |

Global Styling Panel

32 |

Global Styling panel allows you to customize the general styling of the theme elements (body, font, background, headings, etc.).

33 |

Go to Styling

34 |
35 | 36 |
37 |

Settings

38 |

In Settings page, you can specify the favicon, header code, footer code, and other framework options.

39 |

Go to Settings

40 |
41 |
42 |

Using Builder

43 |

If you need help with the drag & drop Builder, refer to the Builder Documentation.

44 |
45 |
46 |
47 | 48 |

49 | 50 |
51 |
52 | 56 |
57 |
58 | 59 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-backend-builder.php: -------------------------------------------------------------------------------- 1 | post_type, array( 'tf_template', 'tf_template_part' ) ) ? get_post_meta( $post->ID, 'tf_template_type', true ) : 'content'; 9 | $current_template_type = '' == $current_template_type ? 'global' : $current_template_type; 10 | $tabs_exclude = array( 11 | 'archive' => array( 'single', 'page' ), 12 | 'single' => array( 'archive', 'page' ), 13 | 'page' => array( 'archive', 'single' ), 14 | 'global' => array( 'archive', 'single', 'page'), 15 | 'content' => array( 'archive', 'single', 'page', 'global') 16 | ); 17 | ?> 18 | 19 |
20 | 21 |
22 | 23 |
24 |
    25 | post_type!='tf_template_part' && in_array( $type['value'], $tabs_exclude[ $current_template_type ] ) ) continue; ?> 27 |
  • 28 | 29 |
30 | 31 | post_type!='tf_template_part' && in_array( $type['value'], $tabs_exclude[ $current_template_type ] ) ) continue; 33 | ?> 34 |
35 | 38 | slug}"; ?> 39 | 40 |
41 | name ); ?> 42 | 43 |
44 | 45 | 46 | 47 |
48 | 49 | 50 |
51 | 52 |
53 | 54 | 55 |
56 | 57 |
58 | get_results( $wpdb->prepare("SELECT * FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s", $post->ID, 'tf_builder_content') ); 61 | $value = $value?current($value):false; 62 | $builder_content = in_array( $post->post_type, array( 'tf_template', 'tf_template_part' ) ) ? $post->post_content : ($value?$value->meta_value:false); 63 | echo do_shortcode( $builder_content ); 64 | ?> 65 |
66 | 67 |

68 | 69 | 70 | 71 | 72 |

73 | 74 |
75 | 76 | 77 |
78 | 81 |
82 | 83 |
84 | 85 | 86 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-content-builder.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 | 4 | 5 | 6 | 7 | <?php echo is_home() || is_front_page()? get_bloginfo('name') : wp_title('');?> 8 | 9 | 10 | 11 | 12 | 13 | > 14 | 15 |
16 | 17 | 18 | 19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-frontend-menu.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 | 33 |
34 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-module-panel.php: -------------------------------------------------------------------------------- 1 | type ) ? 'global' : $TF_Layout->type; 15 | } 16 | $tabs_exclude = array( 17 | 'archive' => array( 'single', 'page' ), 18 | 'single' => array( 'archive', 'page' ), 19 | 'page' => array( 'archive', 'single' ), 20 | 'global' => array( 'archive', 'single', 'page'), 21 | 'content' => array( 'archive', 'single', 'page', 'global') 22 | ); 23 | ?> 24 | 25 |
26 |
27 | 28 | 29 | 30 |
31 | 32 |
33 |
    34 | post_type!='tf_template_part' && in_array( $type['value'], $tabs_exclude[ $current_template_type ] ) ) continue; 36 | ?> 37 |
  • 38 | 39 |
40 | 41 | post_type!='tf_template_part' && in_array( $type['value'], $tabs_exclude[ $current_template_type ] ) ) continue; 43 | ?> 44 |
45 | 48 | slug}"; ?> 49 | 50 |
51 | name ); ?> 52 | 53 |
54 | 55 | 56 | 57 |
58 | 59 | 60 |
61 | 62 | 63 |
64 | 65 | 66 |
67 | 68 | 69 |
70 | 71 |
72 | 73 |
74 | 75 |
76 | 79 |
80 | 81 | 82 | 83 |
84 | 85 |
86 | 87 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-part-edit.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | > 16 | 17 |
18 | 19 | 20 | 21 |
22 | Template Part: %s', 'themify-flow') : __('Content: %s', 'themify-flow'); 24 | echo sprintf( $title, get_the_title() ); ?> 25 |
26 | 27 |
28 |
render( get_the_content() ); ?>
29 |
30 | 31 | 32 | 33 |
34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-part.php: -------------------------------------------------------------------------------- 1 | 2 | > 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | > 16 | 17 |
18 | 19 | 20 | 21 |
22 | Template Part: %s', 'themify-flow'), get_the_title() ); ?> 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-region.php: -------------------------------------------------------------------------------- 1 | %s', __('This is Content Section', 'themify-flow') ); 12 | echo sprintf( '

%s

', __('If you would like to add content to this section, you may do so by editing active TF Template > Add Modules', 'themify-flow') ); 13 | } 14 | } 15 | include_once( 'template-render-header.php' ); 16 | include_once( 'template-render-body.php' ); 17 | include_once( 'template-render-footer.php' ); -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-render-body.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | layout_content ) ) { 10 | do_action( 'tf_template_render_content' ); 11 | } else { 12 | do_action( 'tf_template_before_layout_content_render' ); 13 | echo $TF_Layout->render( $TF_Layout->layout_content ); 14 | do_action( 'tf_template_after_layout_content_render' ); 15 | } 16 | ?> 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | sidebar ): ?> 25 | 26 | 27 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-render-footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | footer ): ?> 12 |
13 | 14 | 15 | 28 | 29 | 30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/templates/template-render-header.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | > 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | > 24 | 25 | 26 | 27 |
28 | 29 | header ): ?> 30 |
31 | 32 | 33 | 34 | 49 | 50 | 51 | 52 | 53 |
54 | 55 | 56 | 57 |
58 | 59 |
60 | 61 | -------------------------------------------------------------------------------- /themifyflow/tf/includes/utilities/class-wp-cli.php: -------------------------------------------------------------------------------- 1 |