Plugin Directory

Changeset 3257678


Ignore:
Timestamp:
03/18/2025 09:42:45 AM (9 months ago)
Author:
Nikschavan
Message:

Update to version 2.2.2 from GitHub

Location:
header-footer-elementor
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • header-footer-elementor/tags/2.2.2/header-footer-elementor.php

    r3254713 r3257678  
    88 * Text Domain: header-footer-elementor
    99 * Domain Path: /languages
    10  * Version: 2.2.1
    11  * Elementor tested up to: 3.27
    12  * Elementor Pro tested up to: 3.27
     10 * Version: 2.2.2
     11 * Elementor tested up to: 3.28
     12 * Elementor Pro tested up to: 3.28
    1313 *
    1414 * @package         header-footer-elementor
    1515 */
    1616
    17 define( 'HFE_VER', '2.2.1' );
     17define( 'HFE_VER', '2.2.2' );
    1818define( 'HFE_FILE', __FILE__ );
    1919define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
  • header-footer-elementor/tags/2.2.2/inc/lib/astra-notices/class-astra-notices.php

    r3254713 r3257678  
    2929         * @since 1.0.0
    3030         */
    31         private static $version = '1.1.12';
     31        private static $version = '1.1.14';
    3232
    3333        /**
     
    8282         * @return array
    8383         */
    84         public function add_data_attributes( $allowedposttags, $context ) {
     84        public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
    8585            $allowedposttags['a']['data-repeat-notice-after'] = true;
    8686
     
    9797        public static function add_notice( $args = array() ) {
    9898            self::$notices[] = $args;
    99             $notice_id = $args['id']; // Notice ID.
    100             $notices = get_option( 'allowed_astra_notices', array() );
    101             if(array_search($notice_id, $notices) === false) {
     99
     100            if ( ! isset( $args['id'] ) ) {
     101                return;
     102            }
     103
     104            $notice_id = sanitize_key( $args['id'] ); // Notice ID.
     105            $notices   = get_option( 'allowed_astra_notices', array() );
     106            if ( ! in_array( $notice_id, $notices, true ) ) {
    102107                $notices[] = $notice_id; // Add notice id to the array.
    103108                update_option( 'allowed_astra_notices', $notices ); // Update the option.
     
    124129            $allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices.
    125130
    126              // Define restricted user meta keys
    127              $wp_default_meta_keys = array(
     131            // Define restricted user meta keys.
     132            $wp_default_meta_keys = array(
    128133                'wp_capabilities',
    129134                'wp_user_level',
     
    133138            );
    134139
    135             // Verify that the notice being dismissed is in the list of allowed notices.
    136             if(array_search($notice_id, $allowed_notices) === false) {
     140            // if $notice_id does not start with astra-notices-id and notice_id is not from the allowed notices, then return.
     141            if ( strpos( $notice_id, 'astra-notices-id-' ) !== 0 && ( ! in_array( $notice_id, $allowed_notices, true ) ) ) {
    137142                return;
    138143            }
     
    231236            );
    232237
    233             return ! empty( $notice ) ? $notice[0] : array();
     238            return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array();
    234239        }
    235240
     
    285290                }
    286291            }
    287 
    288292        }
    289293
     
    398402         */
    399403        public static function get_url() {
    400             $path      = wp_normalize_path( dirname( __FILE__ ) );
     404            $path      = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore Modernize.FunctionCalls.Dirname.FileConstant
    401405            $theme_dir = wp_normalize_path( get_template_directory() );
    402406
     
    407411            }
    408412        }
    409 
    410413    }
    411414
  • header-footer-elementor/tags/2.2.2/languages/header-footer-elementor.pot

    r3254713 r3257678  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ultimate Addons for Elementor Lite 2.2.1\n"
     5"Project-Id-Version: Ultimate Addons for Elementor Lite 2.2.2\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/header-footer-elementor\n"
    8 "POT-Creation-Date: 2025-03-07 06:29:06+00:00\n"
     8"POT-Creation-Date: 2025-03-18 08:26:04+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    159159msgstr ""
    160160
    161 #: admin/class-hfe-addons-actions.php:114
     161#: admin/class-hfe-addons-actions.php:147
    162162msgid "Plugin slug is missing."
    163163msgstr ""
    164164
    165 #: admin/class-hfe-addons-actions.php:137
     165#: admin/class-hfe-addons-actions.php:170
    166166msgid "Plugin installation function not found."
    167167msgstr ""
    168168
    169 #: admin/class-hfe-addons-actions.php:160
     169#: admin/class-hfe-addons-actions.php:193
    170170msgid "Theme slug is missing."
    171171msgstr ""
    172172
    173 #: admin/class-hfe-addons-actions.php:183
     173#: admin/class-hfe-addons-actions.php:216
    174174msgid "Theme installation function not found."
    175175msgstr ""
    176176
    177 #: admin/class-hfe-addons-actions.php:363
     177#: admin/class-hfe-addons-actions.php:396
    178178msgid "Plugin activation is disabled for you on this site."
    179179msgstr ""
    180180
    181 #: admin/class-hfe-addons-actions.php:372
     181#: admin/class-hfe-addons-actions.php:405
    182182msgid "Plugin Activated."
    183183msgstr ""
    184184
    185 #: admin/class-hfe-addons-actions.php:383
     185#: admin/class-hfe-addons-actions.php:416
    186186msgid "Theme activation is disabled for you on this site."
    187187msgstr ""
    188188
    189 #: admin/class-hfe-addons-actions.php:392
     189#: admin/class-hfe-addons-actions.php:425
    190190msgid "Theme Activated."
    191191msgstr ""
    192192
    193 #: admin/class-hfe-addons-actions.php:399
     193#: admin/class-hfe-addons-actions.php:432
    194194msgid "Could not activate plugin. Please activate from the Plugins page."
    195195msgstr ""
    196196
    197 #: admin/class-hfe-addons-actions.php:401
     197#: admin/class-hfe-addons-actions.php:434
    198198msgid "Could not activate theme. Please activate from the Themes page."
    199199msgstr ""
    200200
    201 #: admin/class-hfe-addons-actions.php:421
    202 #: admin/class-hfe-addons-actions.php:444
     201#: admin/class-hfe-addons-actions.php:454
     202#: admin/class-hfe-addons-actions.php:477
    203203msgid "Settings saved successfully!"
    204204msgstr ""
    205205
    206 #: admin/class-hfe-addons-actions.php:424
    207 #: admin/class-hfe-addons-actions.php:447
     206#: admin/class-hfe-addons-actions.php:457
     207#: admin/class-hfe-addons-actions.php:480
    208208msgid "Unable to save settings."
    209209msgstr ""
    210210
    211 #: admin/class-hfe-admin.php:196
     211#: admin/class-hfe-admin.php:208
    212212msgid "Important Notice:"
    213213msgstr ""
    214214
    215 #: admin/class-hfe-admin.php:200
     215#: admin/class-hfe-admin.php:212
    216216msgid "Can't edit your header or footer?"
    217217msgstr ""
    218218
    219 #: admin/class-hfe-admin.php:201
     219#: admin/class-hfe-admin.php:213
    220220msgid ""
    221221"Try clearing your cache or resetting permalinks (Settings > Permalinks > "
     
    223223msgstr ""
    224224
    225 #: admin/class-hfe-admin.php:202
     225#: admin/class-hfe-admin.php:214
    226226msgid "Learn More"
    227227msgstr ""
    228228
    229 #: admin/class-hfe-admin.php:272 admin/class-hfe-admin.php:559
     229#: admin/class-hfe-admin.php:218
     230msgid "Flush Permalink"
     231msgstr ""
     232
     233#: admin/class-hfe-admin.php:291 admin/class-hfe-admin.php:578
    230234msgid "Display Rules"
    231235msgstr ""
    232236
    233 #: admin/class-hfe-admin.php:273
     237#: admin/class-hfe-admin.php:292
    234238#: inc/widgets-manager/widgets/post-info/post-info.php:136
    235239msgid "Date"
    236240msgstr ""
    237241
    238 #: admin/class-hfe-admin.php:363 admin/class-hfe-admin.php:364
    239 #: admin/class-hfe-admin.php:365 admin/class-hfe-admin.php:366
     242#: admin/class-hfe-admin.php:382 admin/class-hfe-admin.php:383
     243#: admin/class-hfe-admin.php:384 admin/class-hfe-admin.php:385
    240244msgid "Elementor Header & Footer Builder"
    241245msgstr ""
    242246
    243 #: admin/class-hfe-admin.php:367 admin/class-hfe-admin.php:368
     247#: admin/class-hfe-admin.php:386 admin/class-hfe-admin.php:387
    244248msgid "Add New"
    245249msgstr ""
    246250
    247 #: admin/class-hfe-admin.php:369
     251#: admin/class-hfe-admin.php:388
    248252msgid "New Template"
    249253msgstr ""
    250254
    251 #: admin/class-hfe-admin.php:370
     255#: admin/class-hfe-admin.php:389
    252256msgid "Edit Template"
    253257msgstr ""
    254258
    255 #: admin/class-hfe-admin.php:371
     259#: admin/class-hfe-admin.php:390
    256260msgid "View Template"
    257261msgstr ""
    258262
    259 #: admin/class-hfe-admin.php:372 inc/class-hfe-settings-page.php:381
     263#: admin/class-hfe-admin.php:391 inc/class-hfe-settings-page.php:381
    260264msgid "View All"
    261265msgstr ""
    262266
    263 #: admin/class-hfe-admin.php:373
     267#: admin/class-hfe-admin.php:392
    264268msgid "Search Templates"
    265269msgstr ""
    266270
    267 #: admin/class-hfe-admin.php:374
     271#: admin/class-hfe-admin.php:393
    268272msgid "Parent Templates:"
    269273msgstr ""
    270274
    271 #: admin/class-hfe-admin.php:375
     275#: admin/class-hfe-admin.php:394
    272276msgid "No Templates found."
    273277msgstr ""
    274278
    275 #: admin/class-hfe-admin.php:376
     279#: admin/class-hfe-admin.php:395
    276280msgid "No Templates found in Trash."
    277281msgstr ""
    278282
    279 #: admin/class-hfe-admin.php:423 admin/class-hfe-admin.php:424
     283#: admin/class-hfe-admin.php:442 admin/class-hfe-admin.php:443
    280284msgid "Create New"
    281285msgstr ""
    282286
    283 #: admin/class-hfe-admin.php:433
     287#: admin/class-hfe-admin.php:452
    284288msgid "Header/Footer Builder"
    285289msgstr ""
    286290
    287 #: admin/class-hfe-admin.php:434
     291#: admin/class-hfe-admin.php:453
    288292msgid "Header & Footer Builder"
    289293msgstr ""
    290294
    291 #: admin/class-hfe-admin.php:463
     295#: admin/class-hfe-admin.php:482
    292296msgid "Elementor Header & Footer Builder Options"
    293297msgstr ""
    294298
    295 #: admin/class-hfe-admin.php:492
     299#: admin/class-hfe-admin.php:511
    296300msgid "Type of Template"
    297301msgstr ""
    298302
    299 #: admin/class-hfe-admin.php:496
     303#: admin/class-hfe-admin.php:515
    300304msgid "Select Option"
    301305msgstr ""
    302306
    303 #: admin/class-hfe-admin.php:497
     307#: admin/class-hfe-admin.php:516
    304308msgid "Header"
    305309msgstr ""
    306310
    307 #: admin/class-hfe-admin.php:498
     311#: admin/class-hfe-admin.php:517
    308312msgid "Before Footer"
    309313msgstr ""
    310314
    311 #: admin/class-hfe-admin.php:499
     315#: admin/class-hfe-admin.php:518
    312316msgid "Footer"
    313317msgstr ""
    314318
    315 #: admin/class-hfe-admin.php:500
     319#: admin/class-hfe-admin.php:519
    316320msgid "Custom Block"
    317321msgstr ""
    318322
    319 #: admin/class-hfe-admin.php:508 admin/class-hfe-admin.php:758
     323#: admin/class-hfe-admin.php:527 admin/class-hfe-admin.php:777
    320324msgid "Shortcode"
    321325msgstr ""
    322326
    323 #: admin/class-hfe-admin.php:509
     327#: admin/class-hfe-admin.php:528
    324328msgid ""
    325329"Copy this shortcode and paste it into your post, page, or text widget "
     
    327331msgstr ""
    328332
    329 #: admin/class-hfe-admin.php:521
     333#: admin/class-hfe-admin.php:540
    330334msgid "Enable Layout for Elementor Canvas Template?"
    331335msgstr ""
    332336
    333 #: admin/class-hfe-admin.php:523
     337#: admin/class-hfe-admin.php:542
    334338msgid ""
    335339"Enabling this option will display this layout on pages using Elementor "
     
    337341msgstr ""
    338342
    339 #: admin/class-hfe-admin.php:550
     343#: admin/class-hfe-admin.php:569
    340344msgid "Display On"
    341345msgstr ""
    342346
    343 #: admin/class-hfe-admin.php:552
     347#: admin/class-hfe-admin.php:571
    344348msgid "Add locations for where this template should appear."
    345349msgstr ""
    346350
    347 #: admin/class-hfe-admin.php:563
     351#: admin/class-hfe-admin.php:582
    348352msgid "Add Display Rule"
    349353msgstr ""
    350354
    351 #: admin/class-hfe-admin.php:572
     355#: admin/class-hfe-admin.php:591
    352356msgid "Do Not Display On"
    353357msgstr ""
    354358
    355 #: admin/class-hfe-admin.php:574
     359#: admin/class-hfe-admin.php:593
    356360msgid "Add locations for where this template should not appear."
    357361msgstr ""
    358362
    359 #: admin/class-hfe-admin.php:581
     363#: admin/class-hfe-admin.php:600
    360364msgid "Exclude On"
    361365msgstr ""
    362366
    363 #: admin/class-hfe-admin.php:584
     367#: admin/class-hfe-admin.php:603
    364368#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
    365369msgid "Add Exclusion Rule"
    366370msgstr ""
    367371
    368 #: admin/class-hfe-admin.php:594
     372#: admin/class-hfe-admin.php:613
    369373msgid "User Roles"
    370374msgstr ""
    371375
    372 #: admin/class-hfe-admin.php:595
     376#: admin/class-hfe-admin.php:614
    373377msgid "Display custom template based on user role."
    374378msgstr ""
    375379
    376 #: admin/class-hfe-admin.php:602
     380#: admin/class-hfe-admin.php:621
    377381msgid "Users"
    378382msgstr ""
    379383
    380 #: admin/class-hfe-admin.php:605
     384#: admin/class-hfe-admin.php:624
    381385msgid "Add User Rule"
    382386msgstr ""
    383387
    384 #: admin/class-hfe-admin.php:686
     388#: admin/class-hfe-admin.php:705
    385389#. Translators: Post title, Template Location
    386390msgid "Template %1$s is already assigned to the location %2$s"
     
    808812msgstr ""
    809813
    810 #: inc/lib/astra-notices/class-astra-notices.php:119
     814#: inc/lib/astra-notices/class-astra-notices.php:146
    811815msgid "WordPress Nonce not validated."
     816msgstr ""
     817
     818#: inc/lib/astra-notices/class-astra-notices.php:153
     819msgid "Invalid notice ID."
    812820msgstr ""
    813821
  • header-footer-elementor/tags/2.2.2/readme.txt

    r3254713 r3257678  
    55Tested up to: 6.7.1
    66Requires PHP: 7.4 
    7 Stable tag: 2.2.1
     7Stable tag: 2.2.2
    88License: GPLv2 or later 
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    129129
    130130== Changelog ==
     131= 2.2.2 =
     132- Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version.
    131133
    132134= 2.2.1 =
  • header-footer-elementor/trunk/header-footer-elementor.php

    r3254713 r3257678  
    88 * Text Domain: header-footer-elementor
    99 * Domain Path: /languages
    10  * Version: 2.2.1
    11  * Elementor tested up to: 3.27
    12  * Elementor Pro tested up to: 3.27
     10 * Version: 2.2.2
     11 * Elementor tested up to: 3.28
     12 * Elementor Pro tested up to: 3.28
    1313 *
    1414 * @package         header-footer-elementor
    1515 */
    1616
    17 define( 'HFE_VER', '2.2.1' );
     17define( 'HFE_VER', '2.2.2' );
    1818define( 'HFE_FILE', __FILE__ );
    1919define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
  • header-footer-elementor/trunk/inc/lib/astra-notices/class-astra-notices.php

    r3254713 r3257678  
    2929         * @since 1.0.0
    3030         */
    31         private static $version = '1.1.12';
     31        private static $version = '1.1.14';
    3232
    3333        /**
     
    8282         * @return array
    8383         */
    84         public function add_data_attributes( $allowedposttags, $context ) {
     84        public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
    8585            $allowedposttags['a']['data-repeat-notice-after'] = true;
    8686
     
    9797        public static function add_notice( $args = array() ) {
    9898            self::$notices[] = $args;
    99             $notice_id = $args['id']; // Notice ID.
    100             $notices = get_option( 'allowed_astra_notices', array() );
    101             if(array_search($notice_id, $notices) === false) {
     99
     100            if ( ! isset( $args['id'] ) ) {
     101                return;
     102            }
     103
     104            $notice_id = sanitize_key( $args['id'] ); // Notice ID.
     105            $notices   = get_option( 'allowed_astra_notices', array() );
     106            if ( ! in_array( $notice_id, $notices, true ) ) {
    102107                $notices[] = $notice_id; // Add notice id to the array.
    103108                update_option( 'allowed_astra_notices', $notices ); // Update the option.
     
    124129            $allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices.
    125130
    126              // Define restricted user meta keys
    127              $wp_default_meta_keys = array(
     131            // Define restricted user meta keys.
     132            $wp_default_meta_keys = array(
    128133                'wp_capabilities',
    129134                'wp_user_level',
     
    133138            );
    134139
    135             // Verify that the notice being dismissed is in the list of allowed notices.
    136             if(array_search($notice_id, $allowed_notices) === false) {
     140            // if $notice_id does not start with astra-notices-id and notice_id is not from the allowed notices, then return.
     141            if ( strpos( $notice_id, 'astra-notices-id-' ) !== 0 && ( ! in_array( $notice_id, $allowed_notices, true ) ) ) {
    137142                return;
    138143            }
     
    231236            );
    232237
    233             return ! empty( $notice ) ? $notice[0] : array();
     238            return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array();
    234239        }
    235240
     
    285290                }
    286291            }
    287 
    288292        }
    289293
     
    398402         */
    399403        public static function get_url() {
    400             $path      = wp_normalize_path( dirname( __FILE__ ) );
     404            $path      = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore Modernize.FunctionCalls.Dirname.FileConstant
    401405            $theme_dir = wp_normalize_path( get_template_directory() );
    402406
     
    407411            }
    408412        }
    409 
    410413    }
    411414
  • header-footer-elementor/trunk/languages/header-footer-elementor.pot

    r3254713 r3257678  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ultimate Addons for Elementor Lite 2.2.1\n"
     5"Project-Id-Version: Ultimate Addons for Elementor Lite 2.2.2\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/header-footer-elementor\n"
    8 "POT-Creation-Date: 2025-03-07 06:29:06+00:00\n"
     8"POT-Creation-Date: 2025-03-18 08:26:04+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    159159msgstr ""
    160160
    161 #: admin/class-hfe-addons-actions.php:114
     161#: admin/class-hfe-addons-actions.php:147
    162162msgid "Plugin slug is missing."
    163163msgstr ""
    164164
    165 #: admin/class-hfe-addons-actions.php:137
     165#: admin/class-hfe-addons-actions.php:170
    166166msgid "Plugin installation function not found."
    167167msgstr ""
    168168
    169 #: admin/class-hfe-addons-actions.php:160
     169#: admin/class-hfe-addons-actions.php:193
    170170msgid "Theme slug is missing."
    171171msgstr ""
    172172
    173 #: admin/class-hfe-addons-actions.php:183
     173#: admin/class-hfe-addons-actions.php:216
    174174msgid "Theme installation function not found."
    175175msgstr ""
    176176
    177 #: admin/class-hfe-addons-actions.php:363
     177#: admin/class-hfe-addons-actions.php:396
    178178msgid "Plugin activation is disabled for you on this site."
    179179msgstr ""
    180180
    181 #: admin/class-hfe-addons-actions.php:372
     181#: admin/class-hfe-addons-actions.php:405
    182182msgid "Plugin Activated."
    183183msgstr ""
    184184
    185 #: admin/class-hfe-addons-actions.php:383
     185#: admin/class-hfe-addons-actions.php:416
    186186msgid "Theme activation is disabled for you on this site."
    187187msgstr ""
    188188
    189 #: admin/class-hfe-addons-actions.php:392
     189#: admin/class-hfe-addons-actions.php:425
    190190msgid "Theme Activated."
    191191msgstr ""
    192192
    193 #: admin/class-hfe-addons-actions.php:399
     193#: admin/class-hfe-addons-actions.php:432
    194194msgid "Could not activate plugin. Please activate from the Plugins page."
    195195msgstr ""
    196196
    197 #: admin/class-hfe-addons-actions.php:401
     197#: admin/class-hfe-addons-actions.php:434
    198198msgid "Could not activate theme. Please activate from the Themes page."
    199199msgstr ""
    200200
    201 #: admin/class-hfe-addons-actions.php:421
    202 #: admin/class-hfe-addons-actions.php:444
     201#: admin/class-hfe-addons-actions.php:454
     202#: admin/class-hfe-addons-actions.php:477
    203203msgid "Settings saved successfully!"
    204204msgstr ""
    205205
    206 #: admin/class-hfe-addons-actions.php:424
    207 #: admin/class-hfe-addons-actions.php:447
     206#: admin/class-hfe-addons-actions.php:457
     207#: admin/class-hfe-addons-actions.php:480
    208208msgid "Unable to save settings."
    209209msgstr ""
    210210
    211 #: admin/class-hfe-admin.php:196
     211#: admin/class-hfe-admin.php:208
    212212msgid "Important Notice:"
    213213msgstr ""
    214214
    215 #: admin/class-hfe-admin.php:200
     215#: admin/class-hfe-admin.php:212
    216216msgid "Can't edit your header or footer?"
    217217msgstr ""
    218218
    219 #: admin/class-hfe-admin.php:201
     219#: admin/class-hfe-admin.php:213
    220220msgid ""
    221221"Try clearing your cache or resetting permalinks (Settings > Permalinks > "
     
    223223msgstr ""
    224224
    225 #: admin/class-hfe-admin.php:202
     225#: admin/class-hfe-admin.php:214
    226226msgid "Learn More"
    227227msgstr ""
    228228
    229 #: admin/class-hfe-admin.php:272 admin/class-hfe-admin.php:559
     229#: admin/class-hfe-admin.php:218
     230msgid "Flush Permalink"
     231msgstr ""
     232
     233#: admin/class-hfe-admin.php:291 admin/class-hfe-admin.php:578
    230234msgid "Display Rules"
    231235msgstr ""
    232236
    233 #: admin/class-hfe-admin.php:273
     237#: admin/class-hfe-admin.php:292
    234238#: inc/widgets-manager/widgets/post-info/post-info.php:136
    235239msgid "Date"
    236240msgstr ""
    237241
    238 #: admin/class-hfe-admin.php:363 admin/class-hfe-admin.php:364
    239 #: admin/class-hfe-admin.php:365 admin/class-hfe-admin.php:366
     242#: admin/class-hfe-admin.php:382 admin/class-hfe-admin.php:383
     243#: admin/class-hfe-admin.php:384 admin/class-hfe-admin.php:385
    240244msgid "Elementor Header & Footer Builder"
    241245msgstr ""
    242246
    243 #: admin/class-hfe-admin.php:367 admin/class-hfe-admin.php:368
     247#: admin/class-hfe-admin.php:386 admin/class-hfe-admin.php:387
    244248msgid "Add New"
    245249msgstr ""
    246250
    247 #: admin/class-hfe-admin.php:369
     251#: admin/class-hfe-admin.php:388
    248252msgid "New Template"
    249253msgstr ""
    250254
    251 #: admin/class-hfe-admin.php:370
     255#: admin/class-hfe-admin.php:389
    252256msgid "Edit Template"
    253257msgstr ""
    254258
    255 #: admin/class-hfe-admin.php:371
     259#: admin/class-hfe-admin.php:390
    256260msgid "View Template"
    257261msgstr ""
    258262
    259 #: admin/class-hfe-admin.php:372 inc/class-hfe-settings-page.php:381
     263#: admin/class-hfe-admin.php:391 inc/class-hfe-settings-page.php:381
    260264msgid "View All"
    261265msgstr ""
    262266
    263 #: admin/class-hfe-admin.php:373
     267#: admin/class-hfe-admin.php:392
    264268msgid "Search Templates"
    265269msgstr ""
    266270
    267 #: admin/class-hfe-admin.php:374
     271#: admin/class-hfe-admin.php:393
    268272msgid "Parent Templates:"
    269273msgstr ""
    270274
    271 #: admin/class-hfe-admin.php:375
     275#: admin/class-hfe-admin.php:394
    272276msgid "No Templates found."
    273277msgstr ""
    274278
    275 #: admin/class-hfe-admin.php:376
     279#: admin/class-hfe-admin.php:395
    276280msgid "No Templates found in Trash."
    277281msgstr ""
    278282
    279 #: admin/class-hfe-admin.php:423 admin/class-hfe-admin.php:424
     283#: admin/class-hfe-admin.php:442 admin/class-hfe-admin.php:443
    280284msgid "Create New"
    281285msgstr ""
    282286
    283 #: admin/class-hfe-admin.php:433
     287#: admin/class-hfe-admin.php:452
    284288msgid "Header/Footer Builder"
    285289msgstr ""
    286290
    287 #: admin/class-hfe-admin.php:434
     291#: admin/class-hfe-admin.php:453
    288292msgid "Header & Footer Builder"
    289293msgstr ""
    290294
    291 #: admin/class-hfe-admin.php:463
     295#: admin/class-hfe-admin.php:482
    292296msgid "Elementor Header & Footer Builder Options"
    293297msgstr ""
    294298
    295 #: admin/class-hfe-admin.php:492
     299#: admin/class-hfe-admin.php:511
    296300msgid "Type of Template"
    297301msgstr ""
    298302
    299 #: admin/class-hfe-admin.php:496
     303#: admin/class-hfe-admin.php:515
    300304msgid "Select Option"
    301305msgstr ""
    302306
    303 #: admin/class-hfe-admin.php:497
     307#: admin/class-hfe-admin.php:516
    304308msgid "Header"
    305309msgstr ""
    306310
    307 #: admin/class-hfe-admin.php:498
     311#: admin/class-hfe-admin.php:517
    308312msgid "Before Footer"
    309313msgstr ""
    310314
    311 #: admin/class-hfe-admin.php:499
     315#: admin/class-hfe-admin.php:518
    312316msgid "Footer"
    313317msgstr ""
    314318
    315 #: admin/class-hfe-admin.php:500
     319#: admin/class-hfe-admin.php:519
    316320msgid "Custom Block"
    317321msgstr ""
    318322
    319 #: admin/class-hfe-admin.php:508 admin/class-hfe-admin.php:758
     323#: admin/class-hfe-admin.php:527 admin/class-hfe-admin.php:777
    320324msgid "Shortcode"
    321325msgstr ""
    322326
    323 #: admin/class-hfe-admin.php:509
     327#: admin/class-hfe-admin.php:528
    324328msgid ""
    325329"Copy this shortcode and paste it into your post, page, or text widget "
     
    327331msgstr ""
    328332
    329 #: admin/class-hfe-admin.php:521
     333#: admin/class-hfe-admin.php:540
    330334msgid "Enable Layout for Elementor Canvas Template?"
    331335msgstr ""
    332336
    333 #: admin/class-hfe-admin.php:523
     337#: admin/class-hfe-admin.php:542
    334338msgid ""
    335339"Enabling this option will display this layout on pages using Elementor "
     
    337341msgstr ""
    338342
    339 #: admin/class-hfe-admin.php:550
     343#: admin/class-hfe-admin.php:569
    340344msgid "Display On"
    341345msgstr ""
    342346
    343 #: admin/class-hfe-admin.php:552
     347#: admin/class-hfe-admin.php:571
    344348msgid "Add locations for where this template should appear."
    345349msgstr ""
    346350
    347 #: admin/class-hfe-admin.php:563
     351#: admin/class-hfe-admin.php:582
    348352msgid "Add Display Rule"
    349353msgstr ""
    350354
    351 #: admin/class-hfe-admin.php:572
     355#: admin/class-hfe-admin.php:591
    352356msgid "Do Not Display On"
    353357msgstr ""
    354358
    355 #: admin/class-hfe-admin.php:574
     359#: admin/class-hfe-admin.php:593
    356360msgid "Add locations for where this template should not appear."
    357361msgstr ""
    358362
    359 #: admin/class-hfe-admin.php:581
     363#: admin/class-hfe-admin.php:600
    360364msgid "Exclude On"
    361365msgstr ""
    362366
    363 #: admin/class-hfe-admin.php:584
     367#: admin/class-hfe-admin.php:603
    364368#: inc/lib/target-rule/class-astra-target-rules-fields.php:847
    365369msgid "Add Exclusion Rule"
    366370msgstr ""
    367371
    368 #: admin/class-hfe-admin.php:594
     372#: admin/class-hfe-admin.php:613
    369373msgid "User Roles"
    370374msgstr ""
    371375
    372 #: admin/class-hfe-admin.php:595
     376#: admin/class-hfe-admin.php:614
    373377msgid "Display custom template based on user role."
    374378msgstr ""
    375379
    376 #: admin/class-hfe-admin.php:602
     380#: admin/class-hfe-admin.php:621
    377381msgid "Users"
    378382msgstr ""
    379383
    380 #: admin/class-hfe-admin.php:605
     384#: admin/class-hfe-admin.php:624
    381385msgid "Add User Rule"
    382386msgstr ""
    383387
    384 #: admin/class-hfe-admin.php:686
     388#: admin/class-hfe-admin.php:705
    385389#. Translators: Post title, Template Location
    386390msgid "Template %1$s is already assigned to the location %2$s"
     
    808812msgstr ""
    809813
    810 #: inc/lib/astra-notices/class-astra-notices.php:119
     814#: inc/lib/astra-notices/class-astra-notices.php:146
    811815msgid "WordPress Nonce not validated."
     816msgstr ""
     817
     818#: inc/lib/astra-notices/class-astra-notices.php:153
     819msgid "Invalid notice ID."
    812820msgstr ""
    813821
  • header-footer-elementor/trunk/readme.txt

    r3254713 r3257678  
    55Tested up to: 6.7.1
    66Requires PHP: 7.4 
    7 Stable tag: 2.2.1
     7Stable tag: 2.2.2
    88License: GPLv2 or later 
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    129129
    130130== Changelog ==
     131= 2.2.2 =
     132- Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version.
    131133
    132134= 2.2.1 =
Note: See TracChangeset for help on using the changeset viewer.