Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #306161

    Hello , i want to change the widgets at footer to show product or post randomly , instead of latest product or latest post . Could you tell how to reach that ?

    Thanks a lot in advance .

    #306268

    Hey garbath!

    Please go to Appearance > Widgets and add “WooCommerce Products” widget to one of your widgets areas and choose Random order – http://i.imgur.com/tSeEcSx.png

    Best regards,
    Yigit

    #306675

    Hi Yigit ,

    Unfortunately , i haven’t use Woo commerce plugin and the site is not B2C , would you have another code can resolve this ?

    Also How about the random post and Product at foot ?

    #307214

    Hey!

    Yes, open up enfold / framework / php / class-framework-widgets.php and replace:

    
    $additional_loop = new WP_Query($new_query);
    

    with:

    
    $new_query['orderby'] = "rand";
    $additional_loop = new WP_Query($new_query);
    

    Best regards,
    Peter

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.