- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsDefault Block Settings Guide
- TutorialsOffset Feature
Hi Vlad,
Thanks for the information. Using the cloud templates, which editor would you recommend to use for our posts? We are currently using WPBakery Page Builder.
Thanks!
Hello !
Honestly I think that child theme would be harder to configure than a normal template.
Simply go into Cloud Templates – Add new, select a Homepage and edit it using the tagDiv Composer. Once the page is imported you will be able to see it here: https://www.screencast.com/t/h1B5CBBp
Press edit with tagDiv Composer and then you can see this: https://www.screencast.com/t/opIBY3oFsNk7 ; Simply right click on the elements from the header and the footer and delete them. Please note that for footer you will need to import a footer page, and do the same thing as in the homepage: https://forum.tagdiv.com/footer-templates/
I hope this was helpful !
Thank you !
Hi, I had installed the theme and began using the Romania News theme, but after too many bugs I had to change from that Pro Demo install. Instead I used the multi purpose header in the theme panel and also the theme panel footer. So does that mean if I deactivate the standard pack by readers will see just code?
My second question is about deleting the old Cloud Templates. The Romania News template I had used for all my different pages (archives, single-post, homepage) and now that I switched, it still says there are links connected to the page even though I no longer use them in the themepanel for over a week. If I delete, this will cause 404 errors according to Yoast SEO plugin. Is this true? How do we remove those links to that page?
In a child theme we’ve added new template parts for the following files in order to select a different menu based on category.
child-theme/parts/menu-mobile.php
<?php
if (is_category(array(433,1738)))
{
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'td-mobile-main-menu',
'fallback_cb' => 'td_wp_no_mobile_menu',
'link_after' => '<i class="td-icon-menu-right td-element-after"></i>',
'walker' => new td_walker_mobile_menu()
));
}
elseif ( is_category(array(8704,17723,17717,17718,17724,17721,17720,17719,18809,18810,28327)) || in_category(array(8704,17723,17717,17718,17724,17721,17720,17719,18809,18810,28327)) || is_page(array(92484,92558,96207)) )
{
wp_nav_menu(array(
'theme_location' => 'header-menu-mobile-CUSTOM',
'menu_class'=> 'td-mobile-main-menu',
'fallback_cb' => 'td_wp_no_mobile_menu',
'link_after' => '<i class="td-icon-menu-right td-element-after"></i>',
'walker' => new td_walker_mobile_menu()
));
}
else
{
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'td-mobile-main-menu',
'fallback_cb' => 'td_wp_no_mobile_menu',
'link_after' => '<i class="td-icon-menu-right td-element-after"></i>',
'walker' => new td_walker_mobile_menu()
));
}
//if no menu
function td_wp_no_mobile_menu() {
//this is the default menu
echo '<ul class="">';
echo '<li class="menu-item-first">Click here - to use the wp menu builder';
echo '';
}
?>
and
child-theme/parts/header/header-menu.php
<?php
if (is_category(array(433,1738)))
{
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
}
elseif ( is_category(array(8704,17723,17717,17718,17724,17721,17720,17719,18809,18810,28327)) || in_category(array(8704,17723,17717,17718,17724,17721,17720,17719,18809,18810,28327)) || is_page(array(92484,92558,96207)) )
{
wp_nav_menu(array(
'theme_location' => 'header-menu-mcn',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
}
else
{
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
}
//if no menu
function td_wp_page_menu() {
//this is the default menu
echo '<ul class="sf-menu">';
echo '<li class="menu-item-first">Click here - to select or create a menu';
echo '';
}
?>
All that we’ve changed is the ‘theme_location’ in both files to load a different wp_nav_menu.
Everything works fine except for the css, drop down menu’s have no style and the height of links isn’t the full navigation bar height. Does the theme_location have any influence on the styling of the menu items?
Thanks
Matt
Hello !
Unfortunately tagDiv Composer cannot be used on editing actual posts. You can edit Cloud templates and pages. You can import a post template and edit it to fit your tastes then apply it: https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
Thank you !
I did that but then I switch to using the theme panel because when I imported the footer template it doesn’t work properly and doesn’t let me change a few things without throwing errors. Now I’m using the theme panel and I can do exactly what I want except that there’s already content in the column in the footer so when I add widgets it just adds up. where are those elements added if I’m not using a footer template?
Look at the screenshot: https://snipboard.io/6cMLvC.jpg
Editor Pick, Popular posts and popular category is there by default. I never added them. I’m not using a page for the footer and add widgets on my own which you can see but the ones that are already there how do I get rid of them?
-
This reply was modified 6 years by
altgirlmedia. Reason: adding info and screenshot
Hi,
I recently migrated my website to “News Paper” theme which i recently bought. How ever I am getting this error on every single post page:
Fatal error: Uncaught Error: Call to undefined function get_post_datetime() in /home/celebche/public_html/wp-content/plugins/td-cloud-library/state/single/tdb_state_single.php:1666 Stack trace: #0 /home/celebche/public_html/wp-content/plugins/td-cloud-library/wp_templates/tdb_view_single.php(88): tdb_state_single->{closure}() #1 /home/celebche/public_html/wp-content/plugins/td-cloud-library/wp_templates/tdb_view_single.php(88): Closure->__invoke() #2 /home/celebche/public_html/wp-includes/template-loader.php(78): include(‘/home/celebche/…’) #3 /home/celebche/public_html/wp-blog-header.php(19): require_once(‘/home/celebche/…’) #4 /home/celebche/public_html/index.php(17): require(‘/home/celebche/…’) #5 {main} thrown in /home/celebche/public_html/wp-content/plugins/td-cloud-library/state/single/tdb_state_single.php on line 1666
The site is experiencing technical difficulties.
Please help me fixing this issue.
Hi,
I am using Newspaper 10.2. For my contact page, I used the template “Nature Love”. In the preview you guys showed, there was a contact form. But when I applied the particular template, that contact form section was missing. I have installed WP Forms as well and have created one simple contact form with it.
The problem is that I am unable to insert the contact form shortcode through the TagDiv composer backend. Please help.
Hello !
For posts you can achieve that by editing the post template. You will have to use a cloud library post template : https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
After that edit the template using the tagDiv Composer and add ad boxe where you want to insert your ads: https://forum.tagdiv.com/custom-ad-spots/
I hope this was helpful !
Thank you !
Hello !
In order to make the site full width you have to select every row of your page using the tagDiv Composer and then set the stretch mode you want like here : https://www.screencast.com/t/BkWwdHh6
In order to make the post page full width you will have to add a single post template and then edit it. Check more about how to have single post template here: https://tagdiv.com/customize-articles-with-single-post-templates/ And for the header you can do it here: https://www.screencast.com/t/xf56tQN0.
These are the ways you can increase your page width from theme options. Anything above this will require custom code.
If you are using a background color / image this will cause the boxed layout.
Let me know if this helped you !
Thank you !
Hi,
The simplest way to achieve a full width is to use a template from tagDiv Cloud Library. There is no one single button push. You have to import a post style and set it as the default post template in the theme panel post settings, then you need to import a category template that is full width and set that one as the default category template. The same for tags, author pages etc:
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/ also for pages (stretch row and content ) https://www.screencast.com/t/i8SQ5eS4 .
Please read similar topics:
-> https://forum.tagdiv.com/topic/force-full-width-on-categories-post-grid/
-> https://forum.tagdiv.com/topic/homepage-full-width-content/
Thank you!
Is the possible to use the TagDiv Composer to create posts? Not the template, sidebar and structure of the post, but editing the actual content that goes into the body of the post?
So we basically want to find out if posts could have same editing functionalities as pages, with the tagdiv composer. If not, then what are the limitations? and what should be the standard way of editing a post using the cloud templates (and as well as tagdiv composer)?
Hi,
The simplest way to achieve a full width is to use a template from tagDiv Cloud Library. There is no one single button push. You have to import a post style and set it as the default post template in the theme panel post settings, then you need to import a category template that is full width and set that one as the default category template. The same for tags, author pages etc:
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/ also for pages (stretch row and content ) https://www.screencast.com/t/i8SQ5eS4 .
Please read similar topics:
-> https://forum.tagdiv.com/topic/force-full-width-on-categories-post-grid/
-> https://forum.tagdiv.com/topic/homepage-full-width-content/
Thank you!
Hi guys,
A few days ago, one of our pages suddenly started showing this error:
“There has been a critical error on your website.
Learn more about debugging in WordPress.”
When I go to my WP dashboard and click on Pages, I can’t see any of the pages we have created and I see this message:
“There has been a critical error on your website. Please check your site admin email inbox for instructions.”
… except I haven’t received any admin emails to help resolve this.
I also tried creating a new header from a cloud template, and within minutes ran into the same problem. The rest of the site still seems to be functioning normally, but we don’t really want to meddle with it too much as we don’t want anything else to break – which is problematic as we’re in the middle of a complete site redesign…
Looking through this forum, other users have suggested that the problem lies with TD Composer. We have reinstalled the theme and re-updated all the plugins but this hasn’t fixed it. We’ve also tried the usual deactivation of plugins but the problem still exists. I’ve asked our IT consultant to have a look and he can’t fix it. Do you have any suggestions on where we need to look next?
Thanks
Hi, I have created a post using “single post template”. I have placed the ads code but the post content is not displaying correctly. Followed all the steps mentioned.
I have sent the credentials and screenshot of the issue through email. Kindly look into the issue.
Hello !
You can paste the CSS code in Theme Panel – Custom Codes: https://www.screencast.com/t/XnpaX1nsnn5N
Also please note that on our cloud templates you can use the tagDiv Composer page builder in order to make the adjustments needed.
Thank you !
Hello !
You can paste the CSS code in Theme Panel – Custom Codes: https://www.screencast.com/t/XnpaX1nsnn5N
Also please note that on our cloud templates you can use the tagDiv Composer page builder in order to make the adjustments needed.
Thank you !
Hi,
If you want to sat a page as footer page you can do it like this -> https://i.imgur.com/yuE6pml.png also the only plugins that we’ve tested with our theme are -> https://i.imgur.com/D1lkMN1.png all these are working normal.
Thank you!
Hello !
TagDiv Composer is a Page builder and it can’t be used on creating posts. Only thing that you can do is to edit the post template as you can see here: https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
Thank you !
So I tried to follow the instructions using the cloud template. It says that it is imported and I can see the template listed in my templates group, but when I click to edit it with TagDiv Composer, my screen just goes blank and there is no tagdiv composer or page (post).. just a totall blank screen. Can you help me to figure out why I am unable to edit this template? Thanks
-
This reply was modified 6 years by
Lenpen.
Hello !
We recommend, you first create a backup of your website and set up a maintenance mode until your work is done.
In order to test the new implementation, you can use the WP-Staging plugin to create a staging copy of your website where you can test the new features without affecting the live site.
The first step for you to clearly see what features remain available and what’s new in Newspaper 10 would be to deactivate the Standard Pack plugin. This will probably cause your homepage to be filled with shortcodes, but don’t worry !
In this way you will know exactly what needs to be adjusted.
With the standard pack plugin deactivated you will have to import and set a Cloud template for all your default wordpress pages. In order to cover all of your website you need to import, customize and apply the following templates:
Header Template
Footer Page
404 template
Attachment Template
Author Template
Category Template
Date Template
Search Template
Single Post Template
Tag Template
All the templates found above are fully editable with tagDiv Composer which means more possibilities to customize your website. Please note that most of the old tagDiv Composer elements have been re-designed and converted to be fully customizable and can be imported to your page from here: poza cloud composer – blocks.
For the mobile menu please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hi,
Yes, you can achieve this on pages by using tagDiv Composer and set the row like this -> https://i.imgur.com/Xm9VUJM.jpg also we recommend to use flex blocks and flex grids also you can do the same on cloud templates, for posts you can get a single post template from tagDiv Cloud Library, edit it with tagDiv Composer and set the row for content as in may example, also you can set manually the width of columns -> https://i.imgur.com/StETWjr.png -> https://i.imgur.com/aqKdHiW.jpg
Hope this will help you!
Thank you!
Hello !
You can achieve that by editing the single image element using the tagDiv Composer as you can see it here: https://www.screencast.com/t/oHKMKB5j
You might need to import a cloud template for the posts before. Follow our tutorial here in order to make your post pages fully editable: https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
I hope this was helpful !
Thank you !
Hello !
Please note that Newspaper Theme works best with tagDiv Composer. Any other page builder will cause conflicts on our templates.
The best solution is to work with tagDiv Composer on Newspaper Theme.
If you want we are able to offer you a refund if you make a request here: https://themeforest.net/refund_requests/new
We are sorry for the inconvenience !
Thank you !
Hi,
Please provide some more details about the problem you are facing, also some screenshots would be very helpful.
Also please notice that if you are using a pro demo or cloud templates the theme panel settings will no longer apply, you’ll need to edit the cloud templates using the tagDiv Composer.
Thank you!