How do I change the category for the BIG Grid in the Mobile Theme?

Posted in: Newspaper
Post count: 3

Currently the mobile theme shows the first 3 post in the category “featured”. Is there any way to change which category it displays?

Post count: 20688

Hi,

A specific option to filter the top mobile grid, is not available at the moment. This change will have to be made in the code, this is a similar topic
https://forum.tagdiv.com/topic/mobile-theme-featured-posts/

Thanks

Post count: 3

Hi Simion,

Thank you for the link. It worked perfectly.

For anyone looking at what to change:
Look for the following code in “front-page.php”


<div class="td-container">
<?php echo do_shortcode('[td_block_big_grid_mob_1 sort="featured"]'); ?>
<?php the_content(); ?>
</div>

add the following ‘category_id=”191″‘ (replace 191 with the category id of your own category)

new code should look like this:


<div class="td-container">
<?php echo do_shortcode('[td_block_big_grid_mob_1 category_id="191" sort="featured"]'); ?>
<?php the_content(); ?>
</div>

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.