Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2952444
Default products amount
Closed

Comments

  • Jose Sinisterra started the conversation

    Hey team, 

    I added the option Related as default products in settings. In the product pages shows 5 related products by default, which is quite high. It's possible to reduce this amount to 3 or 2? 

    I don't want to push to much the customer with too many products, just 3 max.


    Best regards,

    Jose



  •  767
    Janilyn replied

    Hi Jose,

    Thanks for contacting WPClever Support Forum. We're not available at the weekends so today (Monday) I am able to process your ticket.

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1,226
    Dustin replied

    Hi Jose,

    Please add the below custom code (How to add custom code?)

    add_filter( 'woobt_show_items', 'woobt_show_maximum_items', 99 );
    function woobt_show_maximum_items( $items ) {
        return array_slice( $items, 0, 3 );
    }

    Best regards,
    Dustin

  • Jose Sinisterra replied

    Thank you so much, it works.!