• Hello I need help with Ajax Product Filter

    When I click in one of the filter my sidebar gets bigger and it appears some little arrows (as an a accordion) in some options of the menu.

    • This topic was modified 2 years, 3 months ago by monicaamb12.
    • This topic was modified 2 years, 3 months ago by monicaamb12.

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Iván Sosa

    (@ivansosa)

    Hello there,

    Could you try to add this custom code in the functions.php of your theme and check if that solves the problem?

    if( ! function_exists( 'yith_wcan_content_selector' ) ){
    	function yith_wcan_content_selector( $selector ){
    		$selector = '.elementor.product .elementor-container.elementor-column-gap-default';
    		return $selector;
    	}
    	add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' );
    }

    Have a nice day!

    Thread Starter monicaamb12

    (@monicaamb12)

    Hello!

    Thank you but I tried that and it doesn’t work

    Thread Starter monicaamb12

    (@monicaamb12)

    Could I give you access?

    Plugin Support Iván Sosa

    (@ivansosa)

    Hi there,

    no, you can’t write credentials on these topics.

    Please, try this one on the functions.php of your active theme:

    if( ! function_exists( 'yith_wcan_content_selector' ) ){
    	function yith_wcan_content_selector( $selector ){
    		$selector = '.elementor-location-archive.product';
    		return $selector;
    	}
    	add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' );
    }

    Please, make sure you apply correctly the custom code, since it seems it’s not correct at the moment.

    Let us know.

    Thread Starter monicaamb12

    (@monicaamb12)

    Hi,

    I tried via SFTP in wp-content -> themes -> functions.php

    But the problem is still there.

    Thread Starter monicaamb12

    (@monicaamb12)

    Should I create a child theme?

    Plugin Support Pablo Pérez

    (@pperez001)

    Hi there,

    I’ve checked your site and check you have deactivate the plugin or removed the filters in your shop page.

    Please activate the pluging and the debug mode in your site and check if you receive any error in the debug.log concerning the code we sent you. If you need to know how to activate it, please check the following link.

    Concerning your question of the child theme, in order to keep the code we sent after theme updates is recommend to have a child theme.

    Let us know if you could manage it to add the code and make it work in your site.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘ISSUE WHEN CLICKING IN THE FILTER’ is closed to new replies.