Changeset 3121145
- Timestamp:
- 07/18/2024 09:03:25 AM (21 months ago)
- Location:
- popularis-extra/trunk
- Files:
-
- 1 added
- 3 edited
-
assets/css/style.css (modified) (1 diff)
-
includes/panel/demos.php (modified) (6 diffs)
-
library/extra-elementor/elementor-widgets.php (modified) (1 diff)
-
library/extra-elementor/elementor-widgets/heading.php (added)
Legend:
- Unmodified
- Added
- Removed
-
popularis-extra/trunk/assets/css/style.css
r2190543 r3121145 95 95 margin: 3px; 96 96 } 97 98 .popularis-extra-simple-heading-wrapper { 99 text-align: center; 100 } 101 .popularis-extra-simple-heading-wrapper .popularis-extra-heading-title { 102 position: relative; 103 line-height: 1.2; 104 font-size: 3rem; 105 margin: 5px 0; 106 font-weight: 500; 107 z-index: 2; 108 display: inline-block; 109 } 110 .popularis-extra-simple-heading-wrapper .popularis-extra-title-focus { 111 color: var(--e-global-color-primary); 112 -webkit-text-fill-color: initial; 113 display: inline; 114 } -
popularis-extra/trunk/includes/panel/demos.php
r2972952 r3121145 138 138 'posts_to_show' => '6', 139 139 'elementor_width' => '1140', 140 'elementor_experiment-container' => 'active', 140 141 'is_shop' => true, 141 142 'woo_image_size' => '600', … … 177 178 'posts_to_show' => '6', 178 179 'elementor_width' => '1140', 180 'elementor_experiment-container' => 'active', 179 181 'is_shop' => true, 180 182 'woo_image_size' => '600', … … 216 218 'posts_to_show' => '6', 217 219 'elementor_width' => '1140', 220 'elementor_experiment-container' => 'active', 218 221 'is_shop' => true, 219 222 'woo_image_size' => '600', … … 257 260 'posts_to_show' => '6', 258 261 'elementor_width' => '1140', 262 'elementor_experiment-container' => 'active', 259 263 'is_shop' => true, 260 264 'woo_image_size' => '600', … … 771 775 // Elementor width setting 772 776 $elementor_width = isset($demo['elementor_width']) ? $demo['elementor_width'] : ''; 777 778 // Elementor experiment container 779 $elementor_container = isset( $demo[ 'elementor_experiment-container' ] ) ? $demo[ 'elementor_experiment-container' ] : ''; 773 780 774 781 // Reading settings … … 854 861 update_option('elementor_container_width', $elementor_width); 855 862 } 863 if ( !empty( $elementor_container ) ) { 864 update_option( 'elementor_experiment-container', $elementor_container ); 865 } 856 866 857 867 // Assign front page and posts page (blog page). -
popularis-extra/trunk/library/extra-elementor/elementor-widgets.php
r2190543 r3121145 39 39 require_once POPULARIS_EXTRA_PATH . 'library/extra-elementor/elementor-widgets/text-block.php'; 40 40 \Elementor\Plugin::instance()->widgets_manager->register_widget_type(new Popularis_Text_Block()); 41 42 require_once POPULARIS_EXTRA_PATH . 'library/extra-elementor/elementor-widgets/heading.php'; 43 \Elementor\Plugin::instance()->widgets_manager->register_widget_type(new Popularis_Heading()); 41 44 } 42 45
Note: See TracChangeset
for help on using the changeset viewer.