This topic has 5 replies, 2 voices, and was last updated 12 years, 10 months ago by Fem.
Viewing 6 posts - 1 through 6 (of 6 total)
I’m back 🙂 I think the “Food Carusell” is too static. It displays only the last four products. Although you can scroll. When the page is opened, the same products are always displayed. Can you mix? Otherwise it’s a bit boring.
of course 🙂 http://www.fresh-go.de/limburg/
Scroll down the Page and press f5. The first four products everytime the same.
Open the carouse_food.php file located in linofeast/framework/shortcode/carousel_food.php and find the below code and replace with the give replace code below that and have a random posts.
Find Code
$query = array( 'post_type' => 'menus', 'posts_per_page' => $limit, 'taxonomy' => 'menutype', 'term' => $cats, 'paged' => $paged, 'order' => 'DESC' );
Replace Code
$query = array( 'post_type' => 'menus', 'posts_per_page' => $limit, 'taxonomy' => 'menutype', 'term' => $cats, 'paged' => $paged, 'orderby' => 'rand', 'order' => 'DESC' );
Only ‘orderby’ => ‘rand’, is the code added in the query array.
Warm Regards
Maqk
Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.