Changeset 2795613
- Timestamp:
- 10/07/2022 11:49:51 AM (3 years ago)
- Location:
- multifox-plus/trunk
- Files:
-
- 4 edited
-
modules/footer/elementor/index.php (modified) (1 diff)
-
modules/header/elementor/index.php (modified) (1 diff)
-
multifox-plus.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multifox-plus/trunk/modules/footer/elementor/index.php
r2642360 r2795613 35 35 ob_start(); 36 36 37 $page_template = get_post_meta( $id, '_wp_page_template', true ); 38 if($page_template == 'elementor_header_footer') { 39 $class = 'wdt-elementor-container-fluid'; 40 } else { 41 $class = 'container'; 42 } 43 37 44 echo '<footer id="footer">'; 38 echo '<div class=" container">';45 echo '<div class="'.esc_attr($class).'">'; 39 46 echo '<div id="footer-'.esc_attr( $id ).'" class="mfx-footer-tpl footer-' .esc_attr( $id ). '">'; 40 47 if( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) { -
multifox-plus/trunk/modules/header/elementor/index.php
r2637895 r2795613 35 35 ob_start(); 36 36 37 echo '<div id="header-'.esc_attr( $id ).'" class="mfx-header-tpl header-' .esc_attr( $id ). '">'; 37 $page_template = get_post_meta( $id, '_wp_page_template', true ); 38 if($page_template == 'elementor_header_footer') { 39 $class = 'wdt-elementor-container-fluid'; 40 } else { 41 $class = 'container'; 42 } 43 echo '<div class="'.esc_attr($class).'">'; 38 44 39 if( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) { 40 $css_file = new \Elementor\Core\Files\CSS\Post( $id ); 41 $css_file->enqueue(); 45 echo '<div id="header-'.esc_attr( $id ).'" class="mfx-header-tpl header-' .esc_attr( $id ). '">'; 42 46 43 echo multifox_html_output($elementor_instance->frontend->get_builder_content_for_display( $id )); 44 } else { 45 $header = get_post( $id ); 46 echo apply_filters( 'the_content', $header->post_content ); 47 } 47 if( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) { 48 $css_file = new \Elementor\Core\Files\CSS\Post( $id ); 49 $css_file->enqueue(); 48 50 51 echo multifox_html_output($elementor_instance->frontend->get_builder_content_for_display( $id )); 52 } else { 53 $header = get_post( $id ); 54 echo apply_filters( 'the_content', $header->post_content ); 55 } 56 57 echo '</div>'; 58 49 59 echo '</div>'; 50 60 -
multifox-plus/trunk/multifox-plus.php
r2786266 r2795613 3 3 * Plugin Name: Multifox Plus 4 4 * Description: Adds additional features for Multifox Theme. 5 * Version: 1.1. 35 * Version: 1.1.4 6 6 * Author: Creative Brahma 7 7 * Author URI: https://profiles.wordpress.org/creativebrahma/ -
multifox-plus/trunk/readme.txt
r2786286 r2795613 5 5 Requires at least: 5.0 6 6 Tested up to: 6.0.2 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 Requires PHP: 7.1 9 Version: 1.1. 39 Version: 1.1.4 10 10 License: GPLv3 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 30 30 1. From the dashboard of your site, navigate to Plugins –> Add New. 31 31 2. Select the Upload option and hit 'Choose File'. 32 3. When the popup appears, select the 'multifox-plus.zip'file from your PC.32 3. When the popup appears, select the multifox-plus.zip file from your PC. 33 33 4. Activate the plugin through the 'Plugins' menu in WordPress. 34 34 … … 39 39 40 40 == Changelog == 41 42 = 1.1.4 = 43 44 * Elementor full width template compatible 41 45 42 46 = 1.1.3 =
Note: See TracChangeset
for help on using the changeset viewer.