Skip to content

Commit

Permalink
v4.4.16 build v2
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeo committed Oct 6, 2021
1 parent 9e956a7 commit aa3bc5e
Show file tree
Hide file tree
Showing 39 changed files with 37,877 additions and 55,932 deletions.
2 changes: 1 addition & 1 deletion assets/front/css/_dev/style-rtl-without-bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/front/css/_dev/style-rtl-without-bootstrap.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/front/css/_dev/style-without-bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/front/css/_dev/style-without-bootstrap.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/front/css/rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/front/css/rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/front/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/front/css/style.min.css

Large diffs are not rendered by default.

20 changes: 12 additions & 8 deletions core/czr-admin-ccat.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,9 @@ function czr_fn_may_be_display_update_notice() {
//to avoid hammering the wp admin dashboard with a new admin notice each time
if ( ( defined('DISPLAY_UPDATE_NOTIFICATION') && !DISPLAY_UPDATE_NOTIFICATION ) || ( defined('DISPLAY_PRO_UPDATE_NOTIFICATION') && !DISPLAY_PRO_UPDATE_NOTIFICATION ) )
return;
$screen = get_current_screen();
if ( is_object($screen) && 'appearance_page_welcome' === $screen-> id )
return;

$opt_name = CZR_IS_PRO ? 'last_update_notice_pro' : 'last_update_notice';
$last_update_notice_values = czr_fn_opt($opt_name);
Expand Down Expand Up @@ -424,17 +427,17 @@ function czr_fn_may_be_display_update_notice() {

ob_start();
?>
<div class="updated czr-update-notice" style="position:relative">
<div class="notice notice-info czr-update-notice" style="position:relative">
<?php
echo apply_filters(
'czr_update_notice',
sprintf('<h3>%1$s %2$s %3$s %4$s. <a class="" href="%5$s" title="%6$s">%6$s %7$s</a></h3>',
__( "You have recently updated to", "customizr"),
sprintf('<h3>➡️ %1$s %2$s %3$s %4$s. <strong><a href="%5$s" title="%6$s">%6$s %7$s</a></strong></h3>',
__( "You have recently updated to", "customizr"),
CZR_IS_PRO ? 'Customizr Pro' : 'Customizr',
__( "version", "customizr"),
CUSTOMIZR_VER,
admin_url() .'themes.php?page=welcome.php',
__( "Changelog here" , "customizr" ),
__( "Make sure to read the changelog" , "customizr" ),
is_rtl() ? '&laquo;' : '&raquo;'
)
);
Expand Down Expand Up @@ -534,10 +537,11 @@ function czr_fn_welcome_panel() {

<?php
if ( !CZR_IS_PRO ) {
printf( '<h3>%1$s 🙏</h3>',
sprintf( __( "If you enjoy using the Customizr theme for your website, please consider %s. Your support allows us to keep the theme at the highest level. Thank you!", "customizr"),
sprintf( '<a href="%1$s" title="%2$s" target="_blank">%2$s</a>', 'https://presscustomizr.com/customizr-pro/', __("upgrading to the pro version", "customizr") )
)
printf( '<h3>%1$s</h3><h3>%2$s 🙏 </h3>',
sprintf( __( "If you enjoy using the Customizr theme for your website, please consider %s.", "customizr"),
sprintf( '<a style="color:#d87f00" href="%1$s" title="%2$s" target="_blank">%2$s</a>', 'https://presscustomizr.com/customizr-pro/', __("upgrading to the pro version", "customizr") )
),
__('Your support allows us to keep the theme at the highest level. Thank you!', 'customizr')
);
}
?>
Expand Down
Binary file modified inc/lang/ar.mo
Binary file not shown.
Loading

0 comments on commit aa3bc5e

Please sign in to comment.