- 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
Really liking the review-functionality. However it would in many cases be neat to be able to set only the total score without having to use the broken down scores (that you ad).
As of right now at least one of the part-scores need to be added to display the review-table.
Is there a way to only set an overall score with the text box (summary) next to it? Without any smaller/broken down scores.
Excelente, great to hear from you Bogdan.
I have cleared the cache and reviewed my site through several browsers.
The issue no longer occurs
(Resolved)
Thanks a lot!
Hi,
The revolution slider is provided bundled with the theme in the plugins folder – https://forum.tagdiv.com/whats-included/ and works great with the theme. You can install the slider like this – https://forum.tagdiv.com/how-to-install-revolution-slider-v5/ then import a demo slider using this guide – https://forum.tagdiv.com/import-revolution-sliders-on-demos/ The demo sliders are located in the main theme package – https://www.screencast.com/t/IaXXosUgoS6 You can preview them live in the corresponding demos – https://demo.tagdiv.com/newspaper_blog_cars/
Thanks
Hello antonmh,
As you can see, our demo preview uses the Header Style 1 and also, it does not have any background image set it. Please keep in mind that if you will set a background on your website, the theme will be automatically switched to the boxed mode and the header and footer section will not be in full width.
Thanks for your understanding!
Hello,
Sorry but our theme does not have this functionality. The posts and categories do not have a dynamic functionality for them to detect anything from one another. Maybe you can find a plugin that can do this but our reviews are custom made and there is a slim chance a plugin can tie into the code. You will probably have to hire a developer to create this functionality.
Thank you!
Hey,
I’m just wondering, is there any possibility to pre-set the categories for the reviews?
Best Max
Hi,
The theme uses the default wordpress roles and capabilities – https://codex.wordpress.org/Roles_and_Capabilities According to those only an author has the privilege and access to those settings (post settings) – https://www.screencast.com/t/u66cnJEs and the contributor has the capability to create a post and submit it to review. If you would like the contributors to have the capability to access all the post settings you will have to modify this here – https://www.screencast.com/t/Cgtq1mFf but I can not think of a way to make only the reviews available to them.
Thanks
Now… one more thing.
I strugled a little to add the Facebook Comments Moderation Tool.
Although he Facebook Developer guide for comments it’s sufficient and easy to follow it can be a litle tricky and can mislead your perception that moderation is not working. Here is hw I fixed to add Moderation Tool to my Facebook Comments Plugin. Here it is the documentation from facebook: https://developers.facebook.com/docs/plugins/comments/#moderation
First of all, you have to be in a point where you already see Facebook comments plugin on your page(s), okay? Only after you fix this is the time to step forward to add moderation on it.
1 – You have to make sure you Facebook App you’ve just created for your comments it is well setup. To make sure, go to you App Panel (https://developers.facebook.com/apps) open your app and make sure that a) it’s live/public under APP REVIEW section (right menu) and then that your configuration for your app is complete under Configuration (or Settings depending of your language). In this configuration section you have to make sure you have added a plataform for website / site. To add that you just click in Add new Plataform on the bottom of the page and select the option SITE. In the field that will open you put your URL for your blog for example: http://nicedomainname.com/blog. After you’ve done this you go to field up above named App Domains and inform the main domain name which is this case would be: nicedomainname.com and then you save your configurations. This all you have to do in your app before proceed.
2 – Then, you go to the moderation tool and do a little tunning on it. To access Facebook’s moderation tool you can use this link: https://developers.facebook.com/tools/comments. Make sure you select the app your are working on from the drop-box. Then you just need to click on Configuration (or Settings depending of your language) and do some adjustments on the options it shows. Observe that this is where you say to Facebook to mirror all comments from your blog from/to one of your FB’s pages (this option only works from the time you activate this and cannot be deactivated for a page after it is done, so choose it carefully although it is a nice feature). And for the last make sure you add all moderators under the moderators tab including yourself. (Note that you have to be friend of the person you want to add as moderator). You can explore all other options but basically in this area that’s all you need.
3 – Then you will need a little of programming again. But it is just a little. All you have to do is to add this litte piece of code within your <head> tag in your header.php file: <meta property=”fb:app_id” content=”YOUR APP ID” /> …. more specifically add this under this line <meta charset=”<?php bloginfo( ‘charset’ );?>” />. In the end your header could look like this (I’m using Newspaper so pay attention for any different. However the end result should looks similar):
<head>
<title><?php wp_title(‘|’, true, ‘right’); ?></title>
<meta charset=”<?php bloginfo( ‘charset’ );?>” />
<meta property=”fb:app_id” content=”YOUR APP ID” />
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
<?php
wp_head(); /** we hook up in wp_booster @see td_wp_booster_functions::hook_wp_head */
?>
</head>
4 – Update your site, purge all caches and wait Facebook scrap recycling identify all changes which can take hours or days. And this is where I can say can be tricky and misleading. Because all you need to do are within the 3 steps above. However, if you try to immediatly see the moderation tool gets activated that will not attend your expectations because facebook is slow to identify all changes. BUT, and this is a nice thing, you can FORCE facebook to extract your pages and identify the brand new tag you’ve just inserted on your header.
All you need to do is to go to debug page and force this. The link is this: https://developers.facebook.com/tools/debug/sharing. Paste your URL with the facebook plugin and check if facebook can read your app id. In most cases the last time facebook extrated your page could be days before. Than you have this button “Extract again” that will force Facebook system to read again your page. Check if now your metatags are correct and if you app id shows up in fb:app_id field. If it shows up you can now reload your page and see the option “Moderation Tool” in the Comment box: Like this https://scontent-gru2-1.xx.fbcdn.net/v/t39.2365-6/12448449_1702676243339764_782736789_n.png?oh=15556d00a727244cb75e95a9033048ad&oe=592F427A . If you don see anything yet or your App Id is not showing up after you have added to your header, check if you have paste the code correctly, if your App ID is correct, if your App is Public already or if you have updated your site (update a page for example) and if you have purged all caches. It has to be quite straight forward to implement this.
If you’ve done all right you will start seeing comments getting to be reviewed or in “public” area of Facebook moderation tool.
Hi,
I am encountering an issue with Homepage latest article preview problem; the content excerpt length is acceptably long which too long to display the whole article. I have adhered a screenshot for the detail of the problem https://www.screencast.com/t/IZ9oPWPxqpA ,as you can see it seems like the content length is unadjustable with the Chinese character, while the English do not reappear these problems.
I have tried to change or add a new module according to API documentation with the ‘excerpt_content’ parameter in “td_config.php” to whatever value is, but it does not make any changes to the content of Chinese. I have also attached the code screenshot here https://www.screencast.com/t/wk52Xbu5m
Is there anyway to solve this problem? appreciate you answer.
Hello,
I’d like to allow the users publishing on my website with contributor role access to the Review tab/functionality.
Is there a hook or a snippet I could add to the functions to enable this?
Hello Catalin!
Thanks for the help!
Stayed last question, 4:
>Widget [tagDiv] Blok 9. How to: Add Post Preview ? and remove post category?
>screenshot: https://screenpresso.com/=nRdO
My site: http://proformu.club
Hi there,
I’ve an issue on my website, when i go through my menu, it displays blanck area or a preview of the page, but i want to disable it. Can you help me.
Many thanks.
I’m using Post Masonry grid with data source page (see here my new site) and I don’t text preview: I want only title and image in the preview. How can I do it? Please help me
i am using post grid on my homepage. It is visible in Preview mode but can’t see it on live.
I use W3 Total Cache too,it is not even working after deactivating Cache plugin.
Site: http://www.ourbiratnagar.net
Screenshots:
1. Preview mode: https://drive.google.com/open?id=0B1bLZE2PBPUFblpEV0VScHR5czQ
2. Live mode: https://drive.google.com/open?id=0B1bLZE2PBPUFTmZyTl9TcnVGR1U
Hi Guys,
We, YOU, have a problem.
I have browsed a wee bit in the forum but after 3 all complaining that their AdSense ads weren’t showing I thought I’d just right in with what I have learnt tonight.
I got a message from Google:
Beginning in January 2017, Chrome (version 56 and later) will mark pages that collect passwords or credit card details as “Not Secure” unless the pages are served over HTTPS.
The following URLs include input fields for passwords or credit card details that will trigger the new Chrome warning. Review these examples to see where these warnings will appear, and so you can take action to help protect users’ data. The list is not exhaustive.
While I don’t even have a contact us form on my site and the only login is the WP admin I was puzzled. It turns out that what Google are picking up is the word(s) “Password” in the page source code. They make the assumption, and rightly so, that if the source code has the word password many times then a password is expected to be entered at some point.
I just did a search on your demo page: view-source:https://demo.tagdiv.com/newspaper_magazine/ and Password show 13 – THIRTEEN times.
This might be why, or it might not, Adsense ads aren’t showing for some users. (Although, I suspect many of them have new AdSense accounts and are too impatient…)
For me, I have never had an issue with the adverts showing, they always have. BUT the site is being penalised because “Password” is in the source code. And part of the reason for the site is advert revenue. Therefore, I respectfully ask that you investigate a remedy A.S.A.P.
Hello!
Website http://proformu.club
1.
In some sections of the main menu of many items.
These items are arranged vertically. And do not fit on the first screen.
Is it possible to place the items horizontally, which they placed on the first screen? ..
Screenshot: https://screenpresso.com/=JOqfe
2.
When I can change “read more” button background color?
And change «Post Comment» button background color?
3.
Where to edit block Latest Articles (Visual Composer)?
4.
Widget [tagDiv] Blok 9. How to: Add Post Preview ? and remove post category?
Thank you.
Hello benlauwork,
I have checked this post from our demo preview -> https://www.screencast.com/t/ZrVMA20P3Sj which has Featured Video set up and the Google Structure Data Official Testing Tools does not encounter any errors regarding on Video Markup from our theme, as you can see here -> https://www.screencast.com/t/jYATWlxk Do you have checked your post with this tool? Please test your website with this official tool and make some useful screenshots to explain where is the problem. Try this -> https://search.google.com/structured-data/testing-tool Please keep in mind that our theme uses all the required markup from Structure Data which is included in the theme core files. Since there is no error, it means that it is okay!
Thanks for your understanding!
Hello,
If you do not have a sub-rating, you can try to use this code in the theme panel-> custom css box:
.td-review-row-stars, .td-review-header{
display:none!important;
}
and then you can translate the ‘summary’ title that is left to maybe: ‘review’ from the theme panel-> translation section https://www.screencast.com/t/JLSGi3NK4xbc and it will display like so: https://www.screencast.com/t/O51OVkHISL8
I hope this helps.
Thank you!
Hey guys,
I’m blogging about games and it’s really helpful that Newsmag supports game reviews with a rating feature. However, as it stands right now, it is necessary to provide two or more ratings for sub-categories which the theme uses to automatically calculate an overall score. I only need the overal score, no sub-categories. Is this in any way achievable right now and if not, would you consider implementing this in on of the next updates? I can’t imagine that I’m the only blogger who’s in need of this.
Many thanks in advance, Manfred
Here is what I’ve put into the SIDEBAR AD block:
<div class=”td-all-devices”> First href is to the .png image, second is to the website I want it to go to.
Do you/can you see anything wrong with the way I’ve entered that, Chris?
Hello bigredfro,
Please notice that Scandal Magazine demo uses the header style 10 and the logo are displayed on full width. If you want to have a bigger logo, you should load a bigger logo by default because the theme does not enlarge it. For more information about our header templates, please consult our documentation here -> https://forum.tagdiv.com/newsmag-header-styles/ Please check the following screen here -> https://www.screencast.com/t/I8J7WTsz0V This is from our demo preview.
Thanks for your understanding!
Hello,
well, every single image is being downloaded to my server while importing posts to my site and it’s definitely present in the media library. If I manually switch on the Modal Image and just change from “link to – none” to “link to – Image URL” it works just fine. I think it’s not working even if I upload an image to the media library and attach it to a post manually anyway.
I was thinking if I should create a separated topic or just to ask you here. It’s something what’s actually related to the post feeding on my website so I’ll ask you here anyway as we already started this discussion.
Please let me know if it’s better to compose new separate topic in such case.
It’s about the post source name and the post source URL. I currently use these available fields in post settings to display the article’s source name including the URL but I have to do it manually each time I am editing the post which can be kind of time consuming. I am trying to get those fields filled in automatically with correct data because what I am trying to achieve here is to auto publish imported posts as soon as they are being downloaded to my site.
At the moment, all the posts that are being imported to my site must have the pending review or draft status in order to edit them before I can actually publish them with the correct source name and URL, however, that way I am loosing the date and time from the feed which is being imported and also my precious time which could be used elsewhere.
I know this is not the Newspaper’s Theme issue but I would appreciate any kind of hint or suggestion from you.
Thank you in advance
Hello,
on my site (http://preview.anywhere.cz/fishinglive/www) when I look at the mobile theme everything is as it should be, meaning that there are three featured articles and when I go to next (second) page there are no featured articles at the beginning.
If I go to a certain category (http://preview.anywhere.cz/fishinglive/www/category/clanky/) I get those top 3 featured images on top of every page.
How do I prevent this?
Thank you.
Hi,
Is there someway I can check that the theme updated correctly? After updating I ran the PHP compatibility checker and get incompatibility errors for visual composer and slider revolution. Here’s the notes for Visual Composer:
FILE: /nas/content/live/travel2next/wp-content/plugins/js_composer/include/templates/editors/partials/backend-shortcodes-templates.tpl.php
————————————————————————————————————————————————–
FOUND 0 ERRORS AND 3 WARNINGS AFFECTING 3 LINES
————————————————————————————————————————————————–
44 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%= type %>”>
45 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%= heading %></div>
47 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%= form_element %>
————————————————————————————————————————————————–
FILE: /nas/content/live/travel2next/wp-content/plugins/js_composer/include/templates/editors/popups/shared-templates/category.tpl.php
————————————————————————————————————————————————————-
FOUND 0 ERRORS AND 12 WARNINGS AFFECTING 12 LINES
————————————————————————————————————————————————————-
134 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- post_id %>”
135 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- title %>”
141 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- title %></button>
149 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- post_id %>"]” titl…
160 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- id %>”>
162 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- thumbnailUrl %>” alt=””…
165 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- previewUrl %>” data-tit…
167 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <% if (!downloaded) { %>
171 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <% } else if (downloaded &&…
175 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <% } %>
180 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%- title %></span>
182 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%= status %>
————————————————————————————————————————————————————-
FILE: /nas/content/live/travel2next/wp-content/plugins/js_composer/include/templates/teaser.html.php
————————————————————————————————————————————————————
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
————————————————————————————————————————————————————
84 | WARNING | Possible use of ASP style opening tags detected. ASP style opening tags have been removed in PHP 7.0. Found: <%= id %>” src=”<%= url %>”…
————————————————————————————————————————————————————
FILE: /nas/content/live/travel2next/wp-content/plugins/js_composer/js_composer.php
———————————————————————————-
FOUND 1 ERROR AFFECTING 1 LINE
———————————————————————————-
220 | ERROR | Visibility for magic method __sleep must be public. Found: private
———————————————————————————-
Slider revolution:
FILE: /nas/content/live/travel2next/wp-content/plugins/revslider/includes/slider.class.php
————————————————————————————————————————–
FOUND 1 ERROR AFFECTING 1 LINE
————————————————————————————————————————–
2231 | ERROR | ‘clone’ is a reserved keyword introduced in PHP version 5.0 and cannot be invoked as a function (T_CLONE)
————————————————————————————————————————–
FILE: /nas/content/live/travel2next/wp-content/plugins/revslider/includes/output.class.php
————————————————————————————————————————-
FOUND 1 ERROR AFFECTING 1 LINE
————————————————————————————————————————-
436 | ERROR | ‘clone’ is a reserved keyword introduced in PHP version 5.0 and cannot be invoked as a function (T_CLONE)
————————————————————————————————————————-
