- TutorialsDefault Block Settings Guide
- TutorialsSystem status parameters guide
Have a look at this image:

I want to show this post navigation just after the end of the post. Currently, there is a share button and then a ‘content bottom’ between the content and this page navigation.
I tried changing the position of ‘ pagination’ here and there but it didn’t work. May be we should work on “content-bottom ad’ call and move it after page navigation call.
You can very well see that the current configuration is not proper as the page navigation options appears after a long gape here. On mobile, the gap becomes too big.
Please help me to solve this issue.
Thank you.
Hi there.
I’m wondering if there is a way to change the value inside the “number of comments” box on the thumbnail/title of a post, to either the post view count, or just how to remove the box, if there is not a way to change it to the post view count.
I have attached a screenshot of what I am talking about. It is the box in the bottom right corner of the post thumbnail/title: https://drive.google.com/open?id=0B0iei_gRnDjqZUNpby1ON3J3cGM
The link to my website is: http://www.cusn.ca
Thanks for your assistance.
Adam
I was wondering if it is possible to move the pagination buttons to below the social sharing box?
I saw it in loops-single.php so I tried moving it like this:-
<?php echo $td_mod_single->get_social_sharing_bottom();?> <— moved here
<?php echo $td_mod_single->get_post_pagination();?>
<?php echo $td_mod_single->get_review();?>
Which didn’t seem to do anything.
It seems the post pagination appears inside the content itself and not in the <footer> (so I am not sure what the get_post_pagination above does).
If it’s not possible/easy is there a way to add the social sharing box into a post manually like how you can do it with a custom ad. If so what would be the code?
p.s. I am using Theia Post Slider, not smart lists for pagination.
Hi,
The easiest way of achieving this is to remove your article bottom ad and use a do_shortcode with a custom ad, by editing the corresponding loop-single file found in the theme folder – https://www.screencast.com/t/zO7NsDOfV3yw to your post template style used.
For example if you are using post template 3 you must edit loop-single-3.php Then in the loop single code – https://www.screencast.com/t/UzcBqq2O0hF insert the do shortcode provided below – https://www.screencast.com/t/IsVdYBV6b1 You can use any of the custom ads available – https://www.screencast.com/t/lfePgI8yj just remember to change the code accordingly
<?php echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');?>
Result is like this – https://www.screencast.com/t/aDiwWJkjJ
Thanks
Hi,
1. There is a margin bottom set on category tag displayed above the title in the big grids – https://www.screencast.com/t/KDHDppLkL You could remove it if you want with custom css on a specific big grid or just one of the modules contained in that grid – https://www.screencast.com/t/1WwnFwMPn6vB using a code like this, then enter it in Theme panel->Custom Css
.td-big-grid-post .td-post-category {
margin: 0;
}
2. The background color could be changed with css also, using a code like this (depending on the big grid you use) – https://www.screencast.com/t/uMp0LjYxl
.td_block_big_grid_4 .td-post-category {
background-color: blue;
}
3. That depends on the big grid used, for example Big grid 9 has a margin-right property of 3px – https://www.screencast.com/t/4tn8HKXO for each of the module thumbs except the last one.
4. That shadow can be removed on the Grid style 1 (default) – https://www.screencast.com/t/7EvvFcBa using this code
.td-grid-style-1.td-hover-1
.td-module-thumb a:last-child:before {
display: none;
}
Result – https://www.screencast.com/t/zcU4uusiWh0
Also here is a tutorial about how you can use your browser inspector to find elements on the page and how to customize them – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Hi,
i want to remove the bottom border of modul 13, because I want to use modul 13 and 12 in a combination. Means: First post by block 13, second, third post, … by block 12 with an offset of one. Can you teach me, how to remove the border?
to understand what i mean: picture
thanks
Hi, could you help he to remove the gradient (top and Bottom) on the main banner in the post pages(Style 6 in Post template)..e.g.
http://somethingpoppedup.com/saloni-spring-2017/
Thanks
Hi,
@LeadingSport Sorry for misunderstanding, the text probably dissapears for some of the blocks because you have set a white background for the title – so you should go to each of the blocks that have this issue and clear that background https://www.screencast.com/t/OF0gaWMVfkui and return them to the default state, it should look like this – https://www.screencast.com/t/KQShdYNC1kfG
Then enter this code in Theme panel->Custom Css, it will remove the background color and border from all the blocks
.block-title {
border-bottom: none;
}
.block-title span {
background-color: transparent;
}
Result – https://www.screencast.com/t/xqsEWBjq6p
Please let me know if this works for you.
Thanks
I noticed it again when we updated from Newsmag 1.7 to 3.1 last Fall and forgot to “move” the “category” links to bottom above the tags. Suddenly we had “National news” in front of headlines, and couple of breadcrumbs as the title in Google News. Really dumb since they have a news XML sitemap, validated in search console. Kind of like how you can have two photos on page, make second one the one in your news sitemap (e.g., featured), and yet often the FIRST photo will still show up in google news.
After 12 years in Google News, I learn to “work around” the dumbness sometimes.
Known issue with Google’s news bot ‘scraping’ page vs using your news xml sitemap.
Only solution I found on all our sites was to NOT have category names above the headline, and instead move those to bottom of page.
Not specific to theme, but an issue with how Google ‘reads’ the page, sometimes badly!
Hello everyone !
I have a funny issue here, very easy to fix probably but i’ve been looking for a solution for about 3 days and did not found yet.
Problem : i don’t know how to remove a small line beside the header. I identified it as a ad block (not adblock :p) : article-bottom-ad. How could i make it disappear please ?
Apologies for my approximative english, working to improve it.
Many thanks for help.
Hello There,
Thanks for your help in advance. You guys are the best!
I have read a little about homepage layout in other posts but am still unsure how to do this.
Here is my site: f1grandstand.com
I don’t want a “food and recipes” sidebar section or “latest in fashion and would like to remove them altogether, rather than rename the categories.
And I’d like latest articles near the top, not at the bottom.
How can I make these changes?
Thanks again,
Mark
Hi,
Try this code, enter it in Theme panel->Custom Css, it removes the bottom padding and margin on the module
.td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
Result – https://www.screencast.com/t/O1CsrNnw
That problem with the thumbnail should not happen, some plugin could be causing this. Right now I do not see it in your site – https://www.screencast.com/t/NTRlWzeAe4
If you should encounter this problem in the future, try disabling all the plugins except Visual composer and see if it still occurs.
Thanks
Hello,
1. Our theme requires featured images in order to display a thumbnail on the homepage and other blocks. I’m not sure what plugin you used for this but it could not be compatible with the theme
2. Please provide a link to your site so I can inspect it
3. I’m not sure what Sppe Boasting is. Is it the speedbooster maybe? Please use this guide in order to see how speedbooster works: https://forum.tagdiv.com/how-to-make-the-site-faster/ – https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
4. Hi,
Sorry but the tested and recommended plugin to use with our theme is wp super cache. That is why we only provide settings for it: https://forum.tagdiv.com/cache-plugin-install-and-configure/
5. In order to move the post views to the bottom of the post you must access each of the post template files and move the post view code further to the bottom of the file: https://www.screencast.com/t/XIB9wqAPY
each post style has it’s own file
6. Please use this guide: https://forum.tagdiv.com/the-child-theme-support-tutorial/
7. Sorry but we have no official method for instant articles. There is this topic where some of our users discuss the issues presented using the FBIA: https://forum.tagdiv.com/topic/newsmag-media-elements-incompatible-with-facebook-instant-articles/
8. Yes there is. Please use this link and select the different blocks from the ‘menu’: http://demo.tagdiv.com/newspaper/block-1/
9. Unfortunately you will have to use a plugin for that.
here are a few:
https://ru.wordpress.org/plugins/wordpress-social-login/
https://ru.wordpress.org/plugins/super-socializer/
https://ru.wordpress.org/plugins/nextend-facebook-connect/
Unfortunately these are not tested so they could require further customization to work properly with our theme especially our custom login modal.
10. Here is an unofficial guide I made: https://forum.tagdiv.com/topic/facebook-comments-2/
Thank you!
I took a look…
My initial thoughts… Damn! That is a big website! and I really don’t want to f it up… It’s a very good looking site and interesting too…
It appears what is slowing down your site the most is the images. About 30% of the page/post sizes is the logo which is 500kb… appearing on all your posts and pages.
After running your website at google pagespeed insights you will see a link for optimized resources for your site at the bottom. I downloaded them and the optimized logo from Google is only 10 kb. And the logo looks to be the same quality and clarity as the large size one on the site.
As you likely know bigger pages equals longer load times.
For the rest of your images, it would be good to optimize them using an image optimizer plugin such as ewww image optimizer. After that you would need to regenerate the thumbnails using regenerate thumbnails plugin for the images to display correctly. I am a bit wary in this advice though as you have many images and it will take very long.
At gtmetrix.com the site scores very low for “remove query strings from static resources”
The code I am using on my site to score 100 for this adding the code below to functions.php
function _remove_script_version( $src ){
$parts = explode( ‘?ver’, $src );
return $parts[0];
}
add_filter( ‘script_loader_src’, ‘_remove_script_version’, 15, 1 );
add_filter( ‘style_loader_src’, ‘_remove_script_version’, 15, 1 );
Your site generates a lot of requests to load… (109)
I think many of those requests are due to your site calling youtube for the thumbnails used on the videos. You should look to have the thumbnails on your website for the videos, then your site won’t have to wait for youtube to send them. I am using ARVE plugin on my site to do this, BJ Lazy Load also does this but ARVE looks better.
I highly reccommend you get a second opinion on my suggestions incase something goes wrong. How long does it take to backup such a big site?
Hope it goes well… That sandbox sounds good… If all else fail give autoptimize plugin a shot. Be advised when it works it does wonders, when it doesn’t it can cause a lot of headaches.
Good luck 🙂
Hi!
I have the same issue, regenerating thumbnails will not however remove the wrong sizing of pictures in big grid blocks. It seems like the container fits the image by its width, but if the aspect ratio in the image is of lesser height than that of the grid container, there is a grey area in the bottom of the grid box.
Is there a way to set the fitting so that it in these cases would fill the height and crop (centered) the picture on left and right instead? The images on my site are of enough pixel widths for this to be possible.
– Julius
Hi,
Ads will display in the locations that you choose, in Theme panel->Ads – https://www.screencast.com/t/L0M9Xw9vjyeR or in any ad box you use that coresponds to an ad placed in theme panel – https://www.screencast.com/t/3cdjcksUC If you want to remove the header ad, remove the code from the header ad section – https://www.screencast.com/t/Lgf70WPTtRh and the same for other ads. You can remove the ad title here – https://www.screencast.com/t/pcINGIxew – https://www.screencast.com/t/FFVc4XIJ5
As for the white space reduction try this code, enter it in Theme panel->Custom Css
@media (min-width: 1014px) {
.td-logo-wrap-full {
margin-bottom: -30px;
}
}
Result – https://www.screencast.com/t/mullEAOopRES
To remove the Home page title – https://www.screencast.com/t/ht1nprfb8V9 you have to select the default page template in page attributes – https://www.screencast.com/t/j1uj2o0pf or use this code in Theme Panel->Custom Css
.td-page-title span {
display: none;
}
Result – https://www.screencast.com/t/6BZ5StBZiuD
If you meant something else and I misunderstood you, please correct me.
Thanks
A category (including its sub-categories) do not have featured image as it is mere compilation of various circular and notification issued by Government authorities. So I have made following arrangement for showing it without image placeholder:
1. Selected post style 5 for single view
2. For search results and archive, I made following change in css:
.category-news .author-box-wrap{
display:none!important;
}
.category-news .item-details{
margin-left:0px!important;
}
.category-news .td-post-author-name {
display: none;
}
.td_module_16{
padding-bottom: 10px;
}
.td_module_16 .item-details{
min-height: 0px!important;
}
.search .item-details{
margin-left:10px!important;
}
.search .td-module-thumb{
display:none;!important;
}
.td-excerpt{text-align:justify!important;}
Now my problems are:
1. The Category page of sub categories are not considering aforesaid css rules (for removing image placeholder place, shifting content to left, etc). Does I need to provide same css rule for each sub-category, if yes then how. Or there is any other way to achieve it.
2. Similarly, tags are also not following aforesaid css rules. It is to be noted that tag terms may be common for this category and other category which have featured image.
3. How to remove comment count symbol for this category and its sub-categories
4. In search box in the navigation bar, image placeholder is removed but I am unable to reduce height of each search result. See https://www.dropbox.com/s/nx9xvqlvdwc4v26/category%20result.png?dl=0
5. The category below the result shows one category only instead of showing all categories selected for that post.
6. Is it possible to restrict search result from post and page and not from custom post type. E.g. I have custom post type called FAQ, in that I have created various FAQ (one FAQ is one post for it) on different subjects (considered that as database). That FAQ is shown on front end through shortcode in regular post according to subject of post. I want to search result should not show custom post type of FAQ but show regular post in which it is shown through shortcode.
7. The date shown in the meta data, is it published date or last modified date.
8. Is it possible to add news ticker in the mobile theme.
9. Further, category page repeats that category meta data for each post, I am unable to understand the role of such repeat display of category terms. See https://www.dropbox.com/s/6zwq6hhu2p9r00w/category%20repeat.png?dl=0
Thanks for the response! I contacted them about the 3 ad policy and Google AsSense responded:
“You’re right! We did remove the ad limit per page. I think the problem is with the Blogger site layout. It’s possible that it is only allocating 3 ad units.
The bad news is that we don’t have the ability to do technical troubleshooting of the Blogger widget. Could you try hardcoding all of your ad units and see if it lets them appear?”
So they DID have a 3 ad limit, but have removed that now.
Also, I have over 3 ads showing correctly on the homepage, but not for post pages for some reason. And when I remove an ad for the post page template, the bottom sidebar ad actually DOES show. for example, this page I removed the in-article ad, and then the bottom sidebar ad showed. (http://justfreshkicks.com/ad-test/)
So for some reason with the layout of the theme it’s only allowing up to three ads to show for the post template, NOT the homepage. However Google Adsense confirmed they don’t have a limit anymore and I have more than 3 ads showing on my homepage, so it has to be something with the template.
Appreciate any help in solving this problem. Thanks!
Hi,
In that case you need some modifications to the code with the same result, the only difference being that if you set a background color, it does not surround the header. This is the new code, remove the previous one
@media (min-width: 768px) {
.td-header-style-8 {
padding-top: 48px;
padding-bottom: 48px;
background-color: white;
}
.td-header-style-8 .td-header-sp-logo {
top: auto;
}
}
Result – https://www.screencast.com/t/H9bCFdGK
Please let me know if this works for you
Thanks
Hi,
Please note that some footer templates come with predefined content and some are blank templates – https://www.screencast.com/t/rZ6XZRTc You can add or remove widgets in the footer like this – https://www.screencast.com/t/jyWe6Mq0u
You can remove the block title border with this code, enter it in Theme panel->Custom Css
.td_block_16 .block-title {
border-bottom: none;
}
Result – https://www.screencast.com/t/s67h5TVjkmjC
It will work only for block 16 on your page (Calculator), if you want to remove the bottom border on all the block titles on the page use this code instead
.block-title {
border-bottom: none;
}
Result – https://www.screencast.com/t/1bPxgpG8
Thanks
I was creating child theme for Newspaper theme and everything loading fine for individual posts. I see the alignment lost for my Home Page (that I designed with visual composer). My sidebar is loading underneath the main home page content. What I’m doing wrong or missing that caused to move side bar to the bottom?
Hi,
Enter this code in Theme panel->Custom Css (it works for the default non-modified header style 1 menu – removes the active menu item bottom border and sets a hover color for the menu text) but it would be much easier if you could provide a link so i can inspect your site
.td-header-style-1 .sf-menu > li > a:after {
height: 0;
}
.td-header-style-1 .sf-menu > li > a:hover {
color: #4db2ec;
}
Thanks
Hi,
The bottom border of the revolution slider once removed it also removes the colored rows as well. The best solution here is to access the row settings for the bottom colored row and use the design options adding a negative top margin to the first one about -35 px
http://screencast.com/t/cuLjuEwxT4LW
Thanks.
Hi,
Enter this code in Theme panel->Custom Css to remove that white space
.import_video_ad_bg {
margin-bottom: 0;
}
Thanks