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

    (@dholovnia)

    Hi westornric,

    Open plugin settings page. You will see there ‘JavaScript callback functions’. Use ‘Before Update’ textarea. Add there javascript part that will remove previous row with sorting etc.

    This is common problem but this is the only way so far I can provide better support for themes/plugins that extends WooCommerce plugin templates.

    Regards,
    Dima

    Thread Starter westornric

    (@westornric)

    Возможно ли сделать так, что бы страница просто ререзагружалась после выбора парамерра, не используя AJAX?

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    Hi westornric,

    Nope =) This is ‘Advanced AJAX Product Filters’, try some other filter. There were few without AJAX that are good.

    Regards,
    Dima

    Thread Starter westornric

    (@westornric)

    Другой не подходит((
    Я уже купил все премиум фильтры которые нашел))

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    westornric,

    If you want me to provide further assistance please add my filter to this category ( https://bigshop67.ru/?product_cat=stiralnye-mashiny ) and mail me back. I’ll check how we can fix that.

    Regards,
    Dima

    Thread Starter westornric

    (@westornric)

    Добавил.

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    westornric,

    Start with this:
    – go to plugin settings page
    – set Products selector to div#content
    – save

    Mail me when done please.

    Regards,
    Dima

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    westornric,

    Another thing:
    – connect through FTP
    – open wp-content/themes/<your_theme(better child)>/functions.php
    – add there:

    function wc_loop_shop_columns( $number_columns ) {
    	return 3;
    }
    add_filter( 'loop_shop_columns', 'wc_loop_shop_columns', 1, 10 );

    – save file

    This will control your products per row. You have set in theme 3 but WooCommerce ( and as a result my plugin ) don’t know about this and using default 4 items per row.

    Regards,
    Dima

    Thread Starter westornric

    (@westornric)

    Сделал

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    westornric,

    I was wrong. Products selector should be div.product-row

    And add to ‘Before Update’ callback:

    jQuery('#content .content-before').remove();
    jQuery('#content .content-after').remove();

    Regards,
    Dima

    Plugin Author Dmytro Holovnia

    (@dholovnia)

    westornric,

    Did you add

    function wc_loop_shop_columns( $number_columns ) {
    	return 3;
    }
    add_filter( 'loop_shop_columns', 'wc_loop_shop_columns', 1, 10 );

    to wp-content/themes/<your_theme(better child)>/functions.php ?

    Regards,
    Dima

    Thread Starter westornric

    (@westornric)

    Thread Starter westornric

    (@westornric)

    Thread Starter westornric

    (@westornric)

    Да. Я все сделал

    Thread Starter westornric

    (@westornric)

Viewing 15 replies - 1 through 15 (of 23 total)
  • The topic ‘Нужна помощь’ is closed to new replies.