Hi,
I believe you refer to block 10 spacing between heading, you can use this css to reduce that: http://screencast.com/t/KkA8ndC3
For the comments template you need to edit the single.php file and “cut” this line: comments_template('', true); …form each case and add it in loop-single.php file before the related posts section like this: http://screencast.com/t/SyKDPkfHfV
Result: http://screencast.com/t/5lQWaad4
Note that if you want to have this on other post templates than default you have to make this changes to other templates also.
Thanks
Hi,
Remove the one that appears first from page-category-slider.php file like this: http://screencast.com/t/Bv3MsLcTXTx
Thanks
Hi,
The mobile icon it’s set to show up using js on click, some plugins may conflict with this and as a result this issue appears.
Unfortunately your CDN plugin may cause this as ut;s delivers cached files so please make sure you also empty cache and purge files.
Deactivate speed booster also, this may cause something like this also when used in conjunction with other plugins.
Thanks
Hi,
Do you still have any issues with this? I have checked your site and found no problems with it, it displayed and functions well from what I have seen: http://screencast.com/t/mFihB78o
Please let me know if you have any other theme related issues.
Thanks
Hi,
Unfortunately we haven’t made any implementation for this, we still have this on our todo list but because we have over 160 feature requests we have to pick very carefully what we implement. If more people request this feature we will do it.
Thank you for your understanding and sorry for the inconvenience!
Hi,
Can you please send a link to your site? Also a screenshot would be helpful.
You can fix this by styling it specifically for Firefox using this css to target the Firefox browser:
ex:
@-moz-document url-prefix() {
h1 {
color: red;
}
}
Thanks
Hi,
Please add it using the do_shortcode() function like this: http://screencast.com/t/a8B0TRtck
Here you have the td_login_widget.php file code with the WSL added: http://pastebin.com/FgFmSznX
Or just add this line: do_shortcode('[wordpress_social_login]') like shown in the screenshot above.
Thanks
Hi,
You just need to manually add the width and height so if you plan to use a 728 x 90 size image your div tags should look like this:
<div class="td-visible-desktop">
<a href="#"><img width="728" height="90" src="" /></a>
</div>
<div class="td-visible-tablet-l">
<a href="#"><img width="468" height="60" src="" /></a>
</div>
<div class="td-visible-tablet-tp">
<a href="#"><img width="468" height="60" src="" /></a>
</div>
<div class="td-visible-phone">
<a href="#"><img width="300" height="250" src="" /></a>
</div>
Thanks
Hi,
I’m not sure what you want to do, if you want to add “Leave a comment” like this to the post title you will have to edit the td_module_blog.php file and add the following code like this: http://screencast.com/t/C6u30OBXtm1
if ($var_single == 1) {
$buffy .= '<span class ="leave_comment">LEAVE A COMMENT</span>';
$buffy .= '<br>';
}
If this is not what you want to achieve please provide more details and let me know.
Thanks
Hi,
Have you managed to get this done? Setting this as Christopher wrote from settings > reading will let you build a page and use it like this: http://demo.tagdiv.com/newspaper/blog/
Please let me know if you have any other theme related issue!
Thanks
Hi,
Please use this css: http://screencast.com/t/lp3mKHyn2D
.header-logo-wrap img {
margin-bottom: 10px;
}
Thanks
Hi,
Unfortunately the theme doesn’t have an post by ID filter. You can use the tag filter to control the posts that appear in the popular posts block and bulk edit all posts and add the tag to all post that you want to show in that block then in block editing panel add that tag to filter posts by it so only the posts that have that tag set will be displayed.
Hope this helps!
Thanks
Hi,
Please add this function is_home() like this in loop.php file: http://screencast.com/t/YFkhYo7wvH3 This will add the custom ad 1 between latest articles post on homepage also.
Thanks
Hi,
My single-bk.php file contains the code for single.php file, the default post template.
First make sure you copy and replace your custom post type template with the single.php file code. After you did this set the loop-single template which you want to use like this: http://screencast.com/t/nlj95x5jktk3
If this dose not work please go to Administration Panels > Settings > Permalinks, change the permalink structure to a different structure, save the changes, and change it back to the desired structure.
Thanks
Hi,
Please modify this function also to get the custom filed data: http://screencast.com/t/eR0K8wTD7xS
Thanks
Hi,
I have checked your site and seems like this happens on all mobile devices and this is because you use the header style 3 with the classic blog stack. Please use this custom css to fix this: http://screencast.com/t/WKT0vHkRs1r or change the header style to use the full width text logo.
@media (max-width: 767px){
.blog-stack .td-menu-wrap #td-top-menu {
display: none;
}
#td-top-search{
right: -20px!important;
top: 3px !important;
}
.td-menu-header .span11 {
width: 85%;
display: inline-block;
}
}
Thanks
Hi,
Yes, please edit the footer.php file and change it like this: http://screencast.com/t/QfY4Qnbj
Thanks
Hi,
You can change the icons via custom css:
* http://screencast.com/t/Pp0DNPzW
* http://screencast.com/t/GhBxVKgQ9Ubh
Use this custom css and customize it like you want:
.td-next-prev-wrap .td-ajax-next-page {
background-image: url('http://png-4.findicons.com/files/icons/1951/iconza/32/right_arrow.png') !important;
background-repeat: no-repeat;
display: block;
width: 50px !important;
height: 50px !important;
background-position: initial !important;
top: 1px;
right: -20px;
}
You will have to do the same for the prev arrow:
.td-next-prev-wrap .td_ajax-prev-page {
...
}
This is for the load more arrow: http://screencast.com/t/cGemRigSvr9
.td-load-more-img-wrap .td-load-more-img {
background-image: url('https://devimages.apple.com.edgekey.net/wwdc/images/wwdc14-more-icon-emergency.svg');
width: 55px;
height: 55px;
background-position: initial !important;
}
Regarding the “Read more” button I believe you refer to this “Continue” button: http://screencast.com/t/zbtl3PliJDeh
You can change this using this custom css: http://screencast.com/t/hxKOGorW
.td_mod9 .td_read_more,.td_mod8 .td_read_more {
background-image: url('http://images2.layoutsparks.com/1/48032/satisfaction-pink-glitter-tiles.jpg')!important;
}
Thanks
Hi,
Yes, use this css: http://screencast.com/t/ewFQG2NZCizf
.td-mega-grid .td_block_mega_menu .td-next-prev-wrap {
display: none;
}
Thanks
We will consider this!
Thanks!
Hi,
You can add the ad short-code using the do_shortcode() function, like this:
<?php echo do_shortcode('[td_ad_box spot_id="custom_ad_1"]'); ?>
Just add this line in your template and the ad code in custom ad box 1 in theme panel > ads.
Thanks
Hi,
Please use this custom css: http://screencast.com/t/a5wqpv3S
.td-boxed-layout .td-header-style-8.td-affix .td-menu-wrap {
height: 76px;
line-height: 20px;
}
.td-header-style-8.td-affix
.td-li-wrapper-menu {
position: relative;
top: 8px;
}
.td-header-style-8.td-affix .td-li-wrapper-menu .sf-menu > li > a {
height: 50px;
line-height: 60px;
padding-bottom: 15px;
}
.td-affix .sf-menu > li > a {
z-index: 0;
}
Thanks
Hi,
Seems like that would be the place, you should check your plugin’s FAQ/Dscription for this info. If you use Popunder Popup for example you can read about his here.
Thanks
Hi,
If you already created a custom post type you just need to change the name of an post template as single-bk.php (in this case the the “bk” is the slug of a new custom post type) and add inside that file the code for the template you want the new CPT to use, so if you want your CPT to use the post template 2 style you will have to add that code.
I have tested this using the latest theme version and works.
I have used the free Types – Custom Fields and Custom Post Types Management plugin which includes lots on info to help you build and customize your CPT.
If you want to add multiple layouts and styles to your CPT then you will need custom work for that and you will have to get someone to help you with that if you don’t know hoe to do it.
Thanks
Hi,
You must create one and add <?php $text_direction = "rtl"; ?> like this: http://screencast.com/t/jmCmvMj1d
Other solution much easier would be to edit the rtl.css file and copy the css from there into the style.css file: http://screencast.com/t/0vmoXvGxyKM
Both files are situated in the root of the theme.
Thanks