- NewsmagHomepage – How to build and set it
- NewspaperHomepage – How to build and set it
- NewspaperHow to edit modules for Flex Block X
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperThe Newspaper Mobile Theme: Introduction
- NewspaperHow to Add a Logo in Newspaper
- NewspapertagDiv Shop
- NewspaperHow to Use tagDiv Cloud Library
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperHeader Builder
- NewspapertagDiv Cloud Library Plugin
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperNewspaper theme documentation
- NewspaperThe Mobile Theme
- NewsmagNewsmag documentation
- NewsmagMain menu
- NewsmagLogo & Favicon
- NewsmagPage templates
Am I missing something or you can only place elements in new TagDiv Composer? There are no detailed settings for each block like in Visual Composer. So at the end TagDiv Composer in current state is just flashy WYSIWYG editor of homepage where you can preview changes, but I still have to use Visual Composer to setup all settings of blocks…
Hi,
After inspecting the website, at the moment it seems to be loading very fast
– https://www.screencast.com/t/CfUTKlls3ct6
The homepage, post page and category pages seem to load properly. Please follow the suggestions mentioned in the speed optimization guide to further improve loading speed. Also install the recommended caching plugin with the specified configuration. After you take these steps there should be a noticeable improvement.
Thanks
Hello, All –
I’m a big fan of the Newspaper theme. The only downside is I really don’t care about Visual Composer. I have a license to use Beaver Builder on as many sites as I like and would much rather use that instead. Realistically, if I were to remove VC from Newspaper, what would be the consequences?
I’ve already tried it and so I know the Homepage does not work as intended – but is that it?
Are there any other problems waiting for me?!
Either way I’m sure Beaver Builder will be a perfect replacement.
:0)
Perch
I just tested it this morning, same problem, the video section on the homepage will display at first. Then, I went to cnn.com, or yahoo.com and come back to the site, the video section disappeared again. Could this be a cache issue? I am using wp super cache.
Thanks for advice, at the end I found another solution – used sidepanel widget on homepage and its styled fine there. This was more like report so you can fix it sometimes in future. Thanks for fast reply!
Hi,
i have a problem with fonts.
Now i have in Themepanel/Fonts all post titles in blocks set to default, but its a mess – one title is regular, in other block there is a medium, bold etc….
When I tried to change fonts in theme admin – nothing happened. For example i changed Post title in Post page- it worked, but in blocks on homepage didnt. I use for example BLOCK 13 on homepage, i found it on Theme panel/Themefonts/Modules and blocks -aricle title/ MODULE 13- Changed font weight – with no result.
http://www.denzeny.sk
Thank you for your advice
When I change block header style of site, it is correctly applied to any widget provided by theme, but not on default wordpress ones like Latest comments or Site information. Its problem only with widgets composed to sidebar in Visual Editor, not affecting default WordPress widgets section – they show correctly.


Problem is that when I use WordPress widgets in Visual Editor, header is H2 a with different class. When I use theme widgets in VE, they have headers with H4 and correct class.
Hi,
You would need to edit the module to achieve this, not the page. I see that you are using module 17 on your homepage. You need to open this file in a text editor and insert the code from this topic – https://forum.tagdiv.com/topic/how-to-write-different-post-titles-on-homepage-or-categories/
Like this, after the excerpt field – https://www.screencast.com/t/reDU9jihSs and also use the class on the paragraph as shown, for better results.
This should be the result – https://www.screencast.com/t/2ZUcN3cId
Thanks
Hi,
My website http://www.dianalegacy.com is opening in Mobile mode on Desktop.
I have checked my Theme panel, homepage all is working.
Please assist. Thanks.
Regards,
AMF
Hi,
When you first go to my web site through cell phone: http://www.badmintonplanet.com
You will see the news section on the top, and video section at the bottom.
But, when you leave the site to look at other web sites, and then come back to my site, the video section of the homepage has disappeared. How come? How to make the video section of the homepage stay all the time?
Hello,
I’m wondering if there’s a way to add subtitles to the excerpts of my post, so that the excerpt has a title and a subtitle. I’d like these to display on my homepage. My website is finalfatloss.com
Just wondering if there’s a way to do this.
In another thread, I saw this code that might be useful:
<?php $td_subtitle_module = get_post_meta($this->post->ID, ‘td_post_theme_settings’, true); ?>
<p class=”td-sub-title”><?php if(!empty($td_subtitle_module[‘td_subtitle’])){echo $td_subtitle_module[‘td_subtitle’];} ?></p>
But I’m not quite sure how to integrate it.
Here’s my front-page-php code:
<?php
/* Home page */
get_header();
// display – Your latest posts
// @see https://codex.wordpress.org/Function_Reference/is_home
if (‘posts’ == get_option(‘show_on_front’)) {
?>
<div class=”td-main-content-wrap td-blog-index”>
<div class=”td-container”>
<div class=”td-crumb-container”>
<?php echo td_page_generator_mob::get_home_breadcrumbs(); ?>
</div>
<div class=”td-main-content”>
<?php
locate_template(‘loop.php’, true);
echo td_page_generator_mob::get_pagination();
?>
</div>
</div> <!– /.td-container –>
</div> <!– /.td-main-content-wrap –>
<?php
// display – A static page
} elseif ((‘page’ == get_option(‘show_on_front’)) && is_front_page()) {
//prepare the loop variables
global $paged;
$td_page = get_query_var(‘page’) ? get_query_var(‘page’) : 1; //rewrite the global var
$td_paged = get_query_var(‘paged’) ? get_query_var(‘paged’) : 1; //rewrite the global var
//paged works on single pages, page – works on homepage
$paged = max( $td_page, $td_paged );
$td_list_custom_title =__td(‘LATEST ARTICLES’, TD_THEME_NAME);
?>
<div class=”td-main-content-wrap td-main-page-wrap”>
<?php
// display Big Grid Mob 1 and the content at the top of the page
if ( empty( $paged ) or $paged < 2 ) { //show this only on the first page
if ( have_posts() ) { ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class=”td-container”>
<?php echo do_shortcode(‘[td_block_big_grid_mob_1 sort=”featured”]’); ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php }
}
?>
<div class=”td-container td-pb-article-list td-main-content” role=”main”>
<?php if ( empty( $paged ) or $paged < 2 ) { ?>
<h4 class=”block-title”><span><?php echo $td_list_custom_title; ?></span></h4>
<?php }
$posts_per_page = get_query_var(‘posts_per_page’) ? get_query_var(‘posts_per_page’) : 10;
// query used on Latest Articles section
$wp_query_args = array(
‘ignore_sticky_posts’ => 1,
‘post_status’ => ‘publish’,
‘posts_per_page’ => $posts_per_page,
‘paged’ => $paged,
);
query_posts($wp_query_args);
locate_template(‘loop.php’, true);
echo td_page_generator_mob::get_pagination();
wp_reset_query();
?>
</div>
</div>
<?php
}
get_footer();
Thank you.
Best,
Dan
Hi,
From what I can see the post tiles are the color you have set in the theme panel
– https://www.screencast.com/t/TcCg3Q1C2W
If you want to change the color for the post title on the module displayed on the homepage, you can try this code – https://www.screencast.com/t/j1iUfk9c
The code must be entered in Theme panel->Custom Css
.home .td_module_2 h3 > a {
color: #8cc63f;
}
If you would like the code to apply in other places where this module is used, like the
More articles box, remove the home class from the code
– https://www.screencast.com/t/7v8DtH6LO
I have edited your previous reply and removed the login information, becaue this is a public forum for all the users to see.
Please let me know if this is not what you wanted, so I may give you a more accurate response.
Thanks
Hi,
I have inspected your website and the sidebar ads. I cannot see the huge gapes that you mention, neither on the homepage, posts or categories
– https://www.screencast.com/t/Myti3CRm
– https://www.screencast.com/t/yI7DWE9qOBn
The one that seems not aligned I believe is actually how all of them should be aligned. But you can use this code to position it like the others
– https://www.screencast.com/t/DUxuTD0Cbv
The code must be entered in Theme panel->Custom Css
.td-g-rec-id-custom_ad_3 {
margin-left: 0;
}
Thanks
Hello,
You probably use the mobile theme and this could be the reason for the op posts not updating. The homepage top posts on the mobile theme show featured posts. If you do not mark new posts as featured, they will not change. Please read this guide:
https://forum.tagdiv.com/the-mobile-theme/
In order to mark the posts as featured: https://forum.tagdiv.com/featured-posts-2/
Thank you!
Hello CharlyBoss,
First of all, I will thank you for your interests in our theme! After beginning your project, I recommend you to star reading all of our documentation to familiarize with all of our theme elements and try to understand how each one works in order to start creating your site.
As an overview, in this site, http://www.mediahoarders.ng is used some of our elements, regarding on homepage, for example, header style 1, Font Awesome for Menu, 2/3+1/3 layout, block slide and pagebuilder+latest article+pagination as page template. You should try using the Inspector Browser to find out what items are used in the theme.
Our documentation can be found here -> https://forum.tagdiv.com/newsmag-newsmag-documentation/
Thanks for your understanding!
I have changed the font article titles in theme colors > theme panel to green but they post titles on homepage latest articles are still appearing black vs green.
Also, when I look at the text version of the demo homepage page, the first row is this:
[vc_row full_width="stretch_row_content td-stretch-content" el_class="td-travel-header" tdc_css="eyJhbGwiOnsiYmFja2dyb3VuZC1wb3NpdGlvbiI6ImNlbnRlciBjZW50ZXIifX0=" css=".vc_custom_1490019638737{background-image: url(https://demo.tagdiv.com/wp-content/uploads/2017/05/banner.jpg) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][vc_column][/vc_column][/vc_row]
Seems like there is custom CSS, but I can’t find it in the Visual Composer interface.
Hi,
I’m trying to replicate the home page used on the Travel Demo:
https://demo.tagdiv.com/newspaper_travel/
But whatever I do, I can’t figure out how to do it using Visual Composer. Seems like there is some custom/hidden CSS somewhere, but I can’t find it.
Any tips?
Hello, with all the different grids and blocks, I couldn’t find the biggest thumbnails to use for blog posts. Is there a way to increase the size?
Thanks For Support me, I can do it as well. But another h3 heading I can’t find on page builder page. So, please suggest me Where I Found the H3 Heading Tags. I attached My Home Page Screenshot and with source code. You have used the H3 Headings in Home Page Title Page.


Hi,
I don’t understand exactly what you are asking. That homepage is a simple page created with the Visual composer elements. If you mean the Video category page, that is as well a simple category page containing video posts. You too can create any category you want, and assign posts with featured videos to it – https://forum.tagdiv.com/featured-image-or-video/
Please correct me if I misunderstand.
Thanks
Hi,
If you mean this dark shadow – https://www.screencast.com/t/2vq6ZqSQ you could remove it with a code like this – https://www.screencast.com/t/OexSZZYiuW
This is the code used, it must be entered in Theme panel->Custom Css
.homepage-post
.td-image-gradient-style8:after {
display:none;
}
Thanks
Hello. Is there a way to remove the dark filter on the image when using the homepage post as the lead item?
Something went wrong, but I don’t know what. The homepage url of my site http://ollekebolleke.info doesn’t show the homepage, but this url: http://ollekebolleke.info/video-15-dagen-door-thailand-met-de-djoser-family/. The url bar it does show the http:ollekebolleke.info address, though. But with that video.
How can I correct this?
Hi – Absolutely love the Newspaper theme – have just put together our site at http://www.visanews.com.au – I have decided to only put one article in the homepage feature slider at a time, and am trying to figure out how to modify the stock Revolution slider that comes with the theme to delete the list of featured articles that appears on the right side of the slider. Thanks for any help with this – have poked around the Revolution Slider pages with no success so far – can find all elements except for the article list on the right side – thanks for any assistance.