- 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
Hello,
This could be a plugin conflict so please disable all plugins except the page builder, 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 functionality of the theme.
Thank you!
Thanks Simion! It works best when added to the style.css in the child theme.
Thanks Catalin, I know how to do that.
What I need to know here is if it’s possible to have a banner placement on the home page that’s not part of any other page. E.G. I have 1 banner position, then assign a banner on the home page, then another for the rest of the site.
Above I gave a screen grab of where the banners should appear.
Maybe the best approach is something like:
If home page=yes, then display X banner code, if home page=no, then display Y banner code.
If this is possible I can add it to the header-style-1.php file in the child theme.
Does this make sense?
David
Hello David Henry,
If you want to make some changes to your header style you should use the child theme because you will not lose this customization on the next update. For more information about child theme support, please check here -> https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks for your message!
Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.
i tried both ways – cia wordpress & cpanel !! same error
Hi,
You could do that with the example from this guide
– https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/#section-3
Try adding the code mentioned in the theme (or child theme) functions file, and test it. Then change the address to what you need.
Thanks
Hello,
No, the site not being published should not have anything to do with the logo. Please remove your custom css you added affecting the logo and test the theme in it;s default state without child theme modifications or css modification.
Plugins can also affect the theme functionality so you may have to disable the plugins and run a few tests with out theme. Make sure to clear the cache after you disable the plugins.
Thank you!
Hello,
I have tested the product categories element and it runs properly on my end: https://www.screencast.com/t/GoBixMEW0
You may have a custom css or a plugin conflict affecting the css.
Please try to disable all plugins except woocomerce, clear cache and reset cdn files if you use it.
Then test again.
Also check your custom css in the theme panel or your child theme.
Thank you!
Hello,
This is usually due to the system status parameters not being set properly. Please use this guide: https://forum.tagdiv.com/system-status-parameters-guide/
It could also be a plugin conflict so please disable all plugins except the page builder, 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 functionality of the theme.
Thanks.
Hello,
This could be a plugin conflict so please disable all plugins except the page builder, 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 functionality of the theme.
Our themes were tested and work fine on Firefox, Chrome IE Opera and Safari
Thank you!
Hello,
The best way for optimum performance would be in style.css but not in the child theme. The one in your main theme is the fastest option.
Thank you!
Hi,
What’s the best alternative, for performance, when using custom CSS? Is it to put it the Child theme or in the Custom CSS area in the Theme panel?
Today I have it in the Theme panel and it almost always takes a blink of an eye before the CSS is loaded. I want it to be loaded immediately, of course 🙂
Best regards,
Oskar
Hi,
I have tested the force full width feature and it is working properly for me
– https://www.screencast.com/t/S5y9wQZSH
All the elements in the header are stretching as intended
– https://www.screencast.com/t/26xIXsQxoKu
If you could provide a link to your website so we can see the issue or some useful screenshots and more details, it would be very helpful.
Maybe something is interfering with the functionality, a plugin, custom code or a child theme. You could check if this is the case, by deactivating all the plugins except the ones provided with the theme (clear any installed cache afterwards), switching to the main theme if you have a child theme active. Also check if you have custom code in the theme panel code sections.
Thanks
Hello,
The top menu cannot be sticky. It does not share the main menu functionality to scroll with the content.
As for the mobile menu, it is probably a plugin conflict so please disable all plugins except the page builder, 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 functionality of the theme.
Thank you!
Thanks Simion, much appreciated! But it doesn’t work for some reason…
I created the path and copied the respective file in my child theme, then added the following line of code on the suggested place in the php code: ‘w-menu’ => ‘w menu’ but it breaks the site. To try, I added the code in the respective file, in the respective parent theme’s folder (as you describe above) – it breaks the site again.
I have the shop menu created, just can’t create a new location- woocommerce pages.
Btw, just as a note, in case that matters – I use the following code to avoid loading woocommerce scripts on non-woocommerce pages:
add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_styles_scripts’, 99 );
function dequeue_woocommerce_styles_scripts() {
if ( function_exists( ‘is_woocommerce’ ) ) {
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
# Styles
wp_dequeue_style( ‘woocommerce-general’ );
wp_dequeue_style( ‘woocommerce-layout’ );
wp_dequeue_style( ‘woocommerce-smallscreen’ );
wp_dequeue_style( ‘woocommerce_frontend_styles’ );
wp_dequeue_style( ‘woocommerce_fancybox_styles’ );
wp_dequeue_style( ‘woocommerce_chosen_styles’ );
wp_dequeue_style( ‘woocommerce_prettyPhoto_css’ );
# Scripts
wp_dequeue_script( ‘wc_price_slider’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-add-to-cart’ );
wp_dequeue_script( ‘wc-cart-fragments’ );
wp_dequeue_script( ‘wc-checkout’ );
wp_dequeue_script( ‘wc-add-to-cart-variation’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-cart’ );
wp_dequeue_script( ‘wc-chosen’ );
wp_dequeue_script( ‘woocommerce’ );
wp_dequeue_script( ‘prettyPhoto’ );
wp_dequeue_script( ‘prettyPhoto-init’ );
wp_dequeue_script( ‘jquery-blockui’ );
wp_dequeue_script( ‘jquery-placeholder’ );
wp_dequeue_script( ‘fancybox’ );
wp_dequeue_script( ‘jqueryui’ );
}
}
}
Thanks for your support!
On another forum I found this code as a potential solution, but when I paste it in the child theme’s function.php all pages on the site incl. non-commerce pages stop loading, only a white screen.
// =============================================================================
// Sets Custom Menu For WooCommerce Shop
// =============================================================================
add_filter( ‘wp_nav_menu_args’, ‘custom_blog_menu’ );
function custom_blog_menu( $args ) {
if ( x_is_product() || x_is_product_index() ) {
$args[‘theme_location’] = ‘primary’;
$args[‘menu’] = ‘Custom Menu’;
}
return $args;
}
Can it be modified to work properly?
Thanks
Hi Catalin,
Thanks for your answer!
I got to this point.
The questions I have are the following:
1. Under the title there’s usually an AD. I don’t integrate (any kind of) ads on the website. Because of this, the right side of the video is always empty. Can I:
– a. Add a static image
– b. Add some [very short] descriptive text there?
The idea is to avoid having that empty space there. If that place can be filled with something else, please let me know
2. How complicated would it be to integrate support for Twitch clips? Is it possible doing so using a child theme? Would go the extra mile to do it myself if the integration is not crazy complicated for those not familiar with WP’s core. Here’s such an example. Twitch allows embedding the videos using a simple iFrame.
In articles & co, that’s easy to do, but I’d like to use the videos feature you provide and use along Facebook and Youtube videos also Twitch clips.
3. If I have a category called “videos” with 3 subcategories each looking similar to the one I linked at the beginnings of this post. Is it possible to ‘restrict’ the “related videos” displayed under the main video to a specific subcategory?
Thanks!
Hi,
You can use the browser inspector to identify the elements on the page and their classes. Then you can create custom code that you can use in the theme panel, child theme or in any other way possible. Here is a guide
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
There is no guide at the moment containing an index of the classes or elements of the theme. All the theme documentation is found here
– https://forum.tagdiv.com/newspaper-theme-documentation/
Thanks
Hey,
I followed these steps and rebuilt the entire site (unzipping wp-content from a NewsMag page and putting in the database to a new install, then disabling all plugins except page builder, installing NewsPaper 8, installing updated page builder, installing updated td_composer, then following memory parameters guide for wp-config and .htaccess changes).
There was no caching on the WordPress site but I cleared my browser cache.
I still have the same issue. I can tell that at least the max_upload_size did successfully change to 50mb because I can see this on the media upload page.
Anything else I could do to troubleshoot? Potential issues: it’s a large site (13gb tar.gz for wp-content and 300mb MySQL database), and previously is on NewsMag.
Thanks!
Joey
Edit: This is all without installing or activating the child theme.
-
This reply was modified 9 years by
joeydekoning.
I added the code to the style.css in my child theme (which contains very few lines of code, most of the css are in the style.css which is in the parent theme and is minified) and it works now as I need it.
Thank you for your support!
Can i do it in the child theme?
Hello,
It could be a plugin conflict or a memory allocation problem. Please disable all plugins except the page builder, 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 functionality of the theme.
Also please follow this guide to properly increase the memory: https://forum.tagdiv.com/system-status-parameters-guide/
Thank you!
Hi,
In that file there are two sections. One containing the top sharing for the posts
– https://www.screencast.com/t/EV7SJEjna
And lower in that file is a section with the bottom sharing of the post
– https://www.screencast.com/t/cXKawQ2l3SRS
You will have to make modifications according to where you want them to display, top or bottom. To change the language for the Facebook like in the bottom sharing enter the code exactly like this
– https://www.screencast.com/t/RCIUxAqBO8F
– https://www.screencast.com/t/zY1y16MXVC
– https://www.screencast.com/t/2puNN5QuU
This is the code used locale=bg_BG&
There you can remove the twitter button for the section you want, by commenting or deleting the code
– https://www.screencast.com/t/nkhl0Fkjjs
Or you could simply hide it with css
– https://www.screencast.com/t/yq9ent8qrKg
.single #twitter-widget-1 {
display: none;
}
You could make the modifications to this file in a child theme if you don’t want to make them after each theme update. The respective file can be modified through a child theme.
Here is a guide about cresting a child theme and how to use it
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks
Hello,
Please disable all plugins except the page builder, 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 functionality of the theme.
This issue is a standard plugin conflict.
Thank you!