Can you please take a look at the two pages.
The first one is a normal page I created with widget on a side and displayed posts with Block 8. It shows 3 posts in a row.
The second link is a category page. I have picked M5 in category display view ( theme panel ). M5 appears to be same as Block 8, but why it is showing 2 posts per row?
1- http://siasibaat.com/pakistani-talk-shows/
2- http://siasibaat.com/category/clips/funnyclips/
Is there any way I can make category display similar to the first link, with three posts per row?
I would really appreciate if you can help me solve this problem quickly.
Thanks
Hi,
On page you use the default template on which the block can’t tell if it’s on 3 or 2 columns and it uses 3/3 columns setting on a 2/3 columns space. If you switch to Homepage blank and use a widgetised sidebar block the page will look the same as the category – http://screencast.com/t/WAzK2BhmN
You can try to add the following code inside loop.php – http://screencast.com/t/kcGh0RY4Dfw
if (is_category()) {
$td_template_layout->td_column_number = 3;
}
Some modules may not display properly.
Thank you, Emil G.
Amazing. Thanks Emil, you are awesome. It worked like charm after pasting your code.
Can you please also answer, how can I increase the number of displayed posts on category/tags page? I think it cuts off after 10 posts. How can I update this default number to 30?
One last question and after this my page will be ready to go. On my homepage ( http://siasibaat.com/ ) I am using a third party plugin to display posts in 2 columns ( latest talk shows section ). For some reason the theme blocks do not work on ( 3/4 + 1/4 or 2/3 + 1/3) layouts. I have pasted a couple of examples of Block 6 and 8 on top of the page. Can you please take a look and suggest if there is any way I can display posts in two columns using themes block like they are shown in Latest Talk Shows Secions ( with green buttons).
Thank you very much again for your help.
Najm Bajwa
Hi,
You can increase the number of posts on category/tag pages from WordPress Dashboard > Reading Settings like this: http://screencast.com/t/9Qw0JcDxWKW6
You can do it like this: http://screencast.com/t/gKnwPiuzy
Result: http://screencast.com/t/XO08e3bu3XY5
Hope this helps!
Thanks
Thanks for answering this, Lucian. Block 4 works find and shows posts two columns. But the image size is too small. Is there anyway we can increase the image size of that block? plus can we add the “views icon” on it like it shows on block 8?
And what is the good way to reduce the title text size of Block 8?
Thanks again.
Hi,
You can find all thumbs sizes for all modules in the functions.php file: http://screencast.com/t/7w89LMscp
To add another you ca use this method: https://forum.tagdiv.com/topic/how-to-set-up-a-bigger-pics/#post-17911
You can enable the view icons on block 4 like this: http://screencast.com/t/k91nHigcG2h
You can do it from theme panel > custom typography > big post size (in blocks)-title font: http://screencast.com/t/okETHXxUgu
Or use this css to change it just for block 8: http://screencast.com/t/nXshJSOeBKH8
.td_block8 .td_mod5 .entry-title a{
font-size: 15px;
}
Thanks