How Do You Filter The Category Top Section?

Posted in: Newsmag
Post count: 15

Hi, I want to filter my category top section by a specific tag slug. Is there a way for me to be able to edit the category page using visual composer? If not how would I change the API to let me filter the category top section by a specific tag slug?

Post count: 15

Actually Instead of A Tag Slug Can How Would I Make The Category Top Section only show featured posts? and How Do I make The Latest Articled Hide The Latest Posts?

Post count: 6535

Hi

By default the theme does not have options to control the posts displayed in top grid on category page. However this can be achieved by editing the category.php file and ad some if else statements like here: http://screencast.com/t/9zcZxQ2ofSEH

 <?php
        if (is_category('cat-id1')){
            echo do_shortcode('grid's shortcode');
        }
        elseif (is_category('grid's shortcode')){
            echo do_shortcode('grid's shortcode');
        }
        else {
            echo do_shortcode('grid's shortcode');
        }
?>

To get the category id follow this link: http://screencast.com/t/lY35tQ0pcR
To get the shortcode for the grid that you want to display create a blank page, add the grid on id and set as you want: http://screencast.com/t/Kynjn2VL copy this code: http://screencast.com/t/2R6NP586 and paste it inside do_shortcode function as I did in this screen: http://screencast.com/t/2R6NP586http://screencast.com/t/h6m34UwqD

To avoid having duplicate article on pages enable the Unique article option here: http://screencast.com/t/lfrs0pziRk

Thanks!

  • This reply was modified 10 years by Andrei L..
Post count: 15

There isn’t a unique articles option for category pages. Is there any other way I can hide my features posts from the latest posts block?

Post count: 6535

Hi

Using the above method there is no other option to control the article uniqueness on category page. You will need a custom script and unfortunately I cannot provide a solution at the moment.
If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer customization services at the moment.

Thanks!

  • This reply was modified 10 years by Andrei L..
Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newsmag’ is closed to new topics and replies.