- NewspapertagDiv AMP Plugin Tutorial
- ApiPractical example – How to add a new Block and Module
- NewspaperTrack Subscription Sources with Locker URL in Opt-In Builder
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperCredit System
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperHow to use the Posts List shortcode
- NewspaperUser review system
- NewspaperCustom Fields Support
- NewspaperHow to generate Facebook App ID
- NewspaperHow to insert a block inside the content of a post
- NewspaperModal Popup
- NewspaperPayPal Setup
- NewspaperLink Tracker
- NewspaperLockers
- NewspaperGeneral Options that May Interfere with the Newspaper Theme
- NewspaperAdd Cryptocurrency Price Ticker Widget
- NewspaperPosts Loop Element
- NewspaperThe Newspaper Mobile Theme: Introduction
Hello,
By custom conditions, Catalin meant custom code. The theme does not have such a functionality. Conditionals in code means an ‘if / else’ statement for example if you know your way around coding. If not, you can most likely find plugin that can provide the needed functionality.
Thank you!
Hi,
Please provide an example of your testing and all the necessary details, we will investigate if there is a problem.
Thanks
Hi, I am using Newspaper theme.
I noticed that all images I added to the post are automatically being resized to full size, which I don’t want.
I want it to remain the same size when uploading.
Example:
This is the original image size I uploaded
https://reviewplan.com/wp-content/uploads/2016/06/siteground-coupon.jpg
and I can view from the source code:
img src="https://reviewplan-lvzm5mr0z.stackpathdns.com/wp-content/uploads/2016/06/siteground-coupon.jpg" alt="SiteGround Coupon" width="252" height="154" /><figcaption class="wp-caption-text">SiteGround Coupon<
The image size is 252 x 154 px
However, when I open it in the browser, it is auto resize to the full size and cause the image to become blur.
https://www.reviewplan.com/siteground-reviews-wordpress-hosting-customer-support/
I want the image to stay in the original size, do not auto resize to the full size.
Is there any setting which can I disable this auto resize image in full?
How could I make my image display in original size?
Thank you.
Best Regards,
Little trickier with the ‘categories’ due to
a) being in sub folder for the header element so it can be changed by different style/layouts, and
b) funky if/then on the category description makes it hard to do that properly.
For example on my copy of Newsmag, the actual piece is in /parts/page-category-header.php
and this bit is tough to modify unless you play with it
<header>
<h1 class="entry-title td-page-title">
<span><?php echo $cur_cat_obj->name ?> <?php if ( $paged < 2 ) { } else { echo (' - Page '); echo ($paged);}?></span>
</h1>
</header>
<?php
//breadcrumb
echo td_page_generator::get_category_breadcrumbs($cur_cat_obj);
//the category description
if (!empty($cur_cat_obj->description)) {
echo '<div class="td-category-description">';
echo $cur_cat_obj->description;
echo '</div>';
}
?>
Generally you can’t use a commercial theme for AMP pages without major re-construction.
Much simpler to use the Automattic AMP plugin then modify the default template.
The AMP format is about speed on a phone and not ‘presentational’ elements as on desktop.
( I don’t work here; but using AMP for 2 years )
Hi,
There is a button in the theme system status, that would be used in case you want to intentionally reset the theme activation (changing domains for example)
– https://www.screencast.com/t/btzc7l24
Other then that there would be no other similar button in the theme.
Thanks
Hi!
Is it possible to share self-translated phrases from the theme to another site, which is part of a WordPress-Multisite?
phpMyAdmin would be great.
I’ve already shared a translation, but when I’ll update the translation from MultiSite #3 or #4 (for example), it will download only the not correct and incomplete translation.
What are the possibilities to get the translations to all sites?
Best regards
Hello.
For the desktop version of my website, I use the Newspaper theme.
I would like to use the Newspaper theme for AMP pages as well.
How could I accomplish it?
In the “themes selection” of my AMP plugin I can’t see “Newspaper”
Thank you in advance for your help!
Btw, I use AMP for WP plugin (0.9.72)
Hi support
We’ve several pages with your newspaper theme. One of them with NP8.6 is not able to play videos as featured video. If we post standard youtube-videos inside the content-area of a post, everything is ok. But the featured video (same youtube-video) ist just showing, but not possible to click the play-button.
Example here: http://prime-snowboarding.de/testing-video-embed-as-featured-pid23469/
System: current WP-version
Do you have an idea?
Thanks and best
Daryl
It’s bad I would say. Each link internal or external dilutes the power of links on the page. Even menu and footer links count.
So double the number of menu bar links, decreases the power of the other links on the page.
So loading in 60 nav bar links rather than 30 will have a serious impact from an SEO perspective.
You could just use PHP (server side) to detect the operating system being used and then not bother to load in the mobile menu. Same the other way round.
This is how other themes do it like Rehub for example.
This has come to light as I am using your theme in a niche and it’s proving difficult to rank because of how diluted the silo structure is.
My only conclusion compared to other sites I have built, is how the dev team on this theme have coded the nav bar.
Your theme is fast and great to work with, but the menu bar needs a rethink and to be honest, your theme would be even faster not loading in unnecessary code.
It’s serious enough for me to consider using another theme as I am fastly coming to the conclusion after 18 months, a change of theme would result in better organic results for us.
Sorry Simion, I didn’t find the right words.
Example: I use some helpful links in the “top-menu” like ‘classified’ or ‘video’ etc.
These links I need also in the mobile-style, but at the moment I only see categories there.
regards
Mic
Hi,
Upload them for example in a free image hosting provider and post the link here in the topic.
Thanks
Hi,
Thank you for your appreciation. Please do not hesitate to contact us if you have any questions or need help with something.
1. It seems the previous theme has a narrower post content width. The width in the Newspaper theme for the post content is 696px with a sidebar, with no sidebar it will use the full available width of the theme.
The post content general width cannot be changed by a setting, it is fixed and predefined in the theme.
Narrower post content could be achieved using the padding option
– https://www.screencast.com/t/xRg7co5liyD
But this would require you to set it for each post individually. I could give you a code solution, something like this example
– https://www.screencast.com/t/lhUVABqBUlzl
This could be a solution if you absolutely need to reduce the post content width, it will apply to all posts at once. This is the code used in the example, it will produce similar width as the other theme
.td-post-content {
padding-left:8.5%;
padding-right:8.5%;
}
Enter it in Advanced CSS if you want it to affect desktop only.
2. It seems the image is not aligned center. A solution would be setting a custom class to the div like this example
– https://www.screencast.com/t/h97F9Q1t
Then use a code like this (custom code can be entered in Theme panel->Custom CSS section)
– https://www.screencast.com/t/54aKKuy5
.myclass img {
margin:auto;
}
You don’t have to pay for anything, we will try to help you as best we can with theme options or by case with simple solutions.
Thank you!
Hi! Is it possible to make menu with icons as in the example – https://yadi.sk/i/auGPaDwu3RZfDw?
Hi,
when I add a text into the category description the theme does not read any breakline, and all the phrases are in the same paragraph.
Great, works now.
thanks for your help & patience
Hi,
You could begin locally on a sub-domain for example, install the theme activate it, then set and configure everything as needed. The theme activation can be reset in the theme system status.
These would be some general advice when changing themes
– http://www.wpbeginner.com/beginners-guide/checklist-15-things-you-must-do-before-changing-wordpress-themes/
Maybe some other users can share their experience in the matter.
Thanks
Can you please give us an example on analyzing our frontpage so we can verify that we will do the task the same way?
-
This reply was modified 8 years by
Simion C..
Hi,
You would need to know the elements you are using on pages. You can see which modules each block and grid contains here for example
– https://forum.tagdiv.com/theme-blocks-modules/
Based on this disable thumbnails for unused modules, in the theme panel. Then the theme will not create unnecessary thumbnail sizes
– https://forum.tagdiv.com/theme-thumbs/
Thanks
Hello,
I am looking for this option and I do not know how to solve it, can it be modified in the theme or do you recommend a plugin? Or anyone who can program it if it has to be, make me a proposal. 🙂
I need to convert the Newspaper in a living book:
Table of Contents Index = Book, Chapters, Posts
Book = Each year, so 2018 is Book 1 (title like Chronicles of ….)
Chapter = Each Month, so Chapter one is the Month January (add a title …. Chapter One The …. Adventure)
Sub chapters / storyline = Each day + time to define the chronology of the happenings (Title: Header of that story)
Navigation : readers can go in the index / table of contents to navigate to a story by clicking on it
Navigation on posts: go to the next post or last post, or enter post number
Who can help me with a solution?
Thanks 🙂
Hi there,
I need ‘header-menu’ & ‘top-menu’ as selection in my mobile-style. Can someone give me an advice?
Thanks, Michael
Hi, I wanted to integrate Facebook Analytics to my WordPress website but there is a problem. The Facebook Analytics requires to upload the JavaScript to every page that I want to use analytics for, and it should be placed in the <body> tag of that page. Now how can I access code for each page I have created my self, like “contact” page for example. I can’t seem to find that in Appearance–Editor.
Here is the screenshot of Facebook Requirement.

Hey, just a questions.
How i can change height size of the post picture ( Template post style 7) maybe to 300px.
For example:
example
Thanks a lot
Tha
Hello Marie,
You should use the Default Demo install with or without content if you have your own content and then, you should inspect this example with Inspector browse to see what kind of blocks are used in it. Please check our useful tutorial from here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Hope this helps!
Thanks for your understanding!
Hi,
1. Please provide a link to your website so we can inspect the issue with the spacing. Use the browser inspector to try and identify where the space is coming from
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
2. This is unusual, I have not seen this before. SO on the website there are currently 2 footer sections. That would suggest the theme is not working as it should or has not been installed properly. Or maybe if you made modifications to the theme files.
3. The tagDiv composer does not have woocommerce elements. It will render however woocommerce shortcodes added in text elements for example
– https://docs.woocommerce.com/document/woocommerce-shortcodes/
– https://www.screencast.com/t/wgwbT4aD9HiZ
– https://www.screencast.com/t/QLEEfpppEu
4. I don’t quite understand what you are entering in the footer (if that is the footer) and how exactly you are viewing the footer in the backend.
Please provide more specific details so I can be able to maybe recreate the issues, or links to where this is happening so we can inspect them.
Thanks