• Hello… we would like to know if it? possible to limit lenght of the product title on the mini cart… some of our product titles are quite long.. but in the mini cart woould be enoguh to show maybe 12-15 letters… thanks

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there, on the website you provided it is not installed YITH Proteo, have you switched to a different theme?

    Thread Starter frueda30

    (@frueda30)

    Hello Armando.. no, we still use Proteo

    YITH Proteo ChildVersion: 1.0.0

    Von YITH

    This is a child theme of YITH Proteo, generated by YITH_Proteo_Wizard.

    Hi, 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 );
    	}
    }
    Thread Starter frueda30

    (@frueda30)

    Thanks! ..

    You are Welcome

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Mini Cart – Product title too long’ is closed to new replies.