- NewspaperUser review system
- NewsmagReviews
- NewspaperReviews
- NewspaperCredit System
- NewspaperModules Builder in Newspaper Theme
- NewspaperHow to use the Posts List shortcode
- NewspaperModal Popup
- NewspaperLockers
- NewspaperLeads
- NewspaperFlex Block Settings Guide
- NewspaperSingle Post Shortcodes
- NewspaperDefault Category Settings
- NewspaperCloud Library – Category Templates
- NewspaperBig Grid Flex Settings
- NewspaperMeta Info on Modules and Blocks
- NewspapertagDiv Cloud Library Plugin
- NewspapertagDiv AMP Plugin Tutorial
- NewsmagtagDiv Composer Tutorial
- NewspapertagDiv Composer Tutorial
- TutorialsDefault Block Settings Guide
Hi,
I also tried that – https://www.screencast.com/t/q2emkvy4
Left a review – https://www.screencast.com/t/XOGl66mwMx
Product displays the review stars – https://www.screencast.com/t/Nr1rKHGQX1
So that is how it should be for you as well.
Hey Catalin,
thanks for your reply. Im AWARE that these are 2 different things. And as i wrote its working for me. The only thing i want from you guys is a php code snipped which i can put into my new page-template to show the author box + item scope meta tags on the page w that template.
I dont care if its not pefect codewise or if i cant use your backand funktions on that particular page-template that i have copy+pasted from the post-template-7. it looks as i want it on the front end and google can flawlessly read it – enough for me.
What i dont want is to build or check other templates whith editior … it would just take me hours to get a result thats allready there in your post-template-7.
<?php
/* Template Name: Page+Mainimage */
locate_template('includes/wp_booster/td_single_template_vars.php', true);
get_header();
global $loop_sidebar_position, $td_sidebar_position, $post;
$td_mod_single = new td_module_single($post);
$td_post_featured_image = td_util::get_featured_image_src($post->ID, 'full');
if (!empty($td_post_featured_image)) {
td_js_buffer::add_to_footer(
'jQuery(window).ready(function() {' . "\r\n" .
'(function(){' . "\r\n" .
'var td_backstr_item = new tdBackstr.item();' . "\r\n" .
'td_backstr_item.wrapper_image_jquery_obj = jQuery( "#td-full-screen-header-image" );' . "\r\n" .
'td_backstr_item.image_jquery_obj = td_backstr_item.wrapper_image_jquery_obj.find( \'img:first\' );' . "\r\n" .
'tdBackstr.add_item( td_backstr_item );' . "\r\n" .
"jQuery('.td-read-down a').click(function(event){" . "\r\n" .
"event.preventDefault();" . "\r\n" .
"var header_wrap = jQuery( '.td-full-screen-header-image-wrap:first' )" . "\r\n" .
"if ( 1 === header_wrap.length ) {" . "\r\n" .
"tdUtil.scrollToPosition(header_wrap.height() + header_wrap.offset().top, 1200);" . "\r\n" .
"}" . "\r\n" .
"});" . "\r\n" .
'})();' . "\r\n" .
'});'
);
}
?>
<article id="post-<?php echo $td_mod_single->post->ID;?>" class="<?php echo join(' ', get_post_class('td-post-template-7'));?> td-container-wrap" <?php echo $td_mod_single->get_item_scope();?>>
<div class="td-full-screen-header-image-wrap">
<div class="td-container td-post-header">
<div class="td-crumb-container"><?php echo td_page_generator::get_single_breadcrumbs($td_mod_single->title); ?></div>
<div class="td-post-header-holder">
<div class="td-parallax-header">
<header class="td-post-title">
<?php echo $td_mod_single->get_category(); ?>
<?php echo $td_mod_single->get_title();?>
<?php if (!empty($td_mod_single->td_post_theme_settings['td_subtitle'])) { ?>
<p class="td-post-sub-title"><?php echo $td_mod_single->td_post_theme_settings['td_subtitle']; ?></p>
<?php } ?>
<div class="td-module-meta-info">
<?php echo $td_mod_single->get_author();?>
<?php echo the_modified_date('j. F Y', '<div class="the-modified-date" itemprop="dateModified">Update: ','</div>'); ?>
<?php echo $td_mod_single->get_views();?>
<?php echo $td_mod_single->get_comments();?>
</div>
</header>
<div class="td-read-down"><i class="td-icon-read-down"></i></div>
</div>
</div>
</div>
<div id="td-full-screen-header-image" class="td-image-gradient-style7">
">
</div>
</div>
<div class="td-container">
<div class="td-pb-row">
<?php
//the default template
switch ($loop_sidebar_position) {
default:
?>
<div class="td-pb-span8 td-main-content" role="main">
<div class="td-ss-main-content">
<?php
locate_template('loop-single-7.php', true);
comments_template('', true);
?>
<footer>
<?php echo $td_mod_single->get_post_pagination();?>
<?php echo $td_mod_single->get_review();?>
<div class="td-post-source-tags">
<?php echo $td_mod_single->get_source_and_via();?>
<?php echo $td_mod_single->get_the_tags();?>
</div>
----------------------------------- this part does not get displayed :I ----------------------
<?php echo $td_mod_single->get_social_sharing_bottom();?>
<?php echo $td_mod_single->get_next_prev_posts();?>
<?php echo $td_mod_single->get_author_box();?>
<?php echo $td_mod_single->get_item_scope_meta();?>
----------------------------------- this part does not get displayed :I ----------------------
</footer>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar" role="complementary">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'sidebar_left':
?>
<div class="td-pb-span8 td-main-content <?php echo $td_sidebar_position; ?>-content" role="main">
<div class="td-ss-main-content">
<?php
locate_template('loop-single-7.php', true);
comments_template('', true);
?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar" role="complementary">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;
case 'no_sidebar':
?>
<div class="td-pb-span12 td-main-content" role="main">
<div class="td-ss-main-content">
<?php
locate_template('loop-single-7.php', true);
comments_template('', true);
?>
</div>
</div>
<?php
break;
}
?>
</div> <!-- /.td-pb-row -->
</div> <!-- /.td-container -->
</article> <!-- /.post -->
<?php
get_footer();
Hi,
rel=canonical tag is missing on categories, author and tag pages and their paginated URL’s.
Please let us know how to add them.
Author: https://www.techuntold.com/author/hitesh/
Category URL – https://www.techuntold.com/category/reviews/
Tag URL – https://www.techuntold.com/tag/best-apps/
Thanks!
Hi
I need a little advice if possible on how to move my idea for a hobbyist review website using the Newspaper theme.
I want to provide a facility to allow users to fill in a form with selectable options, make a brief comment if they wish and also upload a picture which will be displayed within the selected category. I also want to provide a score facility so the results of their efforts can be displayed site wide.
As it will be a kind of public blog I want to make sure users can easily upload a picture from their phone or tablet.
The displays I have seen with the Newspaper theme seem perfect for what I am trying to do. At the moment I am using Newspaper in localhost mode at home and don’t have a live site on the web at this time.
I’d appreciate any advice you can give to help me achieve things.
Many thanks
How can I remove the signal in the side when the Mega Menu is active?

I want Mega Menu active, but I dont want to see this signal.
Thank you.
Hello
I’ve enabled star rating reviews on Woocommerce but stars and reviews are not showing up both on product shop page and product page.
Hi,
From what I can see you use quite an old theme version (7.0). Consider updating the theme, using an almost 3 years old theme with the latest WordPress version or latest Woocommerce may cause problems.
In this page you can see the theme changelog over the years (bottom of the page)
– https://themeforest.net/item/newspaper/5489609
This is an update guide if you decide to do it, please make a full backup of the website before proceeding
– https://forum.tagdiv.com/how-to-update-the-theme-2/
Also review the updated theme requirements guide here
– https://forum.tagdiv.com/requirements-for-newspaper/
Thanks
That is not good theme behavior indeed. I tested with a different theme from thrivethemes.com WITH ALL PLUGINS ENABLED and didn’t have that issue. In the meantime I was able to resolve the issue and it was caused by the Newspaper theme. Would be great if you guys took responsibility next time and not try to blame it on me and the plugins I use. That is not good support behavior. That reminds me, I still have to write a review about Newspaper on Envato.
It works perfectly fine on Facebook and on Twitter, but LinkedIn failed to load the title and the preview of the link. LinkedIn visibility is really a major issue for me…
Hi cxihub,
In order to see post settings, please go in posts, make a new one ( or open an existent one ) and look in the right top corner , there you will see Screen Option, click to expand it and click on Post Settings if is not checked https://www.screencast.com/t/qRBw8slo after you do that scroll done the page until you see Post settings https://www.screencast.com/t/XBRtGlF6HGg there you get the General, the Smart List and Reviews
Hope this will help you.
Thank you for your understanding.
I’m testing AMP and can successfully preview an AMP page using the AMP test button, but what will the actual AMP URL be when it’s published?
You can use this post URL as an example: https://www.interestinganswers.com/animals/do-ants-have-hearts/
I have trouble with the mobile theme. When i create a menu for mobile devices the menu itself shows on my smartphone but when i click on an item it does not show posts. Only the menu-title (e.g. ‘sport’) does show. In the live-preview mode it looks fine. My site is http://www.lochemsnieuws.nl
I do not use the AMP-plugin.
Where do i go wrong.
Hello kerone,
Please ensure that you have correctly installed the latest version of the theme via FTP way, clear all the caches, purge CDN files, remove all of the untested plugins and check the results. If you will check our demo preview, you will see that our theme is fully responsive for each small devices. Most likely, the problem comes from your install. Also, if the problem is still there, you should make a new install to another sub-domain for testing and check the results.
NOTICE: Our theme is fully responsive!
Thank for your understanding!
Hi
Whenever I edit my posts and review it, post view counter counts every my view and it artificially increases the number on the posts. Is there any way that counts only one view per IP?
Thanks beforehand!
Rovshan
Hi,
The theme contains the required structured data, for reviews as well. The posts in which you create reviews will have the necessary structured data loaded
– https://www.screencast.com/t/VkGgEilRrOI
– https://forum.tagdiv.com/reviews-2/
If you need additional data maybe test with a plugin which has the capabilities and data you want to add.
Regarding feeds you could test the plugins you want, try with free plugins with possible. We have not tested any unfortunately, so I can’t recommend any particular plugin.
Thanks
Hello,
Search console shows in preview articles related to search word but when you click on all results gives no result.
Thank you,
Dan
Hello,
I had a menu associated with ‘Header menu (main).’ When i visited my site today, it disappeared and now reads ‘Click Here – To Select or Create a Menu.’
I did click that link, logged in to my admin panel, and re-selected the menu I wish to use.
I went back to view the site and still see the ‘Click Here – To Select or Create a Menu.’ — I have tried saving several times and even used the ‘Manage with Live preview’ option.
Can someone please help? Thank you.
Hello,
I would like to ask you if need to use different plugin for rich snippets or can use in article option Starts Review?
Have use in my article Stars review but how can someone use these stars, is there any option to enable?
About the google feed http://prntscr.com/kxdfoa is there any plugin that you recommend me?
Thank you
Is it possible to put Review before Ads in Post?
http://take.ms/MNWvN
Hello,
Sure. Please read this guide: https://forum.tagdiv.com/reviews-2/
The theme offers a review system but it is not a user submitted review. It is a review the post author makes, not submitting content to be reviewed by the audience.
Thank you!
Hello,
The preview seems to work but when I try to add /amp to the URL like in your Video it is showing not the amp version?
Here is the link from my example https://www.travelgourmets.com/hotel-cala-ratjada-strand-urlaub-mein-reisebericht/
You can take a look at my screenshot as well
https://www.travelgourmets.com/wp-content/uploads/2018/09/amp.png
Hi charli_vk,
When you use amp on mobile ( example: search for something on google from mobile, if the page that appear in results is build whit/for amp, you will get a preview of page with out background color, menu, search, and if you click on it you will be redirected on that page) you can read more about amp here https://www.searchenginejournal.com/difference-accelerated-mobile-pages-amp-mobile-friendly-pages/172967/
Thank you for your understanding.
Hello… While purchasing this theme I cam across that you have review system… can you show me demo how review system works and how I can add it.
Please reply
Hi,
If you refer to something like this http://preview.codecanyon.net/item/wordpress-automatic-plugin/full_screen_preview/1904470?_ga=2.158722682.1526625271.1537429787-1933785142.1537429787 then yes, our theme have global and individual header and footer style and template .
You can take a look at this documentation : https://forum.tagdiv.com/footer-templates/
Also you can get or create a template from cloud template https://www.screencast.com/t/gycG1N5fl
Thank you.
When I add an image in the top of a post establishing a custom size, it shows just fine in the editor as long as its alignment is “centered” or “none”. As soon as it’s aligned to left or right, it shrinks in the editor. As a matter of fact, ALL my previoues posts shows the same problem as well (it’s not just the new added images).
However, all the images are shown properly (with the indicated custom size) in preview mode or published.
By the way: I want to show you some screen captures, but when I press img an http address is asked. Where can I put them?