- NewsmagChild theme support
- NewspaperChild Theme Support
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewsmagWhat’s included in Newsmag theme package
- NewspaperHow to Update the Newspaper Theme
- NewspaperWhat’s Included in the Newspaper Theme Package
- ApiThe Theme API
- NewspaperFlex Block Settings Guide
- NewspaperPrimary Category: Build a hierarchy for your website
- NewsmagCustom Post Type Support
- NewsmagInstall via WordPress
- NewsmagInstall via FTP
- NewsmagBreadcrumbs
- NewspaperBreadcrumbs
- NewspaperHow to Install Newspaper via FTP
- NewspaperHow to Install Newspaper via WordPress
how do you activate the child theme Newspaper?
Hi,
Please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
If there is still a problem, you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you!
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
Hi @Vlad-s. Thanks for your response, but that didn’t helped that much. In fact, I know how to work with WordPress/Themes/Plugins but I haven’t found yet a way to get rid of the header and footer using the theme.
I think the way to go would be to have a theme-child and create a new template file for that…
-
This reply was modified 6 years by
leobraz.
Hello !
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,
Please make sure that all the settings are like in our requirements, please follow the guide carefully
– https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
If there is still a problem, please provide some more details and some screenshots.
Thank you!
Hi elets_wdg,
If I understand correctly the problem appear when you change the permalinks, I’ve just make some test and for me this is working normal -> https://i.imgur.com/4wmxAEk.png -> https://i.imgur.com/ScaIfRZ.png
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
Thank you!
Hi Joanne Yu,
So if you just want to have customer how can register you can use the above method, if you need some more function for the customer then you need to use some plugins like these -> https://themegrill.com/blog/woocommerce-registration-plugins/
In order to remove the sidebar from woocommerce you can use the option from theme panel -> https://i.imgur.com/yhCATrn.png
“So can after they login, when click the name will go to woocommerce my account page?” -> I think that this can be achieve using a redirect link
Thank you!
Hi,
1. From what I so there are even more problems on menu, are us using some custom code or untested plugins ? also if you are using child theme please set the parent theme.
2. If you have set a header from tagDiv Cloud Library, you need to edit the sticky menu too, edit that header template using header manager -> https://www.screencast.com/t/FkAe80JsuCo check the sticky menu, scroll until you see the sticky menu and click the menu, logo … -> https://www.screencast.com/t/o6Z8zoJoWbFY
3. The problem is caused by some css that set the set the opacity to 0 -> https://i.imgur.com/6wjHJl1.png I think that the most of the problems are caused by these errors -> https://i.imgur.com/3BYQfYp.png the min-js can not be load properly.
4. The problem seems to be created by some css that set opacity 0, usually this problem is usually made by some plugins or custom code.
Thank you!
Hello !
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 !
Hello !
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 !
Hello !
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 !
Hello @enesozden !
Disabling the schema will not
If you’re receiving the CTRL-Z Error that is most likely that you are facing a plugin issue. 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,
From what I can see the problem is not caused by the theme thumbs, these are all fine, the problem is caused bu some untested plugins, please deactivate all non theme/tested plugins, child theme ( if you are using), clear all cache and try again.
Thank you for your understanding!
Hello !
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.
Also please note that as our Banner says: https://www.screencast.com/t/tXqGkYkB we have been out of office due to our winter holidays. We answer the topics from Latest to Newest Monday – Friday from 08:00AM to 05:00PM GMT+2 So multiple replies to your topic will only make us to get harder to your topic. Also note that is not recommended to reply in other users topic since you will make the response time longer !
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 !
Hello !
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 !
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 !
Hello !
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,
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
Please make sure that you you re-save the permalinks -> http://prntscr.com/p8n6ep
If there is still a problem, you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thanks
Hi,
Please make sure that you install correctly the WordPress and Newspaper theme, also make sure that you have the latest versions of them.
Please make sure that all the settings are like in our requirements, please follow the guide carefully – https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
If there is still a problem, you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you!
Hi,
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all plugins and child theme ( if you are using ) and let only the tagDiv Composer , clear all cache, deactivate the cache plugin and try again.
Also you can check these similar topics:
-> https://stackoverflow.com/questions/59009827/publishing-or-uploading-failed-error-message-the-response-is-not-a-valid-json
-> https://wordpress.org/support/topic/the-response-is-not-a-valid-json-response-2/
If the problem persist, please provide some more details and some screenshots.
Hope these will help you!
Thank you!
Hi cadeaumaestro,
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all plugins and child theme ( if you are using ) and let only the tagDiv Composer , clear all cache, deactivate the cache plugin and try again.
If the problem persist, please provide me a link where I can check these two problems.
Thank you for your understanding!
Hi,
Please make sure that all the settings are like in our requirements, please follow the guide carefully – https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
If the problem persist, please provide some more details and some screenshots, also make sure that you have the latest version of Newspaper and WordPress.
Let me know the results!
Thank you!
Hi Optimyz,
All the steeps made are correctly, just make sure that you have the child theme activate and you are using the default post style or post style 1.
If there is still a problem, just let me know!
Thank you!
Hi Sprint News,
TagDiv Composer is not an adopted plugin, is the theme builder, the WPBakery ( old Visual Composer ) is a bundled one -> https://help.market.envato.com/hc/en-us/articles/213762463-Bundled-Plugins
Please notice that these changes that were made in the latest updates were requirements from Envato -> https://tagdiv.com/updating-the-core-of-tagdiv-themes/ therefore the theme functions were moved in tagDiv Composer ( this is the theme builder ) also the child theme need to be changed to work as expected.
In case you want a refund however, you can request it here
– https://themeforest.net/refund_requests/new
We will approve it as soon as possible.
Thank you for your understanding!
Great! Thank you very much.
Please let me confirm the whole process.
1. Copy single.php & loop-single.php
FROM wp-content/plugins/td-composer/legacy/Newsmag/
TO wp-content/themes/Newsmag-child/
2. Copy loop-single-1.php & single_template_1.php
FROM wp-content/plugins/td-composer/legacy/Newsmag/parts/single
TO wp-content/themes/Newsmag-child/parts/single
3. Modify the files copied to the chiled theme.
Thanks