- NewspaperFlex Block Builder and Flex Loop Builder
- NewspaperModules Builder in Newspaper Theme
- NewspapertagDiv Shop
- NewspapertagDiv Composer Tutorial
- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperHow to update the WPBakery Page Builder plugin
- NewspaperBlock settings tutorial
- NewspaperPost Formats (for TinyMCE)
- NewspaperFont Customization
- NewspaperBackground Introduction
- NewspaperFooter Builder
- NewspaperFavicon & iOS Bookmarklet
Hi,
It would be helpful if you could provide a link toy your website so we can inspect it. That should not happen, it seems the post content is displayed through the sidebar.
If you use Visual composer please try and deactivate the tagDiv composer plugin, and see if this has any effect.
Thanks
Hi,
That was a decision at the moment the theme was created. Visual composer should be used only for posts. However there are users which built their posts with the composer. It can be enabled if it is absolutely required for your website
– https://www.screencast.com/t/8Av3bNt06nNc
Please take into consideration that a considerable amount of options and features will be added to the tagDiv composer only, in coming updates. This composer is created specially for the theme, it’s functionality will increase in future updates
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
Thanks
Hi,
From what I can see the plugin you mention is a page builder. You should try and use one of the two page builders provided with the theme. Either WPBakery page builder (Visual composer) or the tagDiv composer (this front-end page builder is built specially for the theme).
These are tested and work properly with the theme. Please note that we will considerably improve the features and options offered by the tagDiv composer in the next theme updates.
Thanks
Okay after researching some more I figured out what the issue is we’re having – and I’m sure that a lot of other people with the theme have as well.
We have a static front page with pagination (trendblog.net). WordPress and Yoast think it’s a static page and therefore we have a pagination problem with missing rel=”next” und rel=”prev” in the head.
We also have problems with canonicals. So on trendblog.net/page/2/ the canonical is shown as trendblog.net although it should show trendblog.net/page/2/. This is because WP and Yoast think it’s static and set the canonical to that static URL (trendblog.net).
I came across one potential reason, which might have to do with visual composer, which creates the pagination kind of “on the fly” AFTER the important section in the head which determines if the page is purely static or has pagination. Therefore Yoast thinks it’s just a static page.
Don’t know if this hypothesis is correct, but it clearly an issue nevertheless.
This pagination and canonical issue is bad SEO practice according to Google.
Can you please have a closer look at this since it probably impacts other users of Newsmag who have pagination on their front page.
Thanks
-
This reply was modified 8 years by
3pixelkindr.
Hi Support
Not sure if anyone here can assist, I guess this would come down as theme customization so I’m only posting on the off chance.
I would like to remove the link that appears in TD-Module-Thumb when using blocks, I would like to be left with only the title linking to whatever appears in these blocks so I don’t have 2 links to every article. I have highlighted in yellow first what I want to remove, the second item in yellow is what I want to keep.

I can see this code in TD_Module_4 which specifies the image dimensions but it is not clear to me how I go about removing the link, I have also looked in the block templates and I still don’t see what I could edit to achieve this small change.
<div class=”<?php echo $this->get_module_classes();?>”>
<div class=”td-module-image”>
<?php echo $this->get_image(‘td_324x235’); ?>
<?php if (td_util::get_option(‘tds_category_module_4’) == ‘yes’) { echo $this->get_category(); }?>
</div>
My site uses pages only if that makes a difference with pagebuilder and title as the template, I prefer Visual Composer also as opposed to the new Tag Div composer.
Appreciate any assistance.
regards
Wes Dunn
Hello,
Unfortunately you cannot use the page builder for posts. If you use visual composer on posts, maybe, but be careful as VC was never tested on posts. https://forum.tagdiv.com/how-to-use-visual-composer/
Thank you!
Hi
I am trying to create a template for my search&filter plugin to use for displaying results. I duplicated the search.php template and it works with the plugin. But I have three different types of search so i need three different templates with three different sidebars. So I need to be able to control from the them panel.
My problem is I am not able to get it to work. the display view and the sidebar do not change when i change in the theme panel only thin that works is the sidebar position. I will appreciate your help inb sorting this out.
I added this example code to the /includes/wp_booster/wp-admin/panel/views/td_panel_template_settings.php
<!-- Resource Search page -->
<?php echo td_panel_generator::box_start('Resource Search template', false); ?>
<div class="td-box-description td-box-full">
<p>Select the layout for the search page.</p>
- Check a " target="_blank">sample search page from your site.
- This template is located in search.php file.
</div>
<!-- DISPLAY VIEW -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">ARTICLE DISPLAY VIEW</span>
<p>Select a module type, this is how your article list will be displayed</p>
</div>
<div class="td-box-control-full td-panel-module">
<?php
echo td_panel_generator::visual_select_o(array(
'ds' => 'td_option',
'option_id' => 'tds_search_page_layout',
'values' => td_panel_generator::helper_display_modules('enabled_on_loops')
));
?>
</div>
</div>
<!-- Custom Sidebar + position -->
<div class="td-box-row">
<div class="td-box-description">
<span class="td-box-title">CUSTOM SIDEBAR + POSITION</span>
<p>Sidebar position and custom sidebars</p>
</div>
<div class="td-box-control-full td-panel-sidebar-pos">
<div class="td-display-inline-block">
<?php
echo td_panel_generator::visual_select_o(array(
'ds' => 'td_option',
'option_id' => 'tds_resource_sidebar_pos',
'values' => array(
array('text' => '', 'title' => '', 'val' => 'sidebar_left', 'img' => get_template_directory_uri() . '/images/panel/sidebar/sidebar-left.png'),
array('text' => '', 'title' => '', 'val' => 'no_sidebar', 'img' => get_template_directory_uri() . '/images/panel/sidebar/sidebar-full.png'),
array('text' => '', 'title' => '', 'val' => '', 'img' => get_template_directory_uri() . '/images/panel/sidebar/sidebar-right.png')
)
));
?>
<div class="td-panel-control-comment td-text-align-right">Select sidebar position</div>
</div>
<div class="td-display-inline-block td_sidebars_pulldown_align">
<?php
echo td_panel_generator::sidebar_pulldown(array(
'ds' => 'td_option',
'option_id' => 'tds_resource_sidebar'
));
?>
<div class="td-panel-control-comment td-text-align-right">Create or select an existing sidebar</div>
</div>
</div>
</div>
<?php echo td_panel_generator::box_end();?>
Hello bharatunit3d,
I have inspected your website and I noticed that your Footer menu still working but the problem is another one. You are using the Mobile Theme and your About Us and Contact Us page is made with Visual Composer or TD Composer and place notice that the Mobile Theme does not recognize any shortcode from these page builders, sorry! For more information about our Mobile Theme, please check here -> https://forum.tagdiv.com/the-mobile-theme/ So, if you want that your About and Contact Us pages to be available for Mobile Devices, you should remove the mobile theme and use the Default General Responsive mode.
Thanks for the message!
Hello Vjcoil,
Please keep in mind that you do not have the License for Visual Composer because this is a bundled plugin which comes with the theme core packet. First of all, check your system status parameters to be increased according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/ Clear all the caches and check the results. For more information about Visual Composer and TD Composer, please check here -> https://forum.tagdiv.com/visual-composer-tagdiv-composer-transition/
Thanks for the message!
I was testing the Newspaper theme on my personal server, now i have migrate to final server and only 2 plugins was installed, the WPBakery Visual Composer now have no license and I cant save when use the TD Composer.
How can i solve this?
Hi,
You should only use one composer for the website. Using both page builders can lead to conflict, or elements not displaying properly. Not to mention that if you were to edit pages created in Visual composer for example, with the tagDiv composer, this will result in problems.
You will have to make a decision and choose what you think it’s best. Note that the future updates will bring many more options and features in the tagDiv composer only. Take that into consideration if possible.
Thanks
Hello!
Can we have both TagDiv Composer and Visual Composer active on the same site, but used on different pages?
We are currently migrating our site to the Newspaper Theme and there are a couple of pages that have components that don’t exist in TagDiv composer (the FAQ block for example). Can we keep the Visual Composer plugin enabled and use it only on these specific pages? Will it have an overall impact on site performance, even on pages that do not use it?
Regards,
George (omorfizoi.gr dev)
Hello mattarchambault,
I have checked your website and it seems your images are stuck in opacity 0. This usually happens on a js error caused by plugins or customization or other external optimization tools.
Please disable all plugins except visual composer, clear cache and reset CDN files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functioning of the theme.
Thank you!
Hello anmol,
Provide your website URL so I can take a closer look at it. You should use only TD Composer or Visual Composer and not both of them because you can bring some errors. Check the following manual here -> https://forum.tagdiv.com/visual-composer-tagdiv-composer-transition/
Thanks for your understanding!
ok, it can work for the moment, but please, implement something like your “big grid 4” but for 1 post from 1 category, because the result is visually much nicer.
With the “block 22” there are too many text under the picture.
Thanks again
Hi,
The tagDiv composer cannot be used on post pages. Visual composer can be used but it is not recommended to do so
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
– https://forum.tagdiv.com/how-to-use-visual-composer/
Visual composer can be enabled for posts in the plugin settings
– https://www.screencast.com/t/OqbSa5q2
Worth mentioning that future theme updates will provide more options and features for the tagDiv composer exclusively. That is why it is recommended to use only the tagDiv composer for pages. Posts can still be designed using default options
– https://forum.tagdiv.com/post-formats-for-tinymce/
Thanks
Hi,
If you use Visual composer please deactivate the tagDiv composer, then check the results. Also there must not be a background image or color set
– https://www.screencast.com/t/guuSg3kq48
– https://www.screencast.com/t/NTMOwnmrlEH
If there is a background set, the website will be boxed
– https://forum.tagdiv.com/background-introduction/
Here you can see how all the available post templates look
– https://forum.tagdiv.com/post-templates-2/
See them live in the Features menu of the theme demo
– https://demo.tagdiv.com/newspaper/
Thanks
Hello,
It seems you are installing both td-composer and js_composer. They are 2 very different plugins. The td_composer is the tagdiv composer and js-composer is visual composer by wpbakery
Please do not use both at the same time. Only install 1 or the other.
If the issue is still present please contact us via email at contact@tagdiv.com and provide wp-admin and ftp access so we can login and investigate.
Thank you!
Hi,
We want to use TAGDIV composer or Visual composer in post.
Please provide us the steps to use it
Sorry, for the confusion. I use visual composer regularly on on my website build outs. Unfortunately when I apply the stretch content and row (no padding) feature, the content does not stretch to full width it remains within a box layout.
I am wanting the post content right below the header to be full width, as well as other sections of the page to be full width. For example a parallax feature, similar to how you have the demo the grid full 9. No matter what I choose for specs it remains in the box layout.
Hi,
All there is to know about the steps you should take preparing for the update, and the actual update process through different methods is mentioned in this guide
– https://forum.tagdiv.com/how-to-update-the-theme-2/
The FTP method is the most recommended in this matter.
The theme activation is a one time action, you don’t have to activate the theme again
– https://forum.tagdiv.com/newspaper-6-how-to-activate-the-theme/
The activation key will be stored in the database after the theme is activated.
The tagDiv composer plugin is a required plugin and will automatically be installed and activated when the theme is installed or updated (starting with version 8 of the theme)
– https://forum.tagdiv.com/tagdiv-composer-tutorial/
Both tagDiv composer and Visual composer are provided in the theme package. If you want to use Visual composer for your pages, deactivate the tagDiv composer.
You do not have to activate Visual composer, simply disregard the messages
– https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
Worth mentioning that future theme updates will include more features and options for the tagDiv composer only. That should be taken into consideration.
Thanks
Hi, TagDiv Cpomposer is great. I used it for some time but it wasn’t working the way Visual Composer does, which is super fluent and easy.
I would suggest for you to try Visual composer instead.
If you still want to go with TagDiv composer, then try deactivating all other plugins, and then try and see is the blank page still there.
(ps. I prefer back-end so VC wins for me)
-
This reply was modified 8 years by
kompic.
Hi
I have read in the Newspaper theme that once transitioned to TagDiv Composer we shoud delete Visual Composer.
However, I have been using Visual Composer for creating blog entries in the past. And TagDiv does not work for creating new blog entries.
Is it possible to use TagDiv composer for pages and maintain using Visual Composer for Blog Entries?
Thanks
Manuel
Hi,
That is the current functionality, the tagDiv composer will be activated after updating the theme. This is not a problem for the users that are actually using this composer. If you use Visual composer simply deactivate it.
From theme version 8 the tagDiv composer is the main theme page builder. Visual composer is an optional alternative.
Thanks