- TutorialsDefault Block Settings Guide
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsOffset Feature
- TutorialsWhat is Ajax preloading?
Hi,
You use module 2 to display articles on your category, so please set it also for your blog page if you want it – http://screencast.com/t/tv6kn3kvK Also you can set excerpt length for module 2(or module that you use) from Excerpt section – http://screencast.com/t/1DyXgFm5VxK If you don’t have text in your articles it will not show any excerpt on modules/blocks, only if you add it manually to each post where you don’t have content – http://screencast.com/t/Sv1qRSCT5
Thanks!
Howdy,
Anyone else experiencing an issue with the Facebook ‘Like’ text?

If I move it below down under a block it displays fine.
what could block my wordpress install that prevents the display of the site since the V6 Which side should I watch? Because there, I tried again after deletion via ftp all themes, all plugins and as soon as I put the V6, I have a blank page
Thanks
Hi ajaffarali,
it is not that easy… for example the grid from Newsmag is very special and I’m very happy that it works like it is. I’m sure many people are trying to replicate it but it’s very hard to make it work with visual composer + all the other things (blocks). We are already investigating a new grid system for Newsmag that will be a big improvement. Plus there are many more front end differences.
@fkpress – You can try this. Not sure if it will work the same…
@hhealth If you want to remove gradient for all modules you can try this custom css: http://screencast.com/t/wU2cz2A4R
.td_module_wrap .td-module-thumb a:last-child:before {
display: none !important;
}
If you want this for each block you can try something like this: http://screencast.com/t/mU0X9p64fw you can use it also for block 14 just change 19 with 14:
.td_block_19 .td-module-thumb a:last-child:before {
display: none !important;
}
Ok, I apologize for the lack of details
I am trying to filter the menu at the top of the blocks
http://screencast.com/t/y5zHiakDDLzs
DON’T MISS All Business Fashion Featured Gadgets Health & Fitness
Hi,
Sorry for the delay, we are working with limited staff and we answer to the most oldest topics and because you’ve added a new reply we missed your post!
Please check this css solution for block titles ans search button in Theme Panel > Custom Css – http://screencast.com/t/t6w0hkOI
.block-title a, .block-title span, .block-title label {
background-color: red !important;
}
.block-title {
border-bottom: 2px solid red !important;
}
.widget_search input[type=submit] {
background-color: red;
}
Hope this helps!
Hi,
Did you updated to the version 6 of the theme? Unfortunately the Social Icons block is not used anymore in this version of the theme, sorry! There is an option to display social icons on top menu bar – http://screencast.com/t/OdN4qdz9obdW and you have to add your links here – http://screencast.com/t/XwefiKcWLvs6
Thanks!
Hi,
@dazburn Please try this custom css as the above code is for Big Grid Slide and you use Big Grid 2 – http://screencast.com/t/lstMuEXTHly
.td_block_big_grid_2 .td-big-grid-post-0 .entry-thumb {
width: 100%;
height: 100%;
}
Thanks!
Hi,
You can change the text color for text block content – http://screencast.com/t/5406npNB and you will have to use custom css to change font-size and line height: http://screencast.com/t/ls5Q3bmCr or if you want use html and add inline css – http://screencast.com/t/xos8wa1J2Iw9
.td_block_text_with_title {
font-size: 12px !important;
line-height: 20px !important;
}
@szysz Please provide more details what you are try to do. You have many options in Theme Fonts – https://forum.tagdiv.com/font-customization/ If you refer also at Text with title block you can try the above solution for text content.
Thanks!
Glad I could help 🙂 I’ve just installed V6 on a virtual machine to prepare my upgrade and my social counters working flawless, even on localhost, so it should be a something at your end. But I don’t believe it’s even a bug or error, just some settings clashing.
If this is in the realm of the theme’s support, tagDiv staff will probably need to access your site to see what’s wrong and you can e-mail them with details.
However, I think you can also work around this by defining the full path to the icons:
edit file style.css located at the theme folder in wordpress
/wp-content/themes/Newspaper/style.css
at lines 19143 and 19151 you’ll find a small url, if you “complete” it with full path it should fix the icons issue.
replace url(‘images/sprite/elements@2x.png’) and url(‘images/sprite/elements.png’) with url(‘/wp-content/themes/Newspaper/images/sprite/elements@2x.png’) and url(‘/wp-content/themes/Newspaper/images/sprite/elements.png’), it should end up like this:
/* ----------------------------------------------------------------------------
main sprite file
*/
.td-sp {
background-image: url('/wp-content/themes/Newspaper/images/sprite/elements@2x.png') !important;
background-size: 90px 2100px !important;
}
}
/* ----------------------------------------------------------------------------
sprite
*/
.td-sp {
background-image: url('/wp-content/themes/Newspaper/images/sprite/elements.png');
background-repeat: no-repeat;
display: block;
}
if this doesn’t work at first, you might have to punch in the the whole url with “www” in it:
http://www.embracedominica.com/wp-content/themes/Newspaper/images/sprite/elements.png
but the whole url like this might pose a problem if accessing your site via https
(remember that updating the theme rewrites style.css file, after an update you’ll need to redo this “solution”)
-
This reply was modified 11 years by
nf_prt.
Hi
Please make sure you have installed and activated the Visual Composer plugin. After that go to Add New Page and if the Visual Composer it’s set to work on Backend like here http://screencast.com/t/53vLirw5 pres that button and will change to the Clasic editor like here http://screencast.com/t/lNFFF6sMjW99
Now you should be able to chose the type of your homepage, blocks ant other elements you may want http://screencast.com/t/uBwOacinuY .
Here it’s a useful tutorial about Visual Composer https://forum.tagdiv.com/how-to-use-visual-composer/
Hope this will help, have a nice day!
-
This reply was modified 11 years by
Andrei L..
Hi,
@Carel and @neakriti I have added this on our list and we will try to find a solution for login widget to appear on mobile. We will see if it will be added somewhere else…
You can try this custom css to display only sign in widget in top menu – http://screencast.com/t/brzKHghs3
@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}
2. If you use SEO by Yoast and bbpress activate you can handle it – http://screencast.com/t/9u6h6LGbwrzI Also you have in Theme Panel bbpress template to add a custom sidebar and set position for it – http://screencast.com/t/lEsL9kkVK I was referred to the page template of bbpress – http://screencast.com/t/HJPkL1ztavSa we use now full plugin without any customizations.
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
@shubhra API it’s compatible vith curent version 1.7.1 and we are working hard at the new version, wich will be available in a few weeks.
@fusion If you wanna custom block 8 this is the file wich need to be modified td_blo9ck_8.php like here:
http://screencast.com/t/UCOBhq8Thn2
Thanks!
Hi,
@jasongavin Please provide more details about your issue. You need to edit your homepage and add/remove blocks using Visual Composer – http://screencast.com/t/UZgWbs6oDo9 you will have to create your page how you wish I’m not sure how can I help. Please also check documentation – https://forum.tagdiv.com/block-settings-tutorial/ – https://forum.tagdiv.com/how-to-use-visual-composer/
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
-
This reply was modified 11 years by
Alin [tagDiv].
Hi!
I know what’s causing it but I haven’t upgraded to V6 yet so I don’t know any solution. It might also be caused by loop redirection or htaccess config.
In the css, the icon’s path is defined without “www”. At first I thought it was something like adblock but as soon as I typed in “www” the icons just popped out:

Hope this helps pointing in the right direction, tagDiv team will be here in the meanwhile if you can’t sort it out.
Cheers!
Hi,
@shogunteam I’m not sure for what slider you want to do this. For Big Grid Slider you can choose Style 4 – http://screencast.com/t/WHqbfgNQqsA
For IOS slider please try to use also !important tag:
.td_block_slide .td-image-gradient:before {
display: none !important;
}
Please provide a link if it doesn’t work.
@hhealth If you want to remove gradient for all modules you can try this custom css: http://screencast.com/t/wU2cz2A4R
.td_module_wrap .td-module-thumb a:last-child:before {
display: none !important;
}
If you want this for each block you can try something like this: http://screencast.com/t/mU0X9p64fw you can use it also for block 14 just change 19 with 14:
.td_block_19 .td-module-thumb a:last-child:before {
display: none !important;
}
Thanks!
Hey guys,
For some reason, the first blocks on my homepage are wrapping to the next line (not sure how to describe it).
Any idea why this is happening?
Thanks
Hi,
I’m not sure why you have this issue, I have checked this and did not found any issues with filter by category on blocks – http://screencast.com/t/jtJnqFRb even if your article has more categories will appear on that block – http://screencast.com/t/y5zHiakDDLzs – http://screencast.com/t/yepuluj9 Please provide more details about your block settings and a link to take a look.
Thanks!
Hi,
@Nick In next theme update it will be added an option to change the background color for all blocks titles.
Please try this solution until we fix this – https://forum.tagdiv.com/topic/change-colour-of-widget-and-blocks-title-background/#post-54224
@szysz Please check also the above topic, it should work – http://screencast.com/t/dAbkjsge1a
Thanks!
Hi,
Do you refer to the featured images on posts? As on homepage blocks they are visible – http://screencast.com/t/cG252yTpy9OO Please make sure that you have enabled “Show featured image” – http://screencast.com/t/mDiobROb6
Thanks!
CUSTOM JAVASCRIPT:
<script type='text/javascript'>
var gptadslots=[];
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
var mapping1 = googletag.sizeMapping().
addSize([1024,768], [728,90]).
addSize([980,690], [728,90]).
addSize([640,480], [468,60]).
addSize([0,0], [320,50]).
build();
var mapping2 = googletag.sizeMapping().
addSize([1024,768], [300,600]).
addSize([980,690], [300,600]).
addSize([640,480], [200,200]).
addSize([0,0], [300,250]).
build();
//TOP
gptadslots[1]= googletag.defineSlot('/XXXXXXX/XXXXXXX', [[320, 50], [468, 60], [728, 90]], 'div-gpt-ad-XXXXXXXXXXXXX-X').defineSizeMapping(mapping1).addService(googletag.pubads());
//SIDEBAR
gptadslots[2]= googletag.defineSlot('/YYYYYYY/YYYYYYY', [[300,250],[200,200],[300, 600]], 'div-gpt-ad-YYYYYYYYYYYYY-Y').defineSizeMapping(mapping2).addService(googletag.pubads());
googletag.pubads().enableAsyncRendering();
googletag.enableServices();
});
</script>
HEADER AD:
<!-- /XXXXXXX/XXXXXXX -->
<div id='div-gpt-ad-XXXXXXXXXXXXX-X'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-XXXXXXXXXXXXX-X'); });
</script>
</div>
SIDEBAR AD:
<!-- /YYYYYYY/YYYYYYY -->
<div id='div-gpt-ad-YYYYYYYYYYYYY-Y'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-YYYYYYYYYYYYY-Y'); });
</script>
</div>
Do not forget to set the sizes of ad blocks on Google DFP.
Thank you!
I went through your tutorial and I am stuck on the first step – Add social icons block in blocks settings – I am just not seeing it as an option – Where do I find it?
I also do not want to activate the very top bar that has the tiny social icons. Which happens when I add the links to the social area un the theme dashboard.
This code is not full because only for one part working and before I click on right side of the block.
Look what happens when I click on the right title:
http://screencast.com/t/VD2sKj4Wb
So background of the left title not become white or transparent and right title background do not becomes #197abe color…
So this is already my second message about color issues in the update and I very want to receive help from developers.
This is what i use. =)
.td_block_related_posts .td-related-left {
background-color: #197abe;
}