Hi,
I really need to Tweak Module 2 and Module 7.
The problem I am having with module 2 is the text that shows up beneath it, I just need to have the title and the picture. The Problem with Module 7 is that I want to delete the subtitle, category tag and, text beneath the picture and continue button, so basically to be left with only the picture and the title above it. Hope I make sense, I am not really technical, but I need this to be tweaked asap, otherwise I can not even use the theme.
Here is the example of Module 2 on my website: http://eyeflicker.com/site/category/brain/
Here is the example of Module 7 on my website: http://eyeflicker.com/site/category/quizzes/
Many thanks in advance 🙂
Hi,
1. I guess that you want these changes only for category’s pages, because you can change excerpt for module 2 from Theme Panel > Excerpt: http://screencast.com/t/ILsoSEbV6bc but this will affect also block 1 that use this module.
So you will need to hide excerpt using css code in Theme Panel > Custom Css: http://screencast.com/t/Den403FY9
.category .td_mod2 .td-post-text-excerpt{
display: none;
}
Result: http://screencast.com/t/lQql6pqC8r
2. For module 7 you have to make some custom modification, because is an extension of module 1. Please edit td_module_1.php add an extra class and remove excerpt code like this: http://screencast.com/t/h99qVRHRZyTj
Now please use css code with that class to hide meta and subtitle: http://screencast.com/t/ui1Y1Ode
.category .module7{
display: none;
}
Unfortunately this css(categories and subtitle) it will be applied also on module 1, so if you use module 1 to display articles on a category page, meta and subtitles will not be displayed also there.
Thanks!
Thank you for your support, I have managed to change the Modules.
I now have a problem while creating widgets, they appear on the website however in the widget area on the sidebar they are blank and non widgets appear. This is not the result of tweaking modules as it appeared only yesterday. Can you help me?
Also I would like to know how to insert only certain categories into the widgets: Multiple categories filter: I tried adding them by name and the by id, non worked.
Many thanks
Hi,
If you want to display a specific category in widget block please set it like this: http://screencast.com/t/Uhp3sH0DL Also if you want to use multiple categories filter please enter the category IDs separated by commas: http://screencast.com/t/4LTfglyg
You can find category’s ID here: http://screencast.com/t/TL66e0k2aRbZ
Please follow our documentation: https://forum.tagdiv.com/newspaper-documentation/
Thanks!