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 .
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
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 ?
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