• Resolved sifizu

    (@sifizu)


    Hello!
    I’m using Estore theme from ThemeGrill on my site (kistarcsaklima.hu).
    I filtering my products with Advanced AJAX Product Filters for WooCommerce(latest version).
    On my product select page after filtering on the new page my links on product name/title h3 dosen’t work/become unclickable. After refresh everything works fine again .
    Any ideas how canI solve this?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Dmytro Holovnia

    (@dholovnia)

    Hello,

    Where can I see the issue in action? On what page do you have filters enabled?

    Regards,
    Dima

    Thread Starter sifizu

    (@sifizu)

    Hello

    For example there:
    https://kistarcsaklima.hu/termekkategoria/klimak/
    If u choose a filter, after the filtering the product title link becomes inactive.

    Thread Starter sifizu

    (@sifizu)

    Oh and after site refresh my filters are nulled.

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    On plugin settings page you will find tab JavaScript. Open it and this code to the After Update textarea:

    
    jQuery('.products-content-wrapper h3.products-title').each(function (i,o){
      a = jQuery(o).find('a').clone();
      jQuery(o).find('a').remove();
      text = jQuery(o).text();
      jQuery(o).text('');
      jQuery(o).html(a.text(text));
    });
    
    Plugin Author Dmytro Holovnia

    (@dholovnia)

    This will fix your title links

    Thread Starter sifizu

    (@sifizu)

    Thanks for the fast reply, but it says it’s incorrect javascript.

    • This reply was modified 7 years, 11 months ago by sifizu.
    Plugin Author RazyRx

    (@razyrx)

    Hi,

    Please try to use same code but in line
    jQuery('.products-content-wrapper h3.products-title').each(function (i,o){a = jQuery(o).find('a').clone();jQuery(o).find('a').remove();text = jQuery(o).text();jQuery(o).text('');jQuery(o).html(a.text(text));});

    Regards,
    Oleg

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Filtering kills my product link’ is closed to new replies.