Viewing 9 replies - 1 through 9 (of 9 total)
  • Misma situación, en mi pagina se vende en lotes de 3, al ver la lista me aparece en cantidad 1, pero el total de producto me sale la cantidad sumada (3), lo que le ocasiona confusión a los cliente.

    Gracias.

    Plugin Author YITHEMES

    (@yithemes)

    Hi @sylvainkirsch,
    seems that the issue comes from the HTML subtitle that is pushed into the product name. This is breaking the quantity box HTML.
    Try to remove from that product the HTML subtitle and let us know.

    @alako can you share a page of your site so we can check the issue?

    Thread Starter sylvainkirsch

    (@sylvainkirsch)

    Hi @yithemes !

    Yes you’re right.
    It’s working when I remove the subtitle rom the product name, but I need to keep the subtitle on my product page.
    Is there a css solution or anything else to adapt the qote list ?

    Thanks,

    Plugin Author YITHEMES

    (@yithemes)

    Hi there
    Try to add this custom code in your functions.php file

    if( !function_exists('yith_request_a_quote_fix_qty_args')) {
    	add_filter( 'woocommerce_quantity_input_args', 'yith_request_a_quote_fix_qty_args', 9999, 1 );
    
    	/**
    	 * @param array $args
    	 *
    	 * @return array
    	 */
    	function yith_request_a_quote_fix_qty_args( $args ) {
    
    		if( isset( $args['aria-labelledby'] ) ){
    			unset( $args['aria-labelledby'] );
    		}
    		return $args;
    	}
    }
    Thread Starter sylvainkirsch

    (@sylvainkirsch)

    Hi !

    Thanks so much for your reply but it doesn’t work. I still have same problems.
    Another solution ?

    Thanks,

    Plugin Author YITHEMES

    (@yithemes)

    Hi there,
    Could be a issue with the theme, can you try with another theme ?

    Thread Starter sylvainkirsch

    (@sylvainkirsch)

    Hi @yithemes,

    My customer want to keep this theme ??
    I need to find a solution. Do you know where does the problem come from ?

    Thanks in advance,

    Thread Starter sylvainkirsch

    (@sylvainkirsch)

    Hi @yithemes,

    Just a kind reminders about my problem.

    Thanks,

    Thread Starter sylvainkirsch

    (@sylvainkirsch)

    Just more details @yithemes to help:
    The cause of the problem is the <div class="sous-titre"> witch is inside of the product title.
    When I delete it, it works !

    The product title code is actually:
    <h1 class="product_title entry-title">WAYUP 300<div class="sous-titre">écartement électrique et aide à la déambulation</div></h1>

    I need to keep it like this on all of product page (my client doesn’t want to change it).

    Is there any js solution to rewrite it in your request-quote page (https://www.nausicaa-dev.com/request-quote/) like this :
    <h1 class="product_title entry-title">WAYUP 300 écartement électrique et aide à la déambulation</h1> ?

    • This reply was modified 4 years, 3 months ago by sylvainkirsch.
Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Display Problem in the Quote list’ is closed to new replies.