No search results were found in Documentation!
Hi,
In td_module_6.php file move the <?php echo $this->get_category(); ?> line and add this class ' . 'class="custom_category" like here: http://screencast.com/t/xxqdUyITv
After doing that please add this custom CSS in Theme Panel > Custom CSS:
.custom_category{
line-height: 15px;
display: inline-block;
padding: 2px 8px 3px 8px;
margin-bottom: 4px;
color: white;
background-color: #c85bcd;
font-size: 12px;
}
Change the font/background/color.. as you like.
Regarding the category it’s not an easy task to do, you can hire an freelancer if you want to have something like that as we can’t offer custom work.
Hope this helps!
Thanks
Hi,
Sorry about this, unfortunately you can’t update the theme without any changes, you can only try to set again the posts how they where before.
Unfortunately I don’t know what those changes are. If you want, you can update the theme to the latest version and give us wp-access. You can do the update and then send your wp-admin username and password to contact@tagdiv.com and specify there all the changes that the update has made to your layout and we will try to find a solution.
For the space between the feature image and the text you can use this custom css to remove it, add it in Theme Panel > Custom CSS:
.post .thumb-wrap {
margin-bottom: 0px;
}
This is the font used for that post http://screencast.com/t/V1Xhe2wKU2
Hope this helps!
Thanks
Hey @sbo i’m going share two css code with you try them i don’t remember which one i’m using to removed mine but you can try them both..add them in the theme settings in the CSS section…
.td_block1, .td_block2, .td_block3, .td_block4, .td_block5, .td_block6, .td_block7, .td_block8, {
padding-bottom: 0px !important;
}
.td_mod2 .meta-info, .td_mod3 .meta-info, .td_mod5 .meta-info {
display: none;
}
Hi,
1. You could move this lines in loop-single.php file like this: http://screencast.com/t/NCVEbleIM8T but then the featured image on all post pages will move to bottom of the page.
Other solution would be to insert the video directly in the post by pasting the video url in your post content where you want it to appear and set the post type to gallery post and also add the video in the featured video field.
2. I’m not sure I understand what are you referring too, on pages/blocks the featured image thumb for video posts should look like this http://screencast.com/t/Gj9GAnhVm and on default post pages like this: http://screencast.com/t/z8ubx97Zl8F in the second case it’s a video not an image but the image should look the same.
Can you please send me a screenshot or a link to your site see this issue?
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
It should not matter what type of ad it’s displaying the class I used to target the content it’s applying to all ads.
I can not help you if I can’t inspect this issue, you could try to modify the ad code if it’s not working well.
Sorry for this!
Regarding the code keep in mind that you have to follow the steps from the solution Radu provided and move this code, like this http://screencast.com/t/DUVdHRbGh in the loop-single.php file, if you use other post template than the default one you have to do this in the post template file that you use http://screencast.com/t/pRKMIv38
Then go to td_module_blog.php file and add this line:
$buffy .= '<li class="td-text-share">Twitter Facebook Share Buttons</li>';
…like here http://screencast.com/t/dKB2ilqiZD
After you did this step you have to use the css code in the custom css section from theme panel.
Result: http://screencast.com/t/jEqQvh7duCV6
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
You can use a block to display the posts without image from that category and then use css to remove the space of the image, like i did here:
before: http://screencast.com/t/R1bVDUV9tP
after: http://screencast.com/t/9xSOuQMd
Using this css:
.page .td_mod9 {
margin-bottom: 15px;
min-height: 100%;
}
.page .td_mod9 .item-details {
margin-left: 0px;
}
I used block 6. I have removed the space for the image. You can do the same for your page.
You can use the same css in your case or you can customize your own block.
Add the css in Theme Panel > Custom CSS.
Hope this helps!
Thanks
Hi,
1. You can use this css to remove the background:
.td-footer-wrap .span12 {
background: none !important;
}
Also add this one if you want to get rid of the space between the bottom footer and the page content above:
.td-footer-wrap .td-grid-wrap {
padding: 0px !important;
}
If you want to hide the footer add this:
.td-footer-wrap {
display: none;
}
This will be applied to all pages.
2. If you want the bottom footer background to be full width you have to remove the boxed layout, to do that you have to remove the background from Theme Panel > Background http://screencast.com/t/triM5Jx6 or Theme Panel > Theme Colors http://screencast.com/t/EsHzsHo1xr8
Thanks
Hi,
To remove the footer-shadow please use this CSS in Theme Panel > Custom CSS:
.td-full-layout .td-footer-wrap {
background: none;
}
To change the bottom footer backgreound you can use the Theme Panel http://screencast.com/t/kX9ULUzEdNlS
Hope this helps!
Thanks
Hi,
You can try this css to style post pagination:
.single .page-nav-post {
text-align: center;
}
.single .page-nav span {
min-width: 50px;
}
This will center the post pagination and make it wider, you can change the values as you want. Removing the numbers in between the first and last page it’s not an easy task and need custom work, you can try it yourself if you want.
About the pagination above the image, I gave you the solution to add the ad box, and place it after the content in the loop-single.php file like this: http://screencast.com/t/uEBPCkfawmC
Make sure you have remove the article bottom ad from theme panel also.
Should get this result: http://screencast.com/t/BOVvHX5K
Thanks
What is the article_bottom_ad? I tried the below and no luck.
<?php echo do_shortcode(‘[td_ad_box spot_id=”article_bottom_ad”]’); ?>
This right here is basically what im trying to accomplish:
http://screencast.com/t/r9hhfebNt7d
Moving the 728×90 below <!–nextpage–> shortcode, center pagination, removing the numbers in between the first and last page but keeping the amount there and create the buttons larger. And inserting the pagination above the image.
I would have imagined the ad code would be in loop-single, or if there is a php echo code that can be placed inside there.
*For the time being, I manually placed the ad code in loop-single.php and removed the article_bottom_ad.*
Hi,
You can try adding it using the do_shortcode function for custom ad box and add it like this in the loop-single.php file: http://screencast.com/t/QexjAdJiBuVZ
Here is the code you need:
<?php echo do_shortcode('[td_ad_box spot_id="custom_ad_3"]'); ?>
Also add your ad code inside the Custom ad 3 like this: http://screencast.com/t/IdQeUAdg
This way you have to remove the article bottom ad and the custom ad will remain under the pagination and above the prev/next post.
Use this css to arange it:
.single .td-a-rec-id-custom_ad_3 {
margin-top: -20px !important;
margin-bottom: 20px !important;
}
Use this class to style the post pagination:
.page-nav-post {
padding: 0px;
margin-bottom: 42px;
}
like this: http://screencast.com/t/OZmQAGbb
Hope this helps!
Thanks
Hi, thanks I’ll update it later after I try the steps you mentioned. 🙂
The screenshot doesn’t works because I had deleted the pic after solving the issue.
Hi,
Your screenshot doesn’t work.
WE have some topics that give you tips how to increase your page score: please read them and also analyse your site and try to solve the issue related.
https://forum.tagdiv.com/how-to-make-the-site-faster/
https://forum.tagdiv.com/topic/pagespeed/
Hope this help!
Thanks for the message!
-
This reply was modified 12 years by
Lucian.
Okay thanks,
th score for desktop is 90 which is okay but on mobile it’s 69 and I thin that’s horrible.
I use cloudflare and tagDiv speed booster plugin but it dooesn’t seem to be working.
I’ve one more issue, on my site there is space between header and it’s underline but not on the demo…
see these two images
my site : http://ss.techizm.com/2014/07/Capture.png
your demo : http://ss.techizm.com/2014/07/Capture1.png
The only solution that we have for that pagespeed score is to use less scripts and css files. Also a smaller and fast respondif homepage helps a lot. Other than that, the score is pretty good.
Radu o>
Hi,
for the inline ads you also have to input after how many paragraphs the ad will appear:
http://screencast.com/t/cDZaP82f6
and also that my inine ads are not woring that good. I’ve put an inline ad but it stays a t the top… please help soon.
Everything is allright, but these 4 files are the headache…
http://www.techizm.com/…-includes/js/jquery/jquery.js?ver=1.11.0
http://www.techizm.com/…s/jquery/jquery-migrate.min.js?ver=1.2.1
http://www.techizm.com/…gin/css/settings.css?rev=4.3.8&ver=3.9.1
http://www.techizm.com/…gin/css/captions.php?rev=4.3.8&ver=3.9.1
Scores : http://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.techizm.com&tab=desktop
Hi,
You have to replace the breadcrums code of the theme with yoast code for breadcrumbs.
This is an e g for post pages: http://screencast.com/t/5aa5b1Js1
Also you have to remove the theme’s breadcrumbs, you can do it from page template by deleting th code or from Theme Panel > Post Settings > Breadcrumbs > Show or hide breadcrumbs on post.
You will get this result: http://screencast.com/t/beNVjuXWcnr
You also have to add this csutom CSS in Theme Panel > Custom CSS if you want to move the breadcrumbs a bit higgher on page:
#breadcrumbs {
margin-top: -30px;
margin-bottom: 20px;
}
You will have to do this for every template on which you want yoast breadcrumbs to show.
Here is an e g for Search Template : http://screencast.com/t/tEPahwPEauR
Thnaks
Hi,
I posted this on another thread, but believe that is dead so I wanted to make a new one:
Please see this page:
The top ad on the right sidebar should be linked, however only the top part of the image is clickable.
If I move that widget down to the bottom, the entire image becomes clickable. The HTML appears to be correct.
I’ve tried to work around this with an image map, but that doesn’t work either. There must be some class or something that is causing this? Please help, we are to make this site live in 2 days but we are in trouble if the ads are not fully clickable.
Thanks,
Dan
Hi,
I’m having the exact issue of only the top part of the image in an html text widget is clickable
Please see this page:
http://www.wgel.net
The top ad on the right sidebar should be linked, however only the top part of the image is clickable.
If I move that widget down to the bottom, the entire image becomes clickable. I’ve tried to work around this with an image map, but that doesn’t work either. There must be some class or something that is causing this? Please help, we are to make this site live in 2 days but we are in trouble if the ads are not fully clickable.
Thanks,
Dan
Hi guys,
I’d like know how can I reduce the size of the header so that I can align my header in the center and remove excess empty space.
I’ve tried to reduce it in header section of my theme panel, but it only reduces from bottom, the upper area remains the same and empty, there’s no need for such space, and it’s taking valuable above the fold space in vain.
You can see the picture here.
Hi,
You have to move the code for social sharing buttons inside loop-single.php file like this: http://screencast.com/t/Wtzfm7yJ
Then move the tweet, like and g+ buttons code inside the same loop-single.php file like this: http://screencast.com/t/TIX5pK3e
And this CSS in Theme Panel -> Custom CSS:
.post .td-social-like-tweet {
margin-bottom: 15px !important;
}
.td-social-like-tweet ul {
margin-top: 0px;
}
.post header {
margin-bottom: 5px;
}
Hope this works
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
Use a Custom Ad instead the Article Bottom Ad:
1. Go to Theme Panel -> Ads and move the Adsense code from Article Bottom Ad to Custom Ad 1 like this: http://screencast.com/t/FBuM88yc5
Replace the code for the ad in the single.php file with this one:
<?php echo do_shortcode('[td_ad_box spot_id="custom_ad_1"]'); ?>
Then add this CSS in Theme Panel -> Cutom CSS:
.td-a-rec-id-custom_ad_1 {
margin-top: 20px;
margin-bottom: 20px;
}
Thanks
Hi Lucian,
Thank you for your quick reply. I have made the changes, the ad appears now after the Disqus plugin but I have another question. How do I remove the article bottom ad now? If I remove the Adsense code from the article bottom probably both ads will disappear.
Please advise,