Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author royho

    (@royho)

    Do you have many products? If so, how many? And what are you using to show the product feed?

    Thread Starter Luca britecode

    (@lucac2cg)

    Only 31 products

    This is the home page feed:
    <?php if(is_plugin_active(‘woocommerce/woocommerce.php’)) { ?>

    <?php // Display Shop Featured Product
    if ( $data[‘featured_products_display’] ) {
    ?>

    <!– BEGIN .section-mini2 –>
    <div class=”section-mini2″>

    <div class=”tag-title-wrap clearfix”>
    <h4 class=”tag-title”><?php _e(‘Featured Products’,’qns’); ?></h4>
    </div>

    <?php // Set Number of Shop Featured Products
    if ( $data[‘featured_products_display_number’] ) {
    $featured_products_display_number = $data[‘featured_products_display_number’];
    }
    else {
    $featured_products_display_number = ‘4’;
    }
    ?>

    <?php _e(do_shortcode(‘[featured_products per_page=”‘ . $featured_products_display_number . ‘” columns=”4″]’),’qns’); ?>

    <!– END .section-mini2 –>
    </div>

    <?php } ?>
    <?php } ?>

    Plugin Author royho

    (@royho)

    I just looked at the code of the plugin it does not include the featured products shortcode. I can have this added in the future.

    For your performance issue, how many rules do you have? And out of the 31 products, how many rules apply to it? The more detail you can give me the better so I can try to replicate it on my end.

    Thread Starter Luca britecode

    (@lucac2cg)

    This is all I have.
    I stopped adding rules as I noticed the site was timing out.

    https://screencast.com/t/zIocyVI5kuoj

    Plugin Author royho

    (@royho)

    Ok I have just released version 1.5.1 which includes the featured shortcodes filtering. As for the performance issue, I did a test but I did not find any issues with slowness or time outs. However I did make a small tweak that may or may not help with your site.

    Please update first and see if it works for you. If not, we can investigate further.

    Thread Starter Luca britecode

    (@lucac2cg)

    Thank you I will try this and let you know

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Site very slow after activating the plugin’ is closed to new replies.