Changeset 3257678
- Timestamp:
- 03/18/2025 09:42:45 AM (9 months ago)
- Location:
- header-footer-elementor
- Files:
-
- 8 edited
- 1 copied
-
tags/2.2.2 (copied) (copied from header-footer-elementor/trunk)
-
tags/2.2.2/header-footer-elementor.php (modified) (1 diff)
-
tags/2.2.2/inc/lib/astra-notices/class-astra-notices.php (modified) (9 diffs)
-
tags/2.2.2/languages/header-footer-elementor.pot (modified) (6 diffs)
-
tags/2.2.2/readme.txt (modified) (2 diffs)
-
trunk/header-footer-elementor.php (modified) (1 diff)
-
trunk/inc/lib/astra-notices/class-astra-notices.php (modified) (9 diffs)
-
trunk/languages/header-footer-elementor.pot (modified) (6 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
header-footer-elementor/tags/2.2.2/header-footer-elementor.php
r3254713 r3257678 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 2.2. 111 * Elementor tested up to: 3.2 712 * Elementor Pro tested up to: 3.2 710 * Version: 2.2.2 11 * Elementor tested up to: 3.28 12 * Elementor Pro tested up to: 3.28 13 13 * 14 14 * @package header-footer-elementor 15 15 */ 16 16 17 define( 'HFE_VER', '2.2. 1' );17 define( 'HFE_VER', '2.2.2' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); -
header-footer-elementor/tags/2.2.2/inc/lib/astra-notices/class-astra-notices.php
r3254713 r3257678 29 29 * @since 1.0.0 30 30 */ 31 private static $version = '1.1.1 2';31 private static $version = '1.1.14'; 32 32 33 33 /** … … 82 82 * @return array 83 83 */ 84 public function add_data_attributes( $allowedposttags, $context ) { 84 public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed 85 85 $allowedposttags['a']['data-repeat-notice-after'] = true; 86 86 … … 97 97 public static function add_notice( $args = array() ) { 98 98 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 ) ) { 102 107 $notices[] = $notice_id; // Add notice id to the array. 103 108 update_option( 'allowed_astra_notices', $notices ); // Update the option. … … 124 129 $allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices. 125 130 126 // Define restricted user meta keys127 $wp_default_meta_keys = array(131 // Define restricted user meta keys. 132 $wp_default_meta_keys = array( 128 133 'wp_capabilities', 129 134 'wp_user_level', … … 133 138 ); 134 139 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 ) ) ) { 137 142 return; 138 143 } … … 231 236 ); 232 237 233 return ! empty( $notice) ? $notice[0] : array();238 return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array(); 234 239 } 235 240 … … 285 290 } 286 291 } 287 288 292 } 289 293 … … 398 402 */ 399 403 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 401 405 $theme_dir = wp_normalize_path( get_template_directory() ); 402 406 … … 407 411 } 408 412 } 409 410 413 } 411 414 -
header-footer-elementor/tags/2.2.2/languages/header-footer-elementor.pot
r3254713 r3257678 3 3 msgid "" 4 4 msgstr "" 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" 6 6 "Report-Msgid-Bugs-To: " 7 7 "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" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 159 159 msgstr "" 160 160 161 #: admin/class-hfe-addons-actions.php:1 14161 #: admin/class-hfe-addons-actions.php:147 162 162 msgid "Plugin slug is missing." 163 163 msgstr "" 164 164 165 #: admin/class-hfe-addons-actions.php:1 37165 #: admin/class-hfe-addons-actions.php:170 166 166 msgid "Plugin installation function not found." 167 167 msgstr "" 168 168 169 #: admin/class-hfe-addons-actions.php:1 60169 #: admin/class-hfe-addons-actions.php:193 170 170 msgid "Theme slug is missing." 171 171 msgstr "" 172 172 173 #: admin/class-hfe-addons-actions.php: 183173 #: admin/class-hfe-addons-actions.php:216 174 174 msgid "Theme installation function not found." 175 175 msgstr "" 176 176 177 #: admin/class-hfe-addons-actions.php:3 63177 #: admin/class-hfe-addons-actions.php:396 178 178 msgid "Plugin activation is disabled for you on this site." 179 179 msgstr "" 180 180 181 #: admin/class-hfe-addons-actions.php: 372181 #: admin/class-hfe-addons-actions.php:405 182 182 msgid "Plugin Activated." 183 183 msgstr "" 184 184 185 #: admin/class-hfe-addons-actions.php: 383185 #: admin/class-hfe-addons-actions.php:416 186 186 msgid "Theme activation is disabled for you on this site." 187 187 msgstr "" 188 188 189 #: admin/class-hfe-addons-actions.php: 392189 #: admin/class-hfe-addons-actions.php:425 190 190 msgid "Theme Activated." 191 191 msgstr "" 192 192 193 #: admin/class-hfe-addons-actions.php: 399193 #: admin/class-hfe-addons-actions.php:432 194 194 msgid "Could not activate plugin. Please activate from the Plugins page." 195 195 msgstr "" 196 196 197 #: admin/class-hfe-addons-actions.php:4 01197 #: admin/class-hfe-addons-actions.php:434 198 198 msgid "Could not activate theme. Please activate from the Themes page." 199 199 msgstr "" 200 200 201 #: admin/class-hfe-addons-actions.php:4 21202 #: admin/class-hfe-addons-actions.php:4 44201 #: admin/class-hfe-addons-actions.php:454 202 #: admin/class-hfe-addons-actions.php:477 203 203 msgid "Settings saved successfully!" 204 204 msgstr "" 205 205 206 #: admin/class-hfe-addons-actions.php:4 24207 #: admin/class-hfe-addons-actions.php:4 47206 #: admin/class-hfe-addons-actions.php:457 207 #: admin/class-hfe-addons-actions.php:480 208 208 msgid "Unable to save settings." 209 209 msgstr "" 210 210 211 #: admin/class-hfe-admin.php: 196211 #: admin/class-hfe-admin.php:208 212 212 msgid "Important Notice:" 213 213 msgstr "" 214 214 215 #: admin/class-hfe-admin.php:2 00215 #: admin/class-hfe-admin.php:212 216 216 msgid "Can't edit your header or footer?" 217 217 msgstr "" 218 218 219 #: admin/class-hfe-admin.php:2 01219 #: admin/class-hfe-admin.php:213 220 220 msgid "" 221 221 "Try clearing your cache or resetting permalinks (Settings > Permalinks > " … … 223 223 msgstr "" 224 224 225 #: admin/class-hfe-admin.php:2 02225 #: admin/class-hfe-admin.php:214 226 226 msgid "Learn More" 227 227 msgstr "" 228 228 229 #: admin/class-hfe-admin.php:272 admin/class-hfe-admin.php:559 229 #: admin/class-hfe-admin.php:218 230 msgid "Flush Permalink" 231 msgstr "" 232 233 #: admin/class-hfe-admin.php:291 admin/class-hfe-admin.php:578 230 234 msgid "Display Rules" 231 235 msgstr "" 232 236 233 #: admin/class-hfe-admin.php:2 73237 #: admin/class-hfe-admin.php:292 234 238 #: inc/widgets-manager/widgets/post-info/post-info.php:136 235 239 msgid "Date" 236 240 msgstr "" 237 241 238 #: admin/class-hfe-admin.php:3 63 admin/class-hfe-admin.php:364239 #: admin/class-hfe-admin.php:3 65 admin/class-hfe-admin.php:366242 #: 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 240 244 msgid "Elementor Header & Footer Builder" 241 245 msgstr "" 242 246 243 #: admin/class-hfe-admin.php:3 67 admin/class-hfe-admin.php:368247 #: admin/class-hfe-admin.php:386 admin/class-hfe-admin.php:387 244 248 msgid "Add New" 245 249 msgstr "" 246 250 247 #: admin/class-hfe-admin.php:3 69251 #: admin/class-hfe-admin.php:388 248 252 msgid "New Template" 249 253 msgstr "" 250 254 251 #: admin/class-hfe-admin.php:3 70255 #: admin/class-hfe-admin.php:389 252 256 msgid "Edit Template" 253 257 msgstr "" 254 258 255 #: admin/class-hfe-admin.php:3 71259 #: admin/class-hfe-admin.php:390 256 260 msgid "View Template" 257 261 msgstr "" 258 262 259 #: admin/class-hfe-admin.php:3 72inc/class-hfe-settings-page.php:381263 #: admin/class-hfe-admin.php:391 inc/class-hfe-settings-page.php:381 260 264 msgid "View All" 261 265 msgstr "" 262 266 263 #: admin/class-hfe-admin.php:3 73267 #: admin/class-hfe-admin.php:392 264 268 msgid "Search Templates" 265 269 msgstr "" 266 270 267 #: admin/class-hfe-admin.php:3 74271 #: admin/class-hfe-admin.php:393 268 272 msgid "Parent Templates:" 269 273 msgstr "" 270 274 271 #: admin/class-hfe-admin.php:3 75275 #: admin/class-hfe-admin.php:394 272 276 msgid "No Templates found." 273 277 msgstr "" 274 278 275 #: admin/class-hfe-admin.php:3 76279 #: admin/class-hfe-admin.php:395 276 280 msgid "No Templates found in Trash." 277 281 msgstr "" 278 282 279 #: admin/class-hfe-admin.php:4 23 admin/class-hfe-admin.php:424283 #: admin/class-hfe-admin.php:442 admin/class-hfe-admin.php:443 280 284 msgid "Create New" 281 285 msgstr "" 282 286 283 #: admin/class-hfe-admin.php:4 33287 #: admin/class-hfe-admin.php:452 284 288 msgid "Header/Footer Builder" 285 289 msgstr "" 286 290 287 #: admin/class-hfe-admin.php:4 34291 #: admin/class-hfe-admin.php:453 288 292 msgid "Header & Footer Builder" 289 293 msgstr "" 290 294 291 #: admin/class-hfe-admin.php:4 63295 #: admin/class-hfe-admin.php:482 292 296 msgid "Elementor Header & Footer Builder Options" 293 297 msgstr "" 294 298 295 #: admin/class-hfe-admin.php: 492299 #: admin/class-hfe-admin.php:511 296 300 msgid "Type of Template" 297 301 msgstr "" 298 302 299 #: admin/class-hfe-admin.php: 496303 #: admin/class-hfe-admin.php:515 300 304 msgid "Select Option" 301 305 msgstr "" 302 306 303 #: admin/class-hfe-admin.php: 497307 #: admin/class-hfe-admin.php:516 304 308 msgid "Header" 305 309 msgstr "" 306 310 307 #: admin/class-hfe-admin.php: 498311 #: admin/class-hfe-admin.php:517 308 312 msgid "Before Footer" 309 313 msgstr "" 310 314 311 #: admin/class-hfe-admin.php: 499315 #: admin/class-hfe-admin.php:518 312 316 msgid "Footer" 313 317 msgstr "" 314 318 315 #: admin/class-hfe-admin.php:5 00319 #: admin/class-hfe-admin.php:519 316 320 msgid "Custom Block" 317 321 msgstr "" 318 322 319 #: admin/class-hfe-admin.php:5 08 admin/class-hfe-admin.php:758323 #: admin/class-hfe-admin.php:527 admin/class-hfe-admin.php:777 320 324 msgid "Shortcode" 321 325 msgstr "" 322 326 323 #: admin/class-hfe-admin.php:5 09327 #: admin/class-hfe-admin.php:528 324 328 msgid "" 325 329 "Copy this shortcode and paste it into your post, page, or text widget " … … 327 331 msgstr "" 328 332 329 #: admin/class-hfe-admin.php:5 21333 #: admin/class-hfe-admin.php:540 330 334 msgid "Enable Layout for Elementor Canvas Template?" 331 335 msgstr "" 332 336 333 #: admin/class-hfe-admin.php:5 23337 #: admin/class-hfe-admin.php:542 334 338 msgid "" 335 339 "Enabling this option will display this layout on pages using Elementor " … … 337 341 msgstr "" 338 342 339 #: admin/class-hfe-admin.php:5 50343 #: admin/class-hfe-admin.php:569 340 344 msgid "Display On" 341 345 msgstr "" 342 346 343 #: admin/class-hfe-admin.php:5 52347 #: admin/class-hfe-admin.php:571 344 348 msgid "Add locations for where this template should appear." 345 349 msgstr "" 346 350 347 #: admin/class-hfe-admin.php:5 63351 #: admin/class-hfe-admin.php:582 348 352 msgid "Add Display Rule" 349 353 msgstr "" 350 354 351 #: admin/class-hfe-admin.php:5 72355 #: admin/class-hfe-admin.php:591 352 356 msgid "Do Not Display On" 353 357 msgstr "" 354 358 355 #: admin/class-hfe-admin.php:5 74359 #: admin/class-hfe-admin.php:593 356 360 msgid "Add locations for where this template should not appear." 357 361 msgstr "" 358 362 359 #: admin/class-hfe-admin.php: 581363 #: admin/class-hfe-admin.php:600 360 364 msgid "Exclude On" 361 365 msgstr "" 362 366 363 #: admin/class-hfe-admin.php: 584367 #: admin/class-hfe-admin.php:603 364 368 #: inc/lib/target-rule/class-astra-target-rules-fields.php:847 365 369 msgid "Add Exclusion Rule" 366 370 msgstr "" 367 371 368 #: admin/class-hfe-admin.php: 594372 #: admin/class-hfe-admin.php:613 369 373 msgid "User Roles" 370 374 msgstr "" 371 375 372 #: admin/class-hfe-admin.php: 595376 #: admin/class-hfe-admin.php:614 373 377 msgid "Display custom template based on user role." 374 378 msgstr "" 375 379 376 #: admin/class-hfe-admin.php:6 02380 #: admin/class-hfe-admin.php:621 377 381 msgid "Users" 378 382 msgstr "" 379 383 380 #: admin/class-hfe-admin.php:6 05384 #: admin/class-hfe-admin.php:624 381 385 msgid "Add User Rule" 382 386 msgstr "" 383 387 384 #: admin/class-hfe-admin.php: 686388 #: admin/class-hfe-admin.php:705 385 389 #. Translators: Post title, Template Location 386 390 msgid "Template %1$s is already assigned to the location %2$s" … … 808 812 msgstr "" 809 813 810 #: inc/lib/astra-notices/class-astra-notices.php:1 19814 #: inc/lib/astra-notices/class-astra-notices.php:146 811 815 msgid "WordPress Nonce not validated." 816 msgstr "" 817 818 #: inc/lib/astra-notices/class-astra-notices.php:153 819 msgid "Invalid notice ID." 812 820 msgstr "" 813 821 -
header-footer-elementor/tags/2.2.2/readme.txt
r3254713 r3257678 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.4 7 Stable tag: 2.2. 17 Stable tag: 2.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 129 129 130 130 == Changelog == 131 = 2.2.2 = 132 - Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version. 131 133 132 134 = 2.2.1 = -
header-footer-elementor/trunk/header-footer-elementor.php
r3254713 r3257678 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 2.2. 111 * Elementor tested up to: 3.2 712 * Elementor Pro tested up to: 3.2 710 * Version: 2.2.2 11 * Elementor tested up to: 3.28 12 * Elementor Pro tested up to: 3.28 13 13 * 14 14 * @package header-footer-elementor 15 15 */ 16 16 17 define( 'HFE_VER', '2.2. 1' );17 define( 'HFE_VER', '2.2.2' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); -
header-footer-elementor/trunk/inc/lib/astra-notices/class-astra-notices.php
r3254713 r3257678 29 29 * @since 1.0.0 30 30 */ 31 private static $version = '1.1.1 2';31 private static $version = '1.1.14'; 32 32 33 33 /** … … 82 82 * @return array 83 83 */ 84 public function add_data_attributes( $allowedposttags, $context ) { 84 public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed 85 85 $allowedposttags['a']['data-repeat-notice-after'] = true; 86 86 … … 97 97 public static function add_notice( $args = array() ) { 98 98 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 ) ) { 102 107 $notices[] = $notice_id; // Add notice id to the array. 103 108 update_option( 'allowed_astra_notices', $notices ); // Update the option. … … 124 129 $allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices. 125 130 126 // Define restricted user meta keys127 $wp_default_meta_keys = array(131 // Define restricted user meta keys. 132 $wp_default_meta_keys = array( 128 133 'wp_capabilities', 129 134 'wp_user_level', … … 133 138 ); 134 139 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 ) ) ) { 137 142 return; 138 143 } … … 231 236 ); 232 237 233 return ! empty( $notice) ? $notice[0] : array();238 return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array(); 234 239 } 235 240 … … 285 290 } 286 291 } 287 288 292 } 289 293 … … 398 402 */ 399 403 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 401 405 $theme_dir = wp_normalize_path( get_template_directory() ); 402 406 … … 407 411 } 408 412 } 409 410 413 } 411 414 -
header-footer-elementor/trunk/languages/header-footer-elementor.pot
r3254713 r3257678 3 3 msgid "" 4 4 msgstr "" 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" 6 6 "Report-Msgid-Bugs-To: " 7 7 "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" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 159 159 msgstr "" 160 160 161 #: admin/class-hfe-addons-actions.php:1 14161 #: admin/class-hfe-addons-actions.php:147 162 162 msgid "Plugin slug is missing." 163 163 msgstr "" 164 164 165 #: admin/class-hfe-addons-actions.php:1 37165 #: admin/class-hfe-addons-actions.php:170 166 166 msgid "Plugin installation function not found." 167 167 msgstr "" 168 168 169 #: admin/class-hfe-addons-actions.php:1 60169 #: admin/class-hfe-addons-actions.php:193 170 170 msgid "Theme slug is missing." 171 171 msgstr "" 172 172 173 #: admin/class-hfe-addons-actions.php: 183173 #: admin/class-hfe-addons-actions.php:216 174 174 msgid "Theme installation function not found." 175 175 msgstr "" 176 176 177 #: admin/class-hfe-addons-actions.php:3 63177 #: admin/class-hfe-addons-actions.php:396 178 178 msgid "Plugin activation is disabled for you on this site." 179 179 msgstr "" 180 180 181 #: admin/class-hfe-addons-actions.php: 372181 #: admin/class-hfe-addons-actions.php:405 182 182 msgid "Plugin Activated." 183 183 msgstr "" 184 184 185 #: admin/class-hfe-addons-actions.php: 383185 #: admin/class-hfe-addons-actions.php:416 186 186 msgid "Theme activation is disabled for you on this site." 187 187 msgstr "" 188 188 189 #: admin/class-hfe-addons-actions.php: 392189 #: admin/class-hfe-addons-actions.php:425 190 190 msgid "Theme Activated." 191 191 msgstr "" 192 192 193 #: admin/class-hfe-addons-actions.php: 399193 #: admin/class-hfe-addons-actions.php:432 194 194 msgid "Could not activate plugin. Please activate from the Plugins page." 195 195 msgstr "" 196 196 197 #: admin/class-hfe-addons-actions.php:4 01197 #: admin/class-hfe-addons-actions.php:434 198 198 msgid "Could not activate theme. Please activate from the Themes page." 199 199 msgstr "" 200 200 201 #: admin/class-hfe-addons-actions.php:4 21202 #: admin/class-hfe-addons-actions.php:4 44201 #: admin/class-hfe-addons-actions.php:454 202 #: admin/class-hfe-addons-actions.php:477 203 203 msgid "Settings saved successfully!" 204 204 msgstr "" 205 205 206 #: admin/class-hfe-addons-actions.php:4 24207 #: admin/class-hfe-addons-actions.php:4 47206 #: admin/class-hfe-addons-actions.php:457 207 #: admin/class-hfe-addons-actions.php:480 208 208 msgid "Unable to save settings." 209 209 msgstr "" 210 210 211 #: admin/class-hfe-admin.php: 196211 #: admin/class-hfe-admin.php:208 212 212 msgid "Important Notice:" 213 213 msgstr "" 214 214 215 #: admin/class-hfe-admin.php:2 00215 #: admin/class-hfe-admin.php:212 216 216 msgid "Can't edit your header or footer?" 217 217 msgstr "" 218 218 219 #: admin/class-hfe-admin.php:2 01219 #: admin/class-hfe-admin.php:213 220 220 msgid "" 221 221 "Try clearing your cache or resetting permalinks (Settings > Permalinks > " … … 223 223 msgstr "" 224 224 225 #: admin/class-hfe-admin.php:2 02225 #: admin/class-hfe-admin.php:214 226 226 msgid "Learn More" 227 227 msgstr "" 228 228 229 #: admin/class-hfe-admin.php:272 admin/class-hfe-admin.php:559 229 #: admin/class-hfe-admin.php:218 230 msgid "Flush Permalink" 231 msgstr "" 232 233 #: admin/class-hfe-admin.php:291 admin/class-hfe-admin.php:578 230 234 msgid "Display Rules" 231 235 msgstr "" 232 236 233 #: admin/class-hfe-admin.php:2 73237 #: admin/class-hfe-admin.php:292 234 238 #: inc/widgets-manager/widgets/post-info/post-info.php:136 235 239 msgid "Date" 236 240 msgstr "" 237 241 238 #: admin/class-hfe-admin.php:3 63 admin/class-hfe-admin.php:364239 #: admin/class-hfe-admin.php:3 65 admin/class-hfe-admin.php:366242 #: 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 240 244 msgid "Elementor Header & Footer Builder" 241 245 msgstr "" 242 246 243 #: admin/class-hfe-admin.php:3 67 admin/class-hfe-admin.php:368247 #: admin/class-hfe-admin.php:386 admin/class-hfe-admin.php:387 244 248 msgid "Add New" 245 249 msgstr "" 246 250 247 #: admin/class-hfe-admin.php:3 69251 #: admin/class-hfe-admin.php:388 248 252 msgid "New Template" 249 253 msgstr "" 250 254 251 #: admin/class-hfe-admin.php:3 70255 #: admin/class-hfe-admin.php:389 252 256 msgid "Edit Template" 253 257 msgstr "" 254 258 255 #: admin/class-hfe-admin.php:3 71259 #: admin/class-hfe-admin.php:390 256 260 msgid "View Template" 257 261 msgstr "" 258 262 259 #: admin/class-hfe-admin.php:3 72inc/class-hfe-settings-page.php:381263 #: admin/class-hfe-admin.php:391 inc/class-hfe-settings-page.php:381 260 264 msgid "View All" 261 265 msgstr "" 262 266 263 #: admin/class-hfe-admin.php:3 73267 #: admin/class-hfe-admin.php:392 264 268 msgid "Search Templates" 265 269 msgstr "" 266 270 267 #: admin/class-hfe-admin.php:3 74271 #: admin/class-hfe-admin.php:393 268 272 msgid "Parent Templates:" 269 273 msgstr "" 270 274 271 #: admin/class-hfe-admin.php:3 75275 #: admin/class-hfe-admin.php:394 272 276 msgid "No Templates found." 273 277 msgstr "" 274 278 275 #: admin/class-hfe-admin.php:3 76279 #: admin/class-hfe-admin.php:395 276 280 msgid "No Templates found in Trash." 277 281 msgstr "" 278 282 279 #: admin/class-hfe-admin.php:4 23 admin/class-hfe-admin.php:424283 #: admin/class-hfe-admin.php:442 admin/class-hfe-admin.php:443 280 284 msgid "Create New" 281 285 msgstr "" 282 286 283 #: admin/class-hfe-admin.php:4 33287 #: admin/class-hfe-admin.php:452 284 288 msgid "Header/Footer Builder" 285 289 msgstr "" 286 290 287 #: admin/class-hfe-admin.php:4 34291 #: admin/class-hfe-admin.php:453 288 292 msgid "Header & Footer Builder" 289 293 msgstr "" 290 294 291 #: admin/class-hfe-admin.php:4 63295 #: admin/class-hfe-admin.php:482 292 296 msgid "Elementor Header & Footer Builder Options" 293 297 msgstr "" 294 298 295 #: admin/class-hfe-admin.php: 492299 #: admin/class-hfe-admin.php:511 296 300 msgid "Type of Template" 297 301 msgstr "" 298 302 299 #: admin/class-hfe-admin.php: 496303 #: admin/class-hfe-admin.php:515 300 304 msgid "Select Option" 301 305 msgstr "" 302 306 303 #: admin/class-hfe-admin.php: 497307 #: admin/class-hfe-admin.php:516 304 308 msgid "Header" 305 309 msgstr "" 306 310 307 #: admin/class-hfe-admin.php: 498311 #: admin/class-hfe-admin.php:517 308 312 msgid "Before Footer" 309 313 msgstr "" 310 314 311 #: admin/class-hfe-admin.php: 499315 #: admin/class-hfe-admin.php:518 312 316 msgid "Footer" 313 317 msgstr "" 314 318 315 #: admin/class-hfe-admin.php:5 00319 #: admin/class-hfe-admin.php:519 316 320 msgid "Custom Block" 317 321 msgstr "" 318 322 319 #: admin/class-hfe-admin.php:5 08 admin/class-hfe-admin.php:758323 #: admin/class-hfe-admin.php:527 admin/class-hfe-admin.php:777 320 324 msgid "Shortcode" 321 325 msgstr "" 322 326 323 #: admin/class-hfe-admin.php:5 09327 #: admin/class-hfe-admin.php:528 324 328 msgid "" 325 329 "Copy this shortcode and paste it into your post, page, or text widget " … … 327 331 msgstr "" 328 332 329 #: admin/class-hfe-admin.php:5 21333 #: admin/class-hfe-admin.php:540 330 334 msgid "Enable Layout for Elementor Canvas Template?" 331 335 msgstr "" 332 336 333 #: admin/class-hfe-admin.php:5 23337 #: admin/class-hfe-admin.php:542 334 338 msgid "" 335 339 "Enabling this option will display this layout on pages using Elementor " … … 337 341 msgstr "" 338 342 339 #: admin/class-hfe-admin.php:5 50343 #: admin/class-hfe-admin.php:569 340 344 msgid "Display On" 341 345 msgstr "" 342 346 343 #: admin/class-hfe-admin.php:5 52347 #: admin/class-hfe-admin.php:571 344 348 msgid "Add locations for where this template should appear." 345 349 msgstr "" 346 350 347 #: admin/class-hfe-admin.php:5 63351 #: admin/class-hfe-admin.php:582 348 352 msgid "Add Display Rule" 349 353 msgstr "" 350 354 351 #: admin/class-hfe-admin.php:5 72355 #: admin/class-hfe-admin.php:591 352 356 msgid "Do Not Display On" 353 357 msgstr "" 354 358 355 #: admin/class-hfe-admin.php:5 74359 #: admin/class-hfe-admin.php:593 356 360 msgid "Add locations for where this template should not appear." 357 361 msgstr "" 358 362 359 #: admin/class-hfe-admin.php: 581363 #: admin/class-hfe-admin.php:600 360 364 msgid "Exclude On" 361 365 msgstr "" 362 366 363 #: admin/class-hfe-admin.php: 584367 #: admin/class-hfe-admin.php:603 364 368 #: inc/lib/target-rule/class-astra-target-rules-fields.php:847 365 369 msgid "Add Exclusion Rule" 366 370 msgstr "" 367 371 368 #: admin/class-hfe-admin.php: 594372 #: admin/class-hfe-admin.php:613 369 373 msgid "User Roles" 370 374 msgstr "" 371 375 372 #: admin/class-hfe-admin.php: 595376 #: admin/class-hfe-admin.php:614 373 377 msgid "Display custom template based on user role." 374 378 msgstr "" 375 379 376 #: admin/class-hfe-admin.php:6 02380 #: admin/class-hfe-admin.php:621 377 381 msgid "Users" 378 382 msgstr "" 379 383 380 #: admin/class-hfe-admin.php:6 05384 #: admin/class-hfe-admin.php:624 381 385 msgid "Add User Rule" 382 386 msgstr "" 383 387 384 #: admin/class-hfe-admin.php: 686388 #: admin/class-hfe-admin.php:705 385 389 #. Translators: Post title, Template Location 386 390 msgid "Template %1$s is already assigned to the location %2$s" … … 808 812 msgstr "" 809 813 810 #: inc/lib/astra-notices/class-astra-notices.php:1 19814 #: inc/lib/astra-notices/class-astra-notices.php:146 811 815 msgid "WordPress Nonce not validated." 816 msgstr "" 817 818 #: inc/lib/astra-notices/class-astra-notices.php:153 819 msgid "Invalid notice ID." 812 820 msgstr "" 813 821 -
header-footer-elementor/trunk/readme.txt
r3254713 r3257678 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.4 7 Stable tag: 2.2. 17 Stable tag: 2.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 129 129 130 130 == Changelog == 131 = 2.2.2 = 132 - Improvement: Compatibility with latest Elementor and Elementor Pro 3.28 version. 131 133 132 134 = 2.2.1 =
Note: See TracChangeset
for help on using the changeset viewer.