This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Elementor Conditions based on Page Template | |
* | |
* @return void | |
*/ | |
add_action( 'elementor/theme/register_conditions', function( $conditions_manager ) { | |
class Page_Template_Condition extends ElementorPro\Modules\ThemeBuilder\Conditions\Condition_Base { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Elementor Device Preview Sizes | |
* | |
* @return void | |
*/ | |
function add_custom_elementor_editor_css() { | |
if ( \Elementor\Plugin::$instance->editor->is_edit_mode() ) { | |
echo '<style> | |
/* iPhone 14 – smallest viewport the responsive preview can be */ |
OlderNewer