Armando
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [YITH Proteo] Line breaks are not workingHi, add this code to the custom style section
article.post .entry-content p { word-break: break-all }
Forum: Themes and Templates
In reply to: [YITH Proteo] Proteo theme NOT WORKING on Android TabletHi, I cannot replicat the issue on my android tablet. Have you tested also on a different android tablet?
Forum: Themes and Templates
In reply to: [YITH Proteo] Unable to open Site IdentityHi, if I good understood it does not work only on your migrated website right? maybe some files have not been moved correctly. Do you have some js issues in browser console on clicking on that sections?
Forum: Themes and Templates
In reply to: [YITH Proteo] Change Color LinksHi there, I don’t see any green link. Can you please make more clear to what links you are referring?
Forum: Themes and Templates
In reply to: [YITH Proteo] Change Color LinksHi, are you referring to the on hover color?
Forum: Plugins
In reply to: [YITH Slider for page builders] I can’t translate sliders with WPMLHi, at the moment the plugin does not support WPML.
Forum: Themes and Templates
In reply to: [YITH Proteo] Add a Script to Home pageHi, I added that same script to the same file and the script is printed in the frontend. Maybe you are using a cache system?
Forum: Themes and Templates
In reply to: [YITH Proteo] Logo & menu header is not visible on shop pageHi, I cannot replicate the problem. Probably your header condition is not correctly set for shop page?
Forum: Themes and Templates
In reply to: [YITH Proteo] noindex in pagesHi there, you will need to add this code in the header of the page you want to no be indexed
<meta name="robots" content="noindex">
you could add it by a code snippet in the theme functions.php but it could be better to use a plugin that will help you to add it only on pages you select.
Forum: Themes and Templates
In reply to: [YITH Proteo] show categories on shop pageHi, what you mean by “classified”?
Forum: Themes and Templates
In reply to: [YITH Proteo] woocomerce productsHi there, try to add this code snippet to your child theme functions.php
if ( !function_exists( 'yith_proteo_woocommerce_max_rows' ) ) { add_action( 'after_setup_theme', 'yith_proteo_woocommerce_max_rows' ); function yith_proteo_woocommerce_max_rows() { add_theme_support( 'woocommerce', array( 'product_grid' => array( 'default_rows' => 3, 'min_rows' => 2, 'max_rows' => 20, ), ) ); } }
Forum: Themes and Templates
In reply to: [YITH Proteo] Add a Script to Home pageForum: Themes and Templates
In reply to: [YITH Proteo] Problem with main menu after theme updateDo you have a link to the test domain?
Forum: Themes and Templates
In reply to: [YITH Proteo] Update the link for My Account iconHi, you could add such a snippet of code in code snippet plugin or in your child theme functions.php file
if ( ! function_exists( 'yith_proteo_account_widget_url_custom' ) ) { add_filter( 'yith_proteo_account_widget_url', 'yith_proteo_account_widget_url_custom', 10, 2 ); function yith_proteo_account_widget_url_custom( $url, $i ) { return wc_get_page_permalink( 'myaccount' ); } }
Forum: Themes and Templates
In reply to: [YITH Proteo] Cart Icon is missingHi the theme has no native cart widget, it uses the woocomerce cart widget, so basically it is the same as the one you add. Check here