- Timestamp:
- 05/22/2023 03:11:27 PM (3 years ago)
- Location:
- jax-lite/1.4.6
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from jax-lite/1.4.5)
-
core/extras/changelog.php (modified) (1 diff)
-
core/includes/class-customize.php (modified) (3 diffs)
-
core/includes/class-notice.php (modified) (4 diffs)
-
core/templates/slogan.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jax-lite/1.4.6/core/extras/changelog.php
r188714 r192245 1 1 <div class="changelog_container"> 2 3 <div class="changelog_element"> 4 5 <span class="theme_version"> 6 <strong><?php echo esc_html__('v1.4.6', 'jax-lite'); ?></strong> 7 <?php echo esc_html__('Release date : May, 22 - 2023', 'jax-lite'); ?> 8 <span class="dashicons dashicons-arrow-down-alt2"></span> 9 </span> 10 11 <div class="changelog_details" style="display: none; "> 12 <ul> 13 <li><?php echo esc_html__('Reflected XSS vulnerability', 'jax-lite'); ?></li> 14 </ul> 15 </div> 16 17 </div> 2 18 3 19 <div class="changelog_element"> -
jax-lite/1.4.6/core/includes/class-customize.php
r148255 r192245 319 319 <div class="inside"> 320 320 321 <h2><?php esc_html_e('Premium features','jax-lite');?></h2> 322 <p><?php esc_html_e('Upgrade to the premium version of Jax, to enable all features.','jax-lite');?></p> 321 <h2><?php esc_html_e('Pay what you want','jax-lite');?></h2> 322 323 <p><?php esc_html_e('You have the freedom to set your own price for purchasing the Jax theme and receive an additional bundle of 12 WordPress products.','jax-lite');?></p> 324 325 <h2><?php esc_html_e('Pro features of Jax','jax-lite');?></h2> 323 326 324 327 <ul class="features-list"> … … 337 340 <li><span class="dashicon dashicons dashicons-yes"></span><?php esc_html_e('Backup section','jax-lite');?></li> 338 341 <li><span class="dashicon dashicons dashicons-yes"></span><?php esc_html_e('Unlimited website usage','jax-lite');?></li> 339 <li><span class="dashicon dashicons dashicons-yes"></span><?php esc_html_e('60% discount on subscription renewal','jax-lite');?></li>340 342 <li><span class="dashicon dashicons dashicons-yes"></span><?php esc_html_e('7 days money back guarantee','jax-lite');?></li> 341 343 … … 345 347 346 348 <li><a class="button demo-button" href="<?php echo esc_url( 'https://demo.themeinprogress.com/?theme=Jax' ); ?>" title="<?php esc_attr_e('View live demo','jax-lite');?>" target="_blank"><?php esc_html_e('View live demo','jax-lite');?></a></li> 347 <li><a class="button purchase-button" href="<?php echo esc_url( 'https://www.themeinprogress.com/jax-free-responsive-creative-wordpress-theme/?ref=2&campaign=jax-panel' ); ?>" title="<?php esc_attr_e(' Upgrade to Jax Premium','jax-lite');?>" target="_blank"><?php esc_html_e('Upgrade to Jax Premium','jax-lite');?></a></li>349 <li><a class="button purchase-button" href="<?php echo esc_url( 'https://www.themeinprogress.com/jax-free-responsive-creative-wordpress-theme/?ref=2&campaign=jax-panel' ); ?>" title="<?php esc_attr_e('Buy now','jax-lite');?>" target="_blank"><?php esc_html_e('Buy now','jax-lite');?></a></li> 348 350 349 351 </ul> -
jax-lite/1.4.6/core/includes/class-notice.php
r140423 r192245 23 23 24 24 if ( 25 !get_option( 'jax-lite- dismissed-notice') &&25 !get_option( 'jax-lite-hidden-notice') && 26 26 version_compare( PHP_VERSION, JAX_LITE_MIN_PHP_VERSION, '>=' ) 27 27 ) { … … 42 42 if ( isset( $_GET['jax-lite-dismiss'] ) && check_admin_referer( 'jax-lite-dismiss-action' ) ) { 43 43 44 update_option( 'jax-lite- dismissed-notice', intval($_GET['jax-lite-dismiss']) );44 update_option( 'jax-lite-hidden-notice', intval($_GET['jax-lite-dismiss']) ); 45 45 remove_action( 'admin_notices', array(&$this, 'admin_notice') ); 46 46 … … 65 65 <?php 66 66 67 esc_html_e( ' Upgrade to the premium version of Jax, to enable 600+ Google Fonts, Unlimited sidebars, Portfolio section and much more. ', 'jax-lite' );67 esc_html_e( 'Pay what you want for purchasing the Jax theme and receive an additional bundle of 12 WordPress products ', 'sean-lite' ); 68 68 69 69 printf( … … 80 80 <p> 81 81 82 <a target="_blank" href="<?php echo esc_url( 'https://www.themeinprogress.com/jax-free-responsive-creative-wordpress-theme/?ref=2&campaign=jax-notice' ); ?>" class="button button-primary"><?php esc_html_e( ' Upgrade to Jax Premium', 'jax-lite' ); ?></a>82 <a target="_blank" href="<?php echo esc_url( 'https://www.themeinprogress.com/jax-free-responsive-creative-wordpress-theme/?ref=2&campaign=jax-notice' ); ?>" class="button button-primary"><?php esc_html_e( 'Buy now', 'jax-lite' ); ?></a> 83 83 84 84 </p> -
jax-lite/1.4.6/core/templates/slogan.php
r140423 r192245 36 36 } elseif ( is_search() ) { 37 37 38 $html = "<h1 class='title'>" . esc_html__( 'Search results for : ', "jax-lite" ) . $s. "</h1>";38 $html = "<h1 class='title'>" . esc_html__( 'Search results for : ', "jax-lite" ) . get_search_query() . "</h1>"; 39 39 40 40 } elseif ( is_404() ) { -
jax-lite/1.4.6/readme.txt
r188714 r192245 4 4 Requires at least: 4.0 5 5 Tested up to: 6.2 6 Stable tag: 1.4. 56 Stable tag: 1.4.6 7 7 Requires PHP: 5.3 8 8 License: GPLv3 or later … … 21 21 22 22 == Changelog == 23 24 = 1.4.6 = 25 Release date - May, 22 - 2023 26 27 * Fixed - Reflected XSS vulnerability 23 28 24 29 = 1.4.5 = -
jax-lite/1.4.6/style.css
r188714 r192245 6 6 Author: Theme in Progress. 7 7 Author URI: https://www.themeinprogress.com 8 Version: 1.4. 58 Version: 1.4.6 9 9 Requires PHP: 5.3 10 10 Tested up to: 6.2
Note: See TracChangeset
for help on using the changeset viewer.