Armando
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [YITH Proteo] Mini Cart – Product title too longHi, try to add this code in the child theme functions.php or in a php snippets plugin
if ( !function_exists( 'yith_proteo_woocommerce_cart_item_name' ) && !function_exists( 'yith_proteo_woocommerce_change_cart_item_name' ) ) { add_action( 'woocommerce_before_mini_cart_contents', 'yith_proteo_woocommerce_change_cart_item_name' ); function yith_proteo_woocommerce_change_cart_item_name() { add_filter( 'woocommerce_cart_item_name', 'yith_proteo_woocommerce_cart_item_name', 10, 3 ); } function yith_proteo_woocommerce_cart_item_name( $name, $cart_item, $cart_item_key ){ return substr( $name, 0, 15 ); } }
Forum: Themes and Templates
In reply to: [YITH Wonder] How to change the breakpoint on the Blog page?Hi there, max-width is correct.
Forum: Themes and Templates
In reply to: [YITH Proteo] Mini Cart – Product title too longHi there, on the website you provided it is not installed YITH Proteo, have you switched to a different theme?
Forum: Themes and Templates
In reply to: [YITH Wonder] Header not showing in mobile viewHi,
I just checked your page on mobile, and the header is visible. You can access the menu links clicking on the two horizontal bars icon after the social icons… check it here https://prnt.sc/8uARTj2q2E9T
Forum: Themes and Templates
In reply to: [YITH Proteo] How can I add a second MenuHi, about the blog add this css code into the CSS additional section
@media (max-width: 600px) { body.blog .blog-posts.columns-2 { display: block; } }
About the second menu, you should create a child theme and manage the theme template file for the header part that is yith-proteo/template-parts/header/masthead.php and do your coding to show a second menu in there
Forum: Themes and Templates
In reply to: [YITH Proteo] How can I add a second MenuHi there, it is not possible by theme settings. You should use the child and manage the header/template-parts masthead template file
Forum: Themes and Templates
In reply to: [YITH Proteo] Slider mobile bannerHi there, I see the same slider on both desktop and mobile, that is the slider with id 75501, with two slides, both visible. Do you mean you also added another slider that should show only on mobile?
Forum: Themes and Templates
In reply to: [YITH Proteo] Mostrar dos productos por filaHi, we cannot access the link you provided, it load endlessly. However try with this css code
@media only screen and (max-device-width : 767px) { ul.products { grid-template-columns: repeat(2, 1fr); } }
Forum: Themes and Templates
In reply to: [YITH Proteo] fix size for header background imageHi there, I don’t see any image set as background, you can add it in Customizer > Header & Topbar > Header Background
Forum: Themes and Templates
In reply to: [YITH Proteo] How to edit my account icon linkHi, you could add such a snippet of code in a 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] Line breaks are not workingHi, add this code too in custom style
@media (max-width: 600px) { body.blog .blog-posts.columns-2 { display: block; } }
Forum: Themes and Templates
In reply to: [YITH Proteo] fix size for header background imageHi there, can you maybe share the url of your website so I can see the header?
Forum: Themes and Templates
In reply to: [YITH Proteo] Aviso en tiendaHi, thank you for the feedback, we will soon send a theme update.
Forum: Themes and Templates
In reply to: [YITH Proteo] Menu widthHi add this code in custom style section
.site-header.center_logo_navigation_below .header-contents { display: block; }
Forum: Themes and Templates
In reply to: [YITH Proteo] Translation issue in cart checkout pageHi there, these texts not comes from the theme, try to check the privacy field in WooCommerce > Settings