- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperHow to use the Flex Blocks cache option
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to insert a block inside the content of a post
- NewspaperFlex Block Settings Guide
- NewspaperMeta Info on Modules and Blocks
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewsmagBlock settings tutorial
- NewsmagCategory tag on modules/blocks
- NewspaperThumbnails – Fix strange looking images on blocks
- NewspaperBlock settings tutorial
- NewspaperCategory Tag on Modules/blocks
- ApiPractical example – How to add a new Block and Module
- Apitd_api_block::delete
- Apitd_api_block::update_key
- Apitd_api_block::update
- Apitd_api_block::add
- ApiAPI – Blocks – Introduction
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
hi,
how are other theme structured?
Newspaper uses blocks and modules : http://import.tagdiv.com/newspaper/doc/#blocks
example :
if you use module 2 replace this line http://screencast.com/t/jdmVu2DE with the code that your plugin is using to display the authors.
in most of the modules you can find the get_authors() function.
Thanks for you message.
Radu A.
Hi,
Do you want the default to be like this? http://screencast.com/t/qzWnJTJu or full but with text-align left?
To make the default one as left align just add this CSS in theme panel -> Custom CSS
blockquote p {
text-align: left !important;
}
Thanks for the message!
hi,
try this
http://screencast.com/t/pVHm3UEiQyo
http://screencast.com/t/mjWbx6XVb2i
Thanks for you message.
Radu A.
Hi,
1. Give me a link to see the banner, can be center via CSS, I will try to provide you a CSS.
2. Yes.
Add this code
<?php echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header')); ?> like here: http://screencast.com/t/3KepYp5dgUB
I use here the header spot.
Then add this CSS in theme panel -> Custom CSS
.td-page-wrap .td-g-rec-id-header .adsbygoogle {
position: static;
}
Result: http://screencast.com/t/Q4JhQMpe
Thanks for the message!
Hi,
1. Is possible directly in code to add a banner anywhere. For an AD bellow the menu add the code here: http://screencast.com/t/ZgyvCjUe5Xa also you can use this code if you want to use the ad system from theme panel
echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header'));
2. This is possible with this plugin: Q2W3 Fixed Widget (Sticky Widget)
Thanks for the message!
But please resolve my previous issue. That one is the main. Please try to solve that one also. The link is – https://forum.tagdiv.com/topic/how-to-remove-authors-meta-from-the-homepage/
Thanks Marius, you guys are great. You’ve got a nice product and the support is also very good. Thanks again.
Hi,
I only just started to work with this theme. Is it possible to use pre-built blocks with Woocommerce products instead of posts or pages?
Thanks.
Hello?
Hello. I want to show “Comments icon” near date on blocks 1,2,3,4,5 not only on the first post (as on blocks 1 and 2)
screenshots http://screencast.com/t/6pdpO5ElOa, http://screencast.com/t/klLO3bhb
It’s this possible?
Hi folks, I may be missing the solution to this but it seems my default configuration for blockquotes is center justified. Is there a way to get the default to be left justified? It’s a bit of a pain to have to create an extra step to get the quotes to look correct by having to set them all for left justification for each post.
i need to show, on sidebar for example, a block with title and photo but from another site.
for example a blog3widget showing title and featured photo from a specified url or category from another site.
how to? it’s possible to change code creating a new blog or use a plugin?
Hello,
I want to add a Google AdSense banner above an article-block (block 8). When I have auto size there is a 300×250 ad. So I have choose the size 468×60, but I can’t center this ad. I have used center-tags in the Theme Panel, but it does not work:
[vc_row][vc_column width="2/3"][td_ad_box spot_id="custom_ad_1"][td_block8 category_id="1" limit="16" custom_title="News" hide_title="hide_title" ajax_pagination="load_more"][/vc_column][vc_column width="1/3"][vc_widget_sidebar sidebar_id="td-default"][/vc_column][/vc_row]
second question: Is it possible to add ads between title and breadcrumbs?
This would be great!
Hi there, first of all: AWESOME THEME!
But I’d love to see these improvements in the future!
1. adblock between menu and content (red)
2. adblock static/floating block 160×600 on the right and/or left next to the content while in “desktop mode” (blue)

Would be great to hear from you!
Cheers
Thomas
hi,
can you please send us wp-admin and ftp u/p to contact@tagdiv.com so we can take a look.
please not that disabling all the plugins is the first thing that we will try.
I see that you have a plugin for socials at the bottom of your site.
do you think this will be a problem?
Thanks for you message.
Radu A.
Hi,
Go to Theme Panel -> translation and search for continue and translate the word like you want http://screencast.com/t/VSbxGmg4
To move the button on right add this CSS in Theme panel -> Custom CSS
.more-link-wrap {
float: right;
}
-
This reply was modified 12 years by
Marius.
Hi,
Is still on track. Until that you can change like here:
Add this code in td_authors.php here: http://screencast.com/t/XfDOSGxu
$buffy .= '<div class="vcard author"><span class="fn">';
$buffy .= td_util::excerpt(get_the_author_meta('description', $td_author->ID), 200);
$buffy .= '</span></div>';
$buffy .= '<div class="td-author-social">';
foreach (td_social_icons::$td_social_icons_array as $td_social_id => $td_social_name) {
//echo get_the_author_meta($td_social_id) . '<br>';
$authorMeta = get_the_author_meta($td_social_id);
if (!empty($authorMeta)) {
//the theme can use the twitter id instead of the full url. This avoids problems with yoast plugin
if ($td_social_id == 'twitter') {
if(filter_var($authorMeta, FILTER_VALIDATE_URL)){
} else {
$authorMeta = str_replace('@', '', $authorMeta);
$authorMeta = 'http://twitter.com/' . $authorMeta;
}
}
$buffy .= td_social_icons::get_icon($authorMeta, $td_social_id, 4, 16);
}
}
$buffy .= '</div>';
Then add this CSS in Theme panel -> Custom CSS
.td_top_authors img {
height: 100px !important;
max-width: 100px !important;
width: 100px !important;
}
.td_top_authors .item-details {
margin-left: 122px !important;
}
.td_top_authors .item-details {
height: auto !important;
}
div.vcard .fn {
color: #444444 !important;
}
.td_top_authors .td_mod_wrap {
min-height: 100px;
}
.td_top_authors .author .fn {
font-family: 'PT Sans',sans-serif;
font-size: 14px;
font-style: normal;
line-height: 21px;
margin: 5px 10px 10px 0px;
padding: 0px;
display: inline-block;
}
.td_top_authors .item-details .td-social-icon-wrap,
.td_top_authors .item-details .td-social-icon-wrap span {
padding: 0px;
}
.td_top_authors .item-details .td-social-icon-wrap {
margin: 0px;
}
Thanks!
I gave that a go but not luck.
Hi,
Edit your homepage, then edit the Block 3 and set the limit post number to 6 or 9(now is 5) http://screencast.com/t/XEvTQ3oVAE4
About theme updates, ask to give you the themeforest account from where he buy the theme or, ask them to give you the updates every-time when is available one. Regular the updates are downloaded from themeforest, from the account of buyers.
Thanks for the message!
Hello Radu, i am having some problems applying Block 6 on my website’s homepage. The thing is that in Block 6, after the text, a blue box appears saying CONTINUE. But i would like to know how to change the CONTINUE text to Read More. Also, i want that blue box to appear on the right side, rather than the left side. Thanks, please give me a solution to this problem, as soon as possible. I am attaching a screenshot of the block 6 CONTINUE SECTION. please give me a solution, as soon as possible.
Image URI – http://www.screencast.com/t/dInje7aTv
Thanks.
hi,
can you try to disable all plugins and try again, could be a conflict between the plugins and the theme.
Thanks for you message.
Radu A.
I am using “background manager” addon and it works very well(I need to have different backgrounds for each post) but there is a problem – it doesn’t change background for header/footer, only the middle part.
I am using fahion style – is there some part of themes code that is blocking this addon ? Since it works for pretty much every other theme.
Thanks in advance.
For some reason the [tagDiv] Block 4 widget is not working in our sidebar on the home page. Ever place else it works fine.
You can see it at uweekly.com on the right as “Promotions”