- NewsmagPage templates
- NewsmagCategory templates
- NewsmagFooter templates
- NewsmagDefault post templates
- NewsmagPost templates
- NewsmagHomepage – How to build and set it
- NewsmagtagDiv Composer Tutorial
- NewsmagCustom Post Type Support
- NewsmagNewsmag documentation
- NewsmagHow to use the Visual Composer plugin
- NewsmagHeader styles
- NewsmagSmart sidebar
- NewsmagCategory grid styles
- NewsmagCategory top post styles
- NewsmagHow category settings work
- NewsmagFeatured images
How to allow comments on a specific WordPress PAGE only, not a post?
I know you have a setting in newspaper theme in Template Setting to disable/enable comments for all pages….but I need to do it just for one page. Again, it for a page not a post.
please advise.
Thank you!
Hi,
We have a page where we do NOT want authors name and number of comments to be seen anywhere. I managed to delete them from Post template but they are still on the Home page in Flex Blocks, Post Loops etc. – How can I edit those?
Thanks a lot!
Since I’m new to Newspaper I’ve set up a demo domain where I played around with all the features.
I’ve created the headers and footers I want, as well as highly stylized pages.
I am now setting up a new domain with a new licenses where I will launch the sites.
How do I copy the templates that I’ve created the past week to the new site, not just the theme settings?
Hi, I would like to translate the word ‘Page’ to Portuguese but I cant find the place to edit that particular word on all site pages. I’ve already install the Loco plugin and still this word is not been translated. How can a simply edit/translate this word ‘Page’ on the template – https://www.screencast.com/t/I5jkFcdOsk9 Hi, I would like to edit all the mega Menu equally i.e. all displaying the subcategories. Currently, some categories like ‘NOTICIAS” are displaying correctly the subcategories on Mega Menu – https://www.screencast.com/t/b0FjYU2R and other categories like “ENTRETENIMENTO” , “FAMOSOS” and “ESPORTES” are not displaying the subcategories on MegaMenu – https://www.screencast.com/t/KKiGvdHlL . Please let me know how to make all Mega Menu displaying the subcategories.
Hi, I would like to translate the word ‘Page’ to Portuguese but I cant find the place to edit that particular word on all site pages. I’ve already install the Loco plugin and still this word is not been translated. How can a simply edit/translate this word ‘Page’ on the template – https://www.screencast.com/t/I5jkFcdOsk9
Hello everyone! TagDiv Composer Dont save Pages in Cloud Template. For example, I make changes on the main page, click save and only the footer and header are saved. And the content is not saved. I searched the forum, some had problems with protection plugins. And I don’t have any
The featured video thumbnail from a video post is not showing on our home page (http://lance.evangelvalormedia.com/), just a blank video box (the Sports Update post). The post itself shows fine and is set to “video” post format. The URL is pasted into the “featured video” field. I seem to not understand the notice about using it with only the post templates- default, post style 1, 2, etc. The only post template selections in the post settings window are “from panel” and “default”, neither of which work.
Thank you Anamaria, that is helpful. Last question, the Sidebar Template that has then been created in the video you sent, has then to be manually placed into each page I want it on as a sidebar? I have 100+ pages and would prefer not to have to do this manually on each page…
You should create a “Blog/Post page” on the Cloud Templates page, just like any homepage or single post template 🙂
Hi,
This is what i did !
But when i select this page from Settings/reading/posts page, the page is not mine, but a template i don’t understand where it comes from.
Is there anything to do with “Template setting/blog and posts template” ?
Because i read :
All the settings form this box apply for index.php – the default blog index (the page where all the posts are listed one after another)
The sidebar position and the default sidebar are also applied for the single templates (single.php)
Just a tip – when you set a sidebar position or another sidebar while editing a post, that one will overwrite the one you set here.
And i have no choice to select my own template.
Thanks again
Hi,
I want to create a posts page, like a blog for my actuality (it’s different from my homepage)
I created a specific page, but when i go to the WordPress main Settings/reading/posts page and i select the page i’ve made, it doesn’t take my page and impose me a different template (which one ? Where i can found it ?).
So i don’t how to do it, can you help me please ?
Thanks for your help, have a good day,
Aurélien
Hi, I am trying to integrate a Mailchimp signup form to my website through a modal popup.
Here’s what I did:
1. Created and published a page importing one of the templates from TagDiv library
2. Edit my homepage with TagDiv composer, go to an empty element and drag the Modal widget.
Now I am stuck — I cannot get the white space out. I want it displayed like a regular popup when I enter the page id without any white space or modal ‘Modal title’. Kindly check the screenshot for reference: https://ibb.co/4TmgjsV
Thank you.
Hello,
Please make sure that you have in the Search template set the Posts Loop or Flex Loop, if you have cpt.
Also, you can use this option to exclude the pages https://i.imgur.com/n3cZUsL.png
Thank you!
Hello,
I have rebuilt the Eastcoast Check template as a normal page. Now I’ve noticed that the search doesn’t show the posts in the order newest-oldest, but is jumbled up.
I have tried all the settings found here in the forum. How can I restore this? There doesn’t seem to be an option to exclude pages from the search either. Probably in the header search, but not in the normal search on the page.
Can you help me please?
HI,
I have several problems with Newspaper.
I start with this 404. Google search console finds me 350 404 pages. All of these pages have a 410 or 301 redirect which is written in the .htacess file. So these errors should not report Google. I contacted my hosting who did some tests and this is what they wrote to me: “The 404 code problem is due to how the CMS manages 404 pages, via the theme template. This ensures that the response header is reset to 404 despite inserted redirects. Should check if possible to disable it”.
So from the reply sent to me the problem is in the Newspaper theme.
Best regards,
Thanks, here is what my friend ChatGPT has allowed me to go through the code and update.
Though when you run it, it gives a white screen, you need to refresh the browser or open a new one.
/**
* Update post meta data for all posts of post type "post"
* with the "td_post_theme_settings" meta key.
* Specifically, if the post has a non-empty "td_post_template" setting,
* it is updated to "tdb_template_71018".
*/
function edit_template() {
// Define arguments for WP_Query
$args = array(
'post_type' => 'post',
'posts_per_page' => -1
);
// Create a new WP_Query object with the defined arguments
$the_query = new WP_Query( $args );
// Loop through each post in the query results
while( $the_query->have_posts() ) {
// Set up the post object and make it available to functions
$the_query->the_post();
global $post;
// Get the "td_post_theme_settings" meta data for the current post
$td_post_theme_settings = get_post_meta( $post->ID, 'td_post_theme_settings', true );
// If the post has a non-empty "td_post_template" setting,
// update it to "tdb_template_71018" and save the new value
if( !empty( $td_post_theme_settings['td_post_template'] ) ) {
$td_post_theme_settings['td_post_template'] = 'tdb_template_71018';
update_post_meta( $post->ID, 'td_post_theme_settings', $td_post_theme_settings );
}
}
// Reset the query and clean up after the loop
wp_reset_query();
}
// Call the function to execute the code
edit_template();
// Use "die" to ensure that no further code is executed after the function call
die;
Hello,
This DEMO doesn’t have made custom page templates, foe example, contact, but you can copy and paste style from one block to other.
Thank you!
Hello,
I changed my old theme with a new Magazine PRO theme.
The problem is that now the posts have the new design (fonts, etc.) but the normal pages have the previous design and the fonts does not change.
If I go to cloud templates I have templates for all the useful things (Single post templates, Category templates, etc.) but no Page templates. If I search for a page template on the Cloud Templates I can’t fine any Magazine PRO page templates.
How to have the same fonts and design for pages and for posts?
Thanks.
Hi,
Seems you have the Mobile theme plugin activated, and it is disabled for the homepage. When you install and activate the Mobile Theme plugin, your pages will be overwritten by the plugin (the mobile theme comes with its own templates for page, post, category, etc so your current templates from the desktop theme will get converted to the mobile theme layout, the page content is made without builders in mobile editor => https://www.screencast.com/t/xbgZG8kH also, the options that are provided to edit the mobile theme version are limited (this keeps the things simple)).
Better deactivate the plugin and see the results
Also, if you create a mobile page, please make sure you assign it like this https://www.screencast.com/t/lektAhyjd
This is a video about Responsive Newspaper Theme, AMP & Mobile Theme, Mobile Pages & Templates -> https://www.youtube.com/watch?v=SpGkOnJeNZY
Please check this topic where I explained each mobile version -> https://forum.tagdiv.com/topic/mobile-version-not-working-properly-2/ and choose what mobile version you want.
Thank you!
Hi,
This can be done by setting an individual header on those pages where you want it to be different (it can be set on page and cloud templates, for example on a category template). For this duplicate the cloud header -> https://i.imgur.com/lszYvTx.png then edit with the composer the page or the cloud template where you want the header to have a different style select the manager and assign the header -> https://i.imgur.com/DepvS1X.png
I hope this will help you!
Thank you!
Hi,
The tagDiv Composer is our page builder and it can be used for building pages and cloud templates, but not for creating posts. For this, you’ll need to use Gutenberg or a classic editor.
Using tagDiv Composer, you can build/edit the single post template (the layout of the posts).
Here is a video that will show you how to use the builder to create a website from scratch https://www.youtube.com/watch?v=SoGQ0d5kIBg to do this you’ll need to already have the posts.
Also, on our channel https://www.youtube.com/channel/UCOT1RiNysIPCTPSnVZskwtQ, you can find more videos that can help you and documentation https://forum.tagdiv.com/newspaper-theme-documentation/ and you can ask us here on the forum or email if you have any questions.
Also, if you want to have some blocks/elements on a certain post, then you can use a different single template for posts, you can duplicate the template -> https://forum.tagdiv.com/topic/different-logo-in-categorypage/
I hope this will help you!
Thank you!
Thank you for your answer, it’s working now!
But I also have a button below my article that still opens in the same page. I’ve tried to search inside your PHP file for the corresponding div class: “td-read-more,” but there is no such thing there.
Could you please show me where I can edit the behavior of this button? (It’s also inside the flex-block-1 module.)
Are there any tricks/possibilities to apply all these changes about the “open in new tab” link only for “Flex block 1” without impacting other flex block modules? Like using the extra-class field or other CSS options, or maybe another option by modifying this PHP file or inserting a JS script on the block template?
We have a multilingual website using the Newspaper theme and we are using WPML plugin for the translations. We found an issue today, the English version is working fine and has the design that we set, and the other versions of the website (french, german, Spanish …) have different style pages and it is not like the English version website templates.
How it is possible? We need the same templates to work on every version of the website.
Please find the attached screenshots from the below link.
What is causing this issue? we need to fix this ASAP.
Hello,
this is the code, I hope it helps you.
function edit_template(){
$args = array(
'post_type' => 'post',
'posts_per_page' => -1
);
$the_query = new WP_Query( $args );
while($the_query->have_posts()) {
$the_query->the_post();
global $post;
$td_post_theme_settings = get_post_meta($post->ID, 'td_post_theme_settings', true);
if( !empty($td_post_theme_settings['td_post_template'] ) ) {
$td_post_theme_settings['td_post_template'] = 'tdb_template_71018';
update_post_meta($post->ID, 'td_post_theme_settings', $td_post_theme_settings);
}
}
wp_reset_query();
}
edit_template();die;
This code must be set in functions.php and after you have set it, you can edit a post to see if the individual template has been reset, if so, then you can remove the code.
Thank you!
Hello,
I looked over the plugin documentation and it says here that you can disable the option on each image in the post – https://www.wptasty.com/knowledge-base/getting-started-with-tasty-pins. But in the pages, you can’t edit images as HTML in the page/cloud templates.
Thank you!