Forum Replies Created
-
AuthorPosts
-
Hi again.
We have checked and helped you improve the loading animation smoothly.
Please check it again.
Thanks.
We also found the custom source code at the functions.php file on the parent theme.
function _remove_script_version( $src ){ $parts = explode( '?ver', $src ); return $parts[0]; } add_filter( 'script_loader_src', '_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', '_remove_script_version', 15, 1 ); define('AUTOSAVE_INTERVAL', 300); // seconds define('WP_POST_REVISIONS', 3); /** * Disable the emoji's */ function disable_emojis() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' ); } add_action( 'init', 'disable_emojis' ); /** * Filter function used to remove the tinymce emoji plugin. * * @param array $plugins * @return array Difference betwen the two arrays */ function disable_emojis_tinymce( $plugins ) { if ( is_array( $plugins ) ) { return array_diff( $plugins, array( 'wpemoji' ) ); } else { return array(); } } add_filter('script_loader_tag', 'add_async_attribute', 10, 2); function add_async_attribute($tag, $handle) { if(!is_admin()){ if ('jquery-core' == $handle) { return $tag; } return str_replace(' src', ' defer src', $tag); }else{ return $tag; } }Please move that code to the child theme to avoid the miss when updating the theme.
Thanks.
Hi again.
I have checked your site and found the issue from your custom source code at the functions.php file on the child theme.
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); function add_rel_preload($html, $handle, $href, $media) { if (is_admin()) return $html; $html = <<<EOT <link rel='preload' as='style' onload="this.onload=null;this.rel='stylesheet'" id='$handle' href='$href' type='text/css' media='all' /> EOT; return $html; } add_filter( 'style_loader_tag', 'add_rel_preload', 10, 4 );After removing those functions, the cart works fine.
Please check it again.
Thanks.
Hi.
Thank you for contacting us.
Yes, you can remove that info by custom CSS. Please give us that link has the testimonial. We will help you check it again.
Thanks.
5 years, 10 months ago in reply to: There was a problem with your action. Please try again or reload the page #22306Hi.
Thank you for contacting us.
Please give us your site admin account.
We will help you check it soon.
Thanks.
Hi again.
We have checked and fixed that issue on your site.
Please check it again.
Thanks.
Hi Pete.
Thank you for contacting us.
Can you give us your site info admin and FTP account to our [email protected] email? We will help you check that issue soon.
Thanks.
Yes, please check your site admin account info again. It doesn't correct. Please give us that info and we will help you check it soon.
Thanks.
Yes, please check your site admin account info again. It doesn't correct. Please give us that info and we will help you check it soon.
Thanks.
Yes, please check your site admin account info again. It doesn't correct.
Thanks.
Hi again.
We have tried both passwords, but it doesn't correct. Can you check it again?
Thanks.
Hi again.
We have checked and fixed the Framework plugin issue.
For the Customizer issue, we also change the theme to the default theme, it still can't work. We need more time to check it.
For our theme, we use the Theme options to change the theme config, we don't use the customizer. So you still can change the theme options as you want.
Please check it again.
Thanks.
Hi.
Thank you for contacting us.
Please give us your site URL, admin account. We will help you check it soon.
Thanks.
Hi again.
To hide that info, you can use the custom CSS below:
.portfolio-wrapper .portfolio-item .portfolio-title-wrap.top .portfolio-tag { display: none; }
Please check it again.
Thanks.
Hi again.
We have checked your site and found the issue from PHP config. Please follow that link and increase your PHP config as our recommended. It will help you solve that issue.
https://yolotheme.com/knowledge-base/recommended-php-configuration-limits/
Thanks.
-
AuthorPosts
