Forum Replies Created
-
AuthorPosts
-
Hi,
- You go to the single product -> set "Product data: Gift card" and set the options for it.
- You need to set the "Single Product Layout" is "Default" (not use Product Block).
- If you want to use Product Block to build "Single Product Layout", you need to create a shortcode to display the options of Gift card product.
Note:
- I have checked the plugin AAA and found that it used Hook "'woocommerce_single_product_summary'" to display on the single product page.
- If you use Product Block to build "Single product layout", the options of "Gift Card" are not displayed because they directly call the function without using Hook "'woocommerce_single_product_summary'".
Best regards,
This reply has been marked as private.Hi,
You can select to display the product (Featured or On-Sale) via order by (date, price, sale).
Hi,
Since WordPress version 4.1, the function "add_theme_support('title-tag')" replaced 'wp_title'.
https://codex.wordpress.org/Title_Tag
To custom the title tab: you can replace the function "yolo_render_title" with the following lines:
remove_action( 'wp_head','_wp_render_title_tag',1);
if ( ! function_exists( 'yolo_render_title') ) {
function yolo_render_title() {
?>
<title><?php if ( is_home() ) { bloginfo('name'); } else { bloginfo('name'); wp_title('»', true, '');} ?></title>
<?php
}
add_action( 'wp_head', 'yolo_render_title',1 );
}
You can view this topic to clarify:
Best regards,
Hi,
After changing the value " max_input_vars = 3000", you need to reset Apache.
You can check this value with going to Woocommerce -> Status -> PHP max input vars.
Please check again.
Thanks.
Hi,
You can do the instruction below:
Hope that helps!.Best regards,
Hi,
I get this error when your site login.
Please check again.
Thanks,
Thanks for your feedback!.
So happy to help you!.
Hi,
Thanks for contacting us!.
You go to the "yolo-layout.php" file (/wp-content/themes/yolo-kidzone/includes/framework/libs/yolo-layout.php) and find to the function "yolo_render_title" -> you can edit for "wp_title".
Best regards,
Hi,
I'm not sure this problem.
Please send me admin your account and link your site.
I will help you check.
Best regards,
Hi,
I changed a few the option from Page Option and Theme Options. Please reload your site and check again.
Page Option -> Page Footer:
Theme Options -> Footer:
Thanks,
Hi,
This problem caused by the plugin "Visual Composer".
You only need to update the Visual Composer last new version.
Thanks,
Hi,
Please updating your PHP version to 5.6.
If the error still exits, please contact the hosting company to enable the function "ini_get_all()".
(from version WordPress 4.6, they use the function "ini_get_all()").
You can refer this topic to clarify:
Best regards,
Hi,
I updated the plugin "Visual Composer", please reload your site and check again.
Thanks,
Hi,
You can use the plugin "Loco Translate" to translate it or find to this file and edit it.
-
AuthorPosts
