No search results were found in Documentation!
Hello,
We are not aware of any such issues either with large amounts of data or small amounts. Please check if you have the correct requirements for newspaper set:
https://forum.tagdiv.com/requirements-for-newspaper/ and please follow this guide to increase the system status parameters: https://forum.tagdiv.com/system-status-parameters-guide/
Thank you!
Hello,
You will have to increase the post max size as well: http://screencast.com/t/3WsPqxRz0jB
Please follow this guide to increase all the parameters needed for the theme: https://forum.tagdiv.com/system-status-parameters-guide/
Also please check if you meet the requirements for newspaper: https://forum.tagdiv.com/requirements-for-newspaper/
Thank you!
Hello,
You can also check if you meet the newspaper requirements:
https://forum.tagdiv.com/requirements-for-newspaper/
And check your system status parameters and increase them like this guide suggests: https://forum.tagdiv.com/system-status-parameters-guide/
I hope this helps.
Thanks.
Hello,
It seems you have a problem with the theme settings. Please check your system status parameters here: http://screencast.com/t/hyYmVOyi and make sure you increase them using this guide: https://forum.tagdiv.com/system-status-parameters-guide/
Also please check with your hostin provider to see if you meet the system requirements for the theme: https://forum.tagdiv.com/requirements-for-newspaper/
As for the import, you can find a few solutions online for it: http://torquemag.io/2015/01/how-to-use-phpmyadmin-wordpress-database/
Please let us know if you still have problems afterwards.
Thank you!
Hello,
There is no such limit, but there is an explanation why this occurs with our theme. It has to do with your server configuration. Please follow this topic to see how you can have as many items as you want in your menu:
https://forum.tagdiv.com/topic/menus-limit/
Please check the system status as well and the requirements for newspaper: https://forum.tagdiv.com/requirements-for-newspaper/
Thank you!
Hi
The theme code was tested and optimized for best performance, we have a lot of clients and the theme works well on a large variety of hosts.
First please make sure that you use the recommended server configuration for Newspaper theme, you can check our documentation for more details: https://forum.tagdiv.com/newsmag-requirements-for-newsmag/
There are lots of factors that influence the site’s page-sped. I suggest you first try this without any other plugins active, leave just VC plugin active the check again. To improve the loading speed look the mysql query cache: http://dev.mysql.com/doc/refman/5.1/en/query-cache.html we also use it on our demo.
Also you can use the speed booster to move the js and css at the bottom of the page, eliminate render-blocking, but not for all plugins. Check the System Status if the speed booster is active if you use other plugins than the tested ones. You can find some useful information regrading speed booster usage in this topic: https://forum.tagdiv.com/topic/speed-booster-questions/
Also you can read this guide, it may help – https://forum.tagdiv.com/how-to-make-the-site-faster/
Hope this help.
Thanks!
Hello,
For the first request, the first topic still applies.
For your second request please check your system status parameters and increase them accordingly: https://forum.tagdiv.com/system-status-parameters-guide/
Also please check if you meet the system requirements for newspaper: https://forum.tagdiv.com/requirements-for-newspaper/
Thank you!
Hi,
The theme has some server requirements as it is specified in our documentation – https://forum.tagdiv.com/requirements-for-newspaper/ please to increase php memory and the other parameters like it is specified in this guide – https://forum.tagdiv.com/system-status-parameters-guide/ and also please follow the pagespeed optimization guide – https://forum.tagdiv.com/how-to-make-the-site-faster/
Lately the Visual Composer plugin was optimized a lot regarding the performance and security and recently we did not received any reports about this, also our theme is optimized to work with Visual Composer plugin.
You can also try to reduce the number of ajax using elements on page (mega menus, ajax pagination/load more/infinite load). Also reduce the number of blocks on your main page and enable only the plugins that you need to use.
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].
Jetpack, which is in your supported plugins list, contains “infinite scroll”, functioinality.
However this functionality requires a theme that can support the jetpack’s infinite scroll feature.
Do you plan to make the moderations needed, so one can use the JETPACK’s infinite scroll feature on that template – or can provide some code alteration so it meets Jetpack’s requirements for this functionality? I think such a nice template should at least comply with jetpack on that, since the template doesn’t provide this functionality out of the box.
Its a 3rd party “VERY USEFULL” functionality – especially on a news driven template.
http://jetpack.me/support/infinite-scroll/
I think it has to be some alteration on the template to support it. Its nothing to build from scratch since its provided by Jetpack, but I think the template should be ready to use this functionality if a user wants to.
#90531
Thank you Bogdan for your reply.
It looks like that I have mot mentioned my requirements clearly.
What you have replied is helpful but partial.
F LIKE T FOLLOW G+ FOLLOW I FOLLOW (in a row)
where F T G+ I are respective icons, as you have suggested above in your solution.
In case, I want only 3 of them: F LIKE T FOLLOW G+ FOLLOW (in a row) and don’t want Instagram at all at the Social Counter.
Also, can I put all of these
F LIKE T FOLLOW G+ FOLLOW I FOLLOW (in a row)
in the Footer too
Thanks in advance.
Best Regards.
Hello there, i wanted to show on a block the most popular posts among the posts of last 7 days.
Let me be more clear: Not posts-of-any-time that gain the most popularity the last 7 days.
I wanted posts-of-last-7-days that gain the most popularity.
So i implemented the “Popular among posts of last 7 days” sorting method. It took me 5 years in isolation, a team of nuclear physicists and billions of dollars to do it. And i give it now for free. How kind!
IMPORTANT REQUIREMENTS: ***YOU*** NEED TO KNOW PHP PROGRAMMING TO DO THIS. LINE NUMBERS OF CODE PROVIDED BELOW ARE NOT EXACT, THEY ARE JUST TO GIVE YOU A HINT WHERE TO LOOK AT, BECAUSE I DON’T KNOW WHAT VERSION ARE THESE FILES SO LINE NUMBERS MAY BE DIFFERENT AMONG DIFFERENT VERSIONS. SO DONT BLINDLY COPY PASTE THIS STUFF ON THAT LINES.
ONE MORE TIME WARNING: be carefull, you are messing with php code here, if anything goes wrong, i have nothing to do with it, this comes with no warranty at all do it at your own risk and its NOT OFFICIALLY SUPPORTED I DONT WORK FOR TAGDIV.
So:
ADD this case in the switch of Newspaper/includes/wp_booster/td_data_source.php its somewhere near (not exactly) 140-something line
Add:
case 'popular_of_latest':
$wp_query_args['meta_key'] = td_page_views::$post_view_counter_key;
$wp_query_args['orderby'] = 'meta_value_num';
$wp_query_args['order'] = 'DESC';
$wp_query_args['date_query'] = array(
'column' => 'post_date_gmt',
'after' => '1 week ago'
);
break;
ok now we need to add an array element in Newspaper/includes/td_config.php
find this block of code near line 4020-something and change this
array(
"param_name" => "sort",
"type" => "dropdown",
"value" => array (
'- Latest -' => '',
'Random posts Today' => 'random_today' ,
'Random posts from last 7 Day' => 'random_7_day' ,
'Alphabetical A -> Z' => 'alphabetical_order',
'Popular (all time)' => 'popular',
'Popular (jetpack + stats module requiered) Does not work with other settings/pagination' => 'jetpack_popular_2',
'Popular (last 7 days) - theme counter (enable from panel)' => 'popular7',
'Featured' => 'featured',
'Highest rated (reviews)' => 'review_high',
'Random Posts' => 'random_posts',
'Most Commented' => 'comment_count'
),
to this
array(
"param_name" => "sort",
"type" => "dropdown",
"value" => array (
'- Latest -' => '',
'Random posts Today' => 'random_today' ,
'Random posts from last 7 Day' => 'random_7_day' ,
'Alphabetical A -> Z' => 'alphabetical_order',
'Popular (all time)' => 'popular',
'Popular (jetpack + stats module requiered) Does not work with other settings/pagination' => 'jetpack_popular_2',
'Popular (last 7 days) - theme counter (enable from panel)' => 'popular7',
'Featured' => 'featured',
'Highest rated (reviews)' => 'review_high',
'Random Posts' => 'random_posts',
'Most Commented' => 'comment_count',
'Popular among posts of last 7 days' => 'popular_of_latest'
),
as you can see the only “change” was the addition of that last element, and adding a comma at the end of the previous element.
now this sorting option should be available on your blocks here and there

The kind good people at tagdiv may wanna add this at a future release as i find this useful and its just a quick commit.
p.s. the db query produced is fine performance-wise.
Hello,
Please contact your hosting provider and make sure you meet the requirements for newspaper: https://forum.tagdiv.com/requirements-for-newspaper/ and also inform the hostin provider about the 500 error.
You can follow this guide on how to install the theme: https://forum.tagdiv.com/install-via-ftp/
I hope this helps. Let us know if you require any further assistance.
Thank you!
Hi, first of all congratulations to the author of this wonderful theme: newspaper.
We have problems to solve in order to improve our Site, palermoviva.it
We are beginners with little experience. Here are the requirements that we need:
1. Remove the title “Archives” from the category page (eg. Events Archives – http://www.palermoviva.it)
<title> Events Archives – http://www.palermoviva.it </ title>
2.How to insert a field “search” for the systems within each category
3. The Web site is very slow (performances of Google’s Page Speed 0/100)
We read the signs for speed but for us they are too difficult.
Hello emirbalin,
1) There is about Permalinks. If you want to change it, you can set the structure of this by setting from panel, like this -> http://screencast.com/t/ueI0m3Z2zW As reference, please consult this link -> https://codex.wordpress.org/Using_Permalinks
2) I suspect this issues it might be caused by conflicting plugins. Please try to disable all the active plugins, except Visual Composer, clear all cache and install only the plugins that come bundled with our theme and rule out the plugins in conflict.
3),4) Unfortunately, our theme does not have such option. Please try to search some plugins with these functionalities and test it on your side and see how it works for you or you can hire a freelancer/developer to implement these functionalities in our theme because we cannot provide custom services at the moment, sorry!
5) Please make sure you have these requirements before further investigation is required:
a) Please make sure you have the latest theme version: 6.6.4. If not, you need to follow this guide to update your theme: https://forum.tagdiv.com/how-to-update-the-theme-2/
b) Having the latest version of the theme is not enough if you do not update the social counter as well. You need to remove the current version you use: http://screencast.com/t/4jvRwNzK and then install the version of the plugin that comes with the 6.6.4 theme: http://screencast.com/t/9AKKURjTjX
You can recognize if you have the correct version of the plugin when you see the new app key settings: http://screencast.com/t/CIXxklBanNl If you do not have these settings in your social counter it means you do not have the correct version.
c)You need to follow this guide to get the requirements from facebook:
https://forum.tagdiv.com/tagdiv-social-counter-tutorial-2/
Please keep in mind that the social counter is not a live count. It will update once every few hours. Please try with other Facebook Id, as example cocacola or envato and see how it works.
Once you followed all the above steps properly and made sure you have not missed anything, (and the social counter still does not work), then you can send an email to contact@tagdiv.com with your login information so we can further inspect the issue.
Hope this helps and let us know how it goes!
Thank you for the message!
Hi
The theme code was tested and optimized for best performance, we have a lot of clients and the theme works well on a large variety of hosts.
First please make sure that you use the recommended server configuration for Newspaper theme, you can check our documentation for more details: https://forum.tagdiv.com/requirements-for-newspaper/
There are lots of factors that influence the site’s page-sped. I suggest you first try this without any other plugins active, leave just VC plugin active the check again. To improve the loading speed look the mysql query cache: http://dev.mysql.com/doc/refman/5.1/en/query-cache.html we also use it on our demo.
Also you can use the speed booster to move the js and css at the bottom of the page, eliminate render-blocking, but not for all plugins. Check the System Status if the speed booster is active if you use other plugins than the tested ones. You can find some useful information regrading speed booster usage in this topic: https://forum.tagdiv.com/topic/speed-booster-questions/
Also you can read this guide, it may help – https://forum.tagdiv.com/how-to-make-the-site-faster/
Hope this help.
Thanks!
Hello sid,
1)If you want to reduce that space, you have to decrease the padding-top from the suitable container. Please try the code below and add it in Theme panel-Custom CSS area.
.td-main-page-wrap {
padding-top:40px;
}
2)Please ensure that you have a good network connection and also a good device wich can display your website (minimum requirements of the device). This kind of problem does not come from the theme, sorry.
3)Unfortunately, our theme does not have this option for Facebook, but you can do this with a plugin with this functionality (Facebook Comments). For more details about implementation, please check this topic ->
https://forum.tagdiv.com/topic/using-facebook-comments-plugin-and-changing-the-default-location/
Hope this helps and let us know how it goes!
Thank you for the message!
Hello,
All the requirements for the newspaper theme can be found here:
https://forum.tagdiv.com/requirements-for-newspaper/
I think that about covers it. As for the CPU load, we have no reports of the theme creating such load on the CPU.
Please make sure you meet the requirements and things should run smooth.
Thank you!
@ykdm
did you download the latest theme update with the fix?
It’s not OK for you to blame TagDiv for not updating your theme sooner. They can’t update your site for you, only you can install theme updates.
I think they know it’s a huge issue, hence why they rushed out some fixes/solutions!
[ Version 6.6.4 ]
– fix: homepage pagination issue with wordpress 4.4.1
[ Version 6.6.3 ]
– new: visual composer was updated to the latest version 4.9
– new: revolution slider was updated to the latest version 5.1.5
– fix: modified structured data to comply with Google’s new requirements
Also note the sticky post at top of the support forum with more info?
https://forum.tagdiv.com/topic/wordpress-4-4-1-pagination-new-fix/
Also note several known bugs with WP 4.4.1 and there will be a 4.4.2 version very soon.
Hi
version 6.6.3 update log reports
– fix: modified structured data to comply with Google’s new requirements
I’m not able to find anywhere further informations about those new requirements: could you please help me?
Thanks in advance, Luca
Normally this is in the changelog you get when downloading the files from Themeforest (admin please add this to docs in the FAQs ?)
Open the Newspaper_tf folder to see the two change files … e.g.,
[ Version 6.6.4 ]
– fix: homepage pagination issue with wordpress 4.4.1
[ Version 6.6.3 ]
– new: visual composer was updated to the latest version 4.9
– new: revolution slider was updated to the latest version 5.1.5
– fix: modified structured data to comply with Google’s new requirements
[ Version 6.6.2 ]
– fix: pagination was not working on categories with big grid disabled on WordPress 4.4
[ Version 6.6.1 ]
– new social counter version. Facebook requiers now an API key, read more here: https://forum.tagdiv.com/tagdiv-social-counter-tutorial/
Worthwhile to actually go to Facebook and read up on their “requirements” for sharing content.
https://developers.facebook.com/docs/sharing/best-practices
This is my first week on Newspaper so forgive me for such a simple problem but any help would be appreciated.
I have a page made – “home” – and on the home page it has five rows. Each row has one element (1 big grid, 4 block 16 respectively).
When I go to edit > Column Settings > Design Options, and choose a background color of red, save, update, the color I have chosen has disappears and the default blank white color persist.
This is also duplicated on a page with just a text block on a single row.
Is there something I’m doing wrong or does border color change only save with certain requirements.
Hi
I’ve use firebug to see the style sheet for the logo I am using (style sheet is /themes/Newspaper/style.css?ver=6.6.3)
The CSS code I see is:
.td-header-style-1 .td-header-sp-logo {
height: 90px;
margin: 28px 28px 9px;
position: relative;
width: 284px;
My logo size is (272 x 90px) .png
How can I get my logo to be on the very left (see design requirements):

I’ve tried playing around with the margins, but it’s not doing anything.
Please help.
Thanks
John
Hi,
Check your site using google’s PageSpeed Insights: https://developers.google.com/speed/pagespeed/insights/ and check online or use our instructions as solutions based on their notifications.
Also make sure you go trough our server/host requires and recommendations: https://forum.tagdiv.com/requirements-for-newspaper/
Our page speed guide and covered the most important aspects that google notifies you of and based on which it classifies and grades your site’ regarding speed. The theme has been developed to be fast but it may still need configurations on this matters so test your site using google’s page speed insights testing tool and make sure you follow the guide instructions and methods then test your site again.
We can’t offer speed customization services at the moment so if you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
The fb comments plugin should appear by default on your post pages. Where do you want to add it? Please let us know and provide more details on this!
The smart list 7 lightbox image can’t be disabled just for the smart list 7 images only if you disable it from theme’s panel > post settings globally: http://screencast.com/t/pIg0TBAqCSsE
Please provide more details about the configuration you want for the fb and disqus comments.
Hope this helps!
Thanks for the message!
-
This reply was modified 10 years by
Lucian.
Hello Ryuko,
The theme code was tested and optimized for best performance, we have a lot of clients and the theme works well on a large variety of hosts.
First, please make sure that you use the recommended server configuration for Newspaper theme, you can check our documentation for more details: https://forum.tagdiv.com/requirements-for-newspaper/
There are lots of factors that influence the site’s page-sped. I suggest you first try this without any other plugins active, leave just VC plugin active the check again.
To improve your server response time you can try to reduce the number of queries (fewer plugins, fewer blocks on page, reduce the elements which use ajax requests/pagination like mega menus/load more/infinite load), also consider using a cache plugin, we recommend the WP super cache plugin with the following configuration: https://forum.tagdiv.com/cache-plugin-install-and-configure/
To improve the loading speed look the MySQL query cache: http://dev.mysql.com/doc/refman/5.1/en/query-cache.html we also use it on our demo.
Also, you can use the speed booster to move the js and CSS at the bottom of the page, eliminate render-blocking, but not for all plugins. Check the System Status if the speed booster is active if you use other plugins than the tested ones. You can find some useful information regrading Speed Booster usage in this topic: https://forum.tagdiv.com/topic/speed-booster-questions/
Also, you can read this guide, it may help – https://forum.tagdiv.com/how-to-make-the-site-faster/
Hope this helps and let us know how it goes!
Thank you for the message!