- 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
Hi! I’m attempting to migrate my site from wp bakery page builder to tagdiv’s page builder, but I’m not able to activate the tagdiv plugin.
When I install the plugin on my site, the installation succeeds, but I see an error when activating it indicating that I need to update the version of the theme I am using. This occurs when I have the default theme or my child theme active and am running the latest available version of the theme. Any help resolving this would be appreciated. Thanks!
Hi I was just approved for Google adsense.
I placed the code in header.php on child theme and created a sidebar ad. So when I was approved I see my sidebar ad and an ad in header which is ugly for my site. When I remove the code from header.php the header ad stops showing, which is good (I tried disabling header ads from the theme panel but is still showed).
Now my problem is that google wants the code in header.php so I am afraid that once I remove it the sidebar ads will stop working too.
Is there a way to stop adsense ads showing in header?
Thank you
Hello,
We’re trying to automate our WordPress blog using the WordPress API and for that purpose we would like to expose the Subtitle and Featured Video fields to the API.
This leads me to my questions:
- Are you planning to add support for your custom post fields to the API? From within your code this should be pretty straightforward.
- Can you let me know how your fields work internally? Are they post meta or do they behave like a “default” wordpress post field?
- What would be the best way to access the custom fields from a separate plugin or child theme? I intend to extend the API on our end but need to get and set the data correctly.
Thank you!
With best regards,
Daniel Eder
on behalf of RajPhotoVideo.com
Hi,
That will not work with our theme. You could color the whole article title link with CSS, but not parts of it.
You could try something like this for the module you use, example for module 8 you are using (block 9)
– https://www.screencast.com/t/IeVoe9rWDnL
<?php echo str_replace('|','<span>', $this->get_title($title_length)). '</span>';?>
What it does is that you can for example create the post title like this
– https://www.screencast.com/t/rrbJ6pnjtJB
When you place that “|” character in the post title a span will be created. You can use that and style the text that follows
– https://www.screencast.com/t/AgBQaxJHYc
.td_module_8 .entry-title span {
color:yellow;
}
Module files can be modified in a child theme
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Custom CSS code can be entered in the Theme panel->Custom CSS code section
This would be a solution if you should consider it.
Thanks
Hi,
Then a condition like this will work – https://www.screencast.com/t/LqE4k7wx
The header add will be loaded only on post pages after making this condition.
You can modify the header templates in a child theme, so after a theme update the modification will not be lost
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Hi there at TagDiv,
I have been looking for a long time to find a plugin to put different background images on different pages. I finaly found one (Advanced WordPress Backgrounds) that did the job. But know I’m faced with the next problem:
I don’t know how to give the (boxed) pages some transparency. Also looking for a same solution for some Elements like ‘Text with Title’. I would like to give the white background some transparency so the background image is somewhat vissible. Now the background only show on the left and right side of the (boxed) pages.
Is there any solution for this? Tried to dive into CSS and Child Themes, but that’s still out of my leake. Any help is much appreciated!
Kind regards,
Regio Online
Hi,
That modification is for the single post page, modules will not be affected. If you want the same for modules, you will have to edit the modules you use
– https://www.screencast.com/t/HrJzMjSKEiVp
Either in the main theme or do it in a child theme. Something like this should work for example, give it a try
<?php echo get_the_modified_date('F j, Y g:i a', $this->post->ID); ?>
Thanks
I was been able to modify the date of the last update of the posts, thanks the following code, that I copied and modified in the child theme: includes > wp_booster> td_module_single_base.php. Now I’ve found another problem: infact inside the posts the update date is correct, but in the preview post module, it isn’ t change at all. Can somebody help me?
Hi,
From theme panel excerpt settings you can customize the excerpt length for modules that display it, not enable it for modules that do not show an excerpt.
You can see for example how all the theme blocks look here
– https://demo.tagdiv.com/newspaper/block-1/
Some of their modules display excerpts others do not.
The modules can be modified through a child theme, they are supported
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
This is a topic that might be of use to you if you want to modify some modules
– https://forum.tagdiv.com/topic/adding-tags-and-excerpt/
You could also experiment with the flex blocks, these have settings to enable/disable the excerpts
– https://www.screencast.com/t/uY9fNpC2j5
– https://demo.tagdiv.com/newspaper/flex-block/
Also they are highly customizable in terms of layout and style, so you could make a flex block look in many ways.
Thanks
Can I customize it with child theme?
Hello,
You have js errors in your browser console. The most common issue regarding js errors and disappearing images is a plugin conflict.
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 fixed it for most users that faced the same issue.
Thank you!
You could queue another stylesheet if that is required, try as suggested in these topics
– https://wpsites.net/wordpress-themes/second-style-sheet-theme/
– https://stackoverflow.com/questions/24742016/how-to-include-multiple-stylesheets-with-wp-enqueue-style-using-wordpress
– https://developer.wordpress.org/themes/basics/including-css-javascript/
– https://www.quora.com/How-do-I-add-multiple-CSS-style-sheets-in-your-Wordpress-Child-Theme
– https://code.tutsplus.com/tutorials/loading-css-into-wordpress-the-right-way–cms-20402
Hello,
You have js errors in your browser console. That is why the lazyload animation broke and no longer shows the images: https://www.screencast.com/t/ij44jXtScr
The most common scenario for such errors is a plugin conflict.
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!
Hi,
I will make a note of it and add it on our request list, I don’t think this has been requested before.
You could copy the default page template in the child theme, and add this WordPress parameter
– https://www.screencast.com/t/shCWsVz8wgp8
Then when using the next page tag it would look like this
– https://www.screencast.com/t/Ujtysnv6LUm
Hi,
Such issues are usually caused by insufficient resources, please check the theme system status panel and this guide
– https://forum.tagdiv.com/newsmag-requirements-for-newsmag/
If needed contact your hosting provider and ask them to increase the parameters mentioned in the guide. The WP memory can be set higher, for most users a 256M value would be sufficient.
After making changes check if the theme panel works properly. If there is still an issue, try this. Deactivate all plugins as a quick test, leave only theme plugins active. If you use a child theme deactivate it temporarily. Check if the same happens. Let us know the results.
Thanks
Yes, I know, but even having a child, I want to keep a css file outside the theme (migueldimase.css) because the edition is much faster, I can use my favorite editor (Notepadd++), etc. That’s why I asked you how can I do that?
this is disappointing – any other way i can achieve pagination in pages? Alternatively, for standard pages, which template is used in the theme? I could make code modifications in a child theme maybe. Is there documentation how to overwrite parent theme templates?
That will not work in the child theme, you will have to make the modifications in the main files. Back-up the modified files, after an update replace the new ones with the modified ones.
Or maybe update the theme by patch – https://www.screencast.com/t/jw9Q6nvLF
We provide the modified files in each theme package.
In my child theme i created a “language” folder in which i added it_IT.mo and it_IT.po.
Anyway the site doesn’t read the translation from there but reads my files only if i put them into the parent theme language folder.
The problem is that every time the theme is updated my files are lost!!!
Is there a solution?
Hi,
The child theme provided with the theme includes by default a stylesheet and functions file. CSS code you enter in the child theme stylesheet will be loaded, no need to do anything else than activate the child theme
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks
Hi,
What exactly are you translating in the child theme? The child theme currently supports these files to be used in it
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
If the files are not supported, than to make your modifications you would have to use main theme files.
Hi,
Sidebar content or any other theme content cannot be made to disappear by logged in state. Such a restriction does not exist in the theme or composer. So that would be a problem if it happens for you.
If possible, deactivate all plugins except theme plugins. Clear the cache, check if the same happens. This would rule out plugin interference. Check theme modifications, code additions, child theme. Let us know what you find.
Thanks
Hi,
I couldn’t find on the tutorial or in the forum the way to keep an EXTERNAL css file, as I did with my previous theme (Atahualpa, extremely flexible). I do not want to keep my css code INSIDE the theme.
How and where can I tell Newspaper to use an external CSS file? (I have made a child Newspaper).
In my previous theme, I used the instruction:
<link rel=”stylesheet” type=”text/css” media=”all” href=”/wp-content/themes/atahualpa_child/migueldimase.css” />
Thanks in advance
Hi, i’m trying to translate my CHILD THEME so i installed Loco Translate plugin.
The problem is that, even if i translate the language files in the child theme, my blog still see the PARENT theme files! What shoud i do?
Hi,
Please provide a link to the page with the problem. Leave the module file as it was by default, with no modifications. Remove modifications made to the file directly or by a child theme.
There is no need for code modifications to make a module display the post publish date.
Thanks