- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperDesign your post pages using the Default Templates
- NewsmagPage templates
- NewspaperPage templates
- NewspaperCreate a form contact page
- NewspaperCloud Library Templates
- NewspaperCloud Library – Category Templates
- NewsmagCategory templates
- NewsmagFooter templates
- NewsmagDefault post templates
- NewsmagPost templates
- NewsmagHomepage – How to build and set it
- NewspaperHomepage – How to build and set it
- NewspaperPost templates
- NewspaperDefault post templates
- NewspaperCategory templates
- NewspaperPost template ads
- Apitd_api_single_template::update_key
- Apitd_api_single_template::update
- Apitd_api_single_template::add
Hi,
Please take a look at our page template – http://screencast.com/t/ENINuT7K2XE and try to create your own template without header and footer(add it in the root of the theme like the other templates) and set it when you create a page where you don’t want header and footer – https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/
Thanks!
Thanks
Two points :
1/ having the login widget was great since it was easier to put it somewhere else than in top bar
2/ for the page forum, great…but how to handle the seo of that page. I cannot find
PLus, you still have a “bbpress template”configuration in the theme panel..
Hi,
I try the solution for newspaper 4 but no solution. Do you know of it is possible to add a 970×250 ad for all the pages and post without a custom action in visual composer.
The result is the ad under the menu bar< not the top header but the main header > we used the default menu style.
I need the same postion as Newspaper 4:http://screencast.com/t/UdpqvFyrOl
The following is not working;
Hi,
Please add the value inside the panel_ads.php file – http://screencast.com/t/om4CzClEd like Emil suggested then use the do_shortcode() function to place the ad you use inside an ad box in theme panel > ads, like this: http://screencast.com/t/yk9RG2diwKyj
Here si the code you have to add:
echo do_shortcode(‘[td_ad_box spot_id=”custom_ad_1″]’);
echo td_page_generator::wrap_end();
echo td_page_generator::wrap_start();
Result: http://screencast.com/t/UdpqvFyrOl
Note that my example it’s for the default post template without sidebar, you will have to modify and add the code into which template you want to have this.
Thanks,
My advice, since these folks are asleep right now–and I am a complete noob just started 2 months ago, so take this with a grain of NaCl:
1. Read all the theme documentation AND Chris’ sticky thread in this forum on switching themes
2. Backup your site
3. Create a child theme
I am not sure what you mean after that, but I’m guessing you like the look of the Classic Blog Stack’s homepage?
If so, on the Theme Panel > Welcome Page… Import Predefined Style (stack)… choose “Classic Blog” (if that’s your preference, “Default” or something else if not) and it should import the desired look without importing any posts or pics etc, like importing the entire demo would.
If you have done the first 3 steps, then you should have no worries about breaking the site.
Ahhh… now I think I understand… Judging by your post, all you have done is create a new page that is based on a basic template. If you already like the theme’s homepage with no changes, that’s not necessary, the theme will generate the home page itself, and its look will depend on which style or stack you import.
Best of luck!
I know this theme has a lot of greatness about it, and the demo looks ace, so perhaps this theme is wasted on me – my question is .. where to start?
On the demo, I only really wanted the theme to look like the Homepage – Blog part –
Am I best to start with installing the content from the demo, then working back by deleting all posts?
I attempted to make a new page, and called it home, I clicked on ” Templates ” and selected the ” Homepage – Blog ” and it said it’s added – but im not sure exactly what it’s done, or if that’s right, so didn’t click publish, Im worried im going to mess up the theme! :-\
Is it possible to have a widget in the smart sidebar? I currently have post style 1 in place for all posts. I also have ad code placed in Ads>Posts>Post Template style 1.
Am I supposed by to seeing an ad in the smart sidebar on a post page?

When I looked into the documentation, it says the page should look like this:

When I attempt to disable the smart sidebar, it doesn’t give me an option that makes the layout look similar to the above example. Am I missing something?
This tutorial is for all those who speak Spanish and also serve to people who speak English. The tutorial is written in Spanish and English.
Newspaper 6 no es una actualización de la versión 4. Es un rediseño interno completo del Theme, por lo tanto la manera óptima de hacerlo funcionar al 100% es realizar una instalación limpia.
¿Cómo realizar una instalación limpia de Newspaper?
– Entra en http://www.yoursite.com/wp-admin/themes.php
– Activa un theme diferente a newspaper
– Borra el antiguo newspaper
– Sube el archivo de Newspaper 6
– Activa Newspaper 6 e instala los plugins que vas a utilziar como speedbooster, social, etc.
– Ve a Install demos: http://www.yoursite.com/wp-admin/admin.php?page=td_theme_demos
– Selecciona el estilo que quieres utilizar para tu sitio web. NOTA: NO ACTIVES “Include content” porque eso importará el contenido original del theme como imágenes y post, salvo el hecho de que quieras importarlo para trabajar sobre ellos en tu sitio web.
– Listo, ya tienes newspaper 6 funcional. Ahora tienes que ir a http://www.yoursite.com/wp-admin/admin.php?page=td_theme_panel y ajustar a tu gusto con tu logotipos etc.
Te recomiendo seguir las instrucciones de las dimenciones en logotipos e imágenes que establece el theme como por ejemplo para el logo principal que sea de (272 x 90px) y no de mayores dimensiones. Esto ayudará a tener mejores tiempos de carga.
Cómo optimizar newspaper 6
El Newspaper utiliza otras dimensiones de imágenes para ciertas áreas por lo tanto es recomendable regenerar las thumbnails para que todas estén en el tamaño óptimo y funcionen a la perfección.
– Entra en http://www.yoursite.com/wp-admin/plugins.php
– Instalar Regenerate Thumbnails, activarlo y ponerlo a funcionar. Lo encuentras en el menú “herramientas”
Vamos a eliminar elementos no útiles con ayuda de functions.php, este archivo lo encuentras en Apariencia + editor + functions.php . Nos posicionamos hasta el final del archivo functions.php y copiamos y pegamos el siguiente código
/* si usas jetpack, con esto eliminamos devicepx */
add_filter( 'jetpack_implode_frontend_css', '__return_false' );
function dequeue_devicepx() {
wp_dequeue_script( 'devicepx' );
}
add_action( 'wp_enqueue_scripts', 'dequeue_devicepx', 20 );
/* FIN si usas jetpack, con esto eliminamos devicepx */
/* con esto hacemos los 2 jquery de wordpress en uno solo*/
function optimize_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_deregister_script('jquery-migrate.min');
wp_deregister_script('comment-reply.min');
$protocol='http:';
if($_SERVER['HTTPS']=='on') {
$protocol='https:';
}
wp_register_script('jquery', $protocol.'//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js', false, '3.6', true);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘template_redirect’, ‘optimize_jquery’);
/* FIN de con esto hacemos los 2 jquery de wordpress en uno solo*/
/*Otras optimizaciones */
function wpb_imagelink_setup() {
$image_set = get_option( ‘image_default_link_type’ );
if ($image_set !== ‘none’) {
update_option(‘image_default_link_type’, ‘none’);
}
}
add_action(‘admin_init’, ‘wpb_imagelink_setup’, 10);
function no_errors_please(){
return ‘Tu computadora se autodestruirá en 60 segundos!’;
}
add_filter( ‘login_errors’, ‘no_errors_please’ );
Damos clic en guardar o actualizar.
Newspaper 6 cuenta con Speedbooster, un plugin para mejorar el rendimiento aunque no funciona en todos los sitios web ya que hay que cumplir ciertas características, como por ejemplo tiene incompatibilidad con akismet y algunos otros plugins que comúnmente se utilizan.
Si tu sitio web solo usa el plugin visual composer, entonces puedes usar speedbooster. De lo contrario usaremos otro plugin.
Desactivaremos los AVATARES de Gravatar en: Ajustes + Comentarios + retiramos la opción mostrar Avatares.
Adicionalmente puedes utilizar el plugin “WP-Usuario-Avatar” para establecer un avatar cargado desde tu propio sitio web. Esto mejora drástica mente la velocidad de carga de una entrada con comentarios.
Cómo optimizar tu instalación de wordpress
Si tienes varios plugins vamos a desactivar y borrar TODOS los plugins que no usemos ni usaremos. Recuerda que entre menos plugins tengas instalados es mas veloz tu sitio web.
– Entra en http://www.yoursite.com/wp-admin/plugins.php
– Instala Plugin Garbage Collector
Activamos garbage collector y lo iniciamos. Este plugin nos ayudará a borrar tablas de datos viejas para mejorar la velocidad de carga de la base de datos. Si no te permite eliminar tablas desde el plugin tendrás que hacerlo desde PHPMyAdmin y borrar manualmente las tablas en la base de datos.
– Instala plugin WP-Optimize
Activamos WPOptimize y hacemos una optimización completa de la base de datos.
Regresamos a la pestaña de plugins y desactivamos, thumbnails regenerate, garbage collector y wp-optimize.
PARA USUARIOS AVANZADOS
Entramos por FTP y editaremos el archivo wp-config.php Vamos a eliminar todos los comentarios y solo dejaremos las líneas esenciales. De este modo pesará menos y quedará algo como este ejemplo.
<?php
define('WP_HOME', 'http://www.yoursite/');
define('WP_SITEURL', 'http://www.yoursite/');
define('DB_NAME', 'yourbase');
define('DB_USER', 'youruser');
define('DB_PASSWORD', 'pass');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('AUTH_KEY', 'your key');
define('SECURE_AUTH_KEY', 'your key');
define('LOGGED_IN_KEY', 'your key');
define('NONCE_KEY', 'your key');
define('AUTH_SALT', 'your key');
define('SECURE_AUTH_SALT', 'your key');
define('LOGGED_IN_SALT', 'your key');
define('NONCE_SALT', 'your key');
$table_prefix = 'wp_';
define('WP_DEBUG', false);
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
require_once(ABSPATH . 'wp-settings.php');
Guardamos cambios y subimos el archivo editado
PLUGINS DE CACHE
Para el test instalé Newspaper en un sitio de pruebas con el estilo TECH. Tengo la licencia de Zen Cache PRO y WP Rocket, aunque también probé con 2 plugins gratuitos como w3 cache y Wp Super Cache. El test fue realizado con GTMetrix, el servidor del sitio web está en españa.




NOTA: En lugar de Speed Booster recomiendo usar el plugin Above The Fold Optimization y solo excluir el archivo style.css
——————————————————————–
———————–E N G L I S H ——————————-
——————————————————————–
This tutorial is for all Those Who Also Serve speak Spanish and speak to people WHO Inglés. The tutorial is written in Spanish and Inglés.
Newspaper 6 is not an update of the version 4. It is a complete internal redesign of Theme, so the optimal way to make it work 100% is performing a clean install.
How to perform a clean installation of Newspaper?
– Enter http://www.yoursite.com/wp-admin/themes.php
– Enable a different theme to newspaper
– Delete the old newspaper
– Upload the file of Newspaper 6
– Turns Newspaper 6 and install plugins you will use as SpeedBooster, visualcomposer, social, etc.
– Go to Install demos: http://www.yoursite.com/wp-admin/admin.php?page=td_theme_demos
– Select the style you want to use for your website. NOTE: Do not select “Include content” because it will import the original content of the theme as images and post, except for the fact that you want to import it to work on them on your website.
– Ready, already you have 6 Functional newspaper. Now you have to go to http://www.yoursite.com/wp-admin/admin.php?page=td_theme_panel and adjust to your taste with your logos etc.
I recommend following the instructions in the dimentions logos and images that set the theme as such for the main logo that is of (272 x 90px) and no larger. This will help to have better load times.
How to optimize newspaper 6
The Newspaper uses other dimensions of images to certain areas so it is advisable to regenerate the thumbnails are all in the optimal size and function perfectly.
– Enter http://www.yoursite.com/wp-admin/plugins.php
– Install Regenerate Thumbnails, activate it and make it work. You find it in the menu “tools”
We will remove not useful elements using functions.php, you find this file under Appearance + editor + functions.php. We position until the end of functions.php file and copy and paste the following code
/* If you use jetpack, with this we remove devicepx */
add_filter ('jetpack_implode_frontend_css' '__return_false');
dequeue_devicepx function () {
wp_dequeue_script ('devicepx');
}
add_action ('wp_enqueue_scripts' 'dequeue_devicepx', 20);
/* END if you use jetpack, with this we remove devicepx */
/* 2 do with this jquery wordpress into one */
optimize_jquery function () {
if (! is_admin ()) {
wp_deregister_script ('jquery');
wp_deregister_script ('jquery-migrate.min');
wp_deregister_script ('comment-reply.min');
$ Protocol = 'http:';
if ($ _ SERVER ['HTTPS'] == 'on') {
$ Protocol = 'https:';
}
wp_register_script ('jquery', $ protocol '// ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js', false, '3.6', true.);
wp_enqueue_script (‘jquery’);
}
}
add_action (‘template_redirect’ ‘optimize_jquery’);
/* End with this we jquery wordpress 2 into one */
/* Other optimizations */
wpb_imagelink_setup function () {
$ Image_set = get_option (‘image_default_link_type’);
if ($ image_set! == ‘none’) {
update_option (‘image_default_link_type’, ‘none’);
}
}
add_action (‘admin_init’ ‘wpb_imagelink_setup’, 10);
no_errors_please function () {
return ‘Your computer will self-destruct in 60 seconds!’;
}
add_filter (‘login_errors’ ‘no_errors_please’);
We click save or update.
Newspaper 6 features Speedbooster </ strong>, a plugin to improve performance but does not work at all as there are websites that meet certain characteristics, such as is incompatible with akismet and some other commonly used plugins .
If your website only uses the visual composer plugin, then you can use SpeedBooster. Otherwise we will use another plugin.
deactivate avatars Gravatar : Settings + Comments + withdrew the Show Avatars.
Additionally you can use the “WP-User-Avatar” plugin to establish an avatar loaded from your own site. This improves drastically loading speed of an post with comments.
How to optimize your wordpress installation
If you have multiple plugins we will deactivate and delete all plugins not to use or will use. Remember that the less have installed plugins is faster your website.
– Enter http://www.yoursite.com/wp-admin/plugins.php
– Install Plugin Garbage Collector
Activate and start garbage collector. This plugin will help us erase old data tables to improve loading speed of the database. If not let you delete tables from the plugin will have to do it from PHPMyAdmin and manually delete old tables in the database.
– Install plugin WP-Optimize
We WPOptimize activate and make a complete optimization of the database.
Back to the plugins tab and deactivate, regenerate thumbnails, garbage collector and wp-optimize.
FOR ADVANCED USERS
Walked through FTP and edit the file wp-config.php We will remove all comments and leave only the essential lines. This will weigh less and be something like this example.
<? Php
define ('WP_HOME', 'http: //www.yoursite/');
define ('WP_SITEURL', 'http: //www.yoursite/');
define ('DB_NAME', 'yourbase');
define ('DB_USER' 'youruser');
define ('DB_PASSWORD', 'pass');
define ('DB_HOST', 'localhost');
define ('DB_CHARSET', 'utf8');
define ('DB_COLLATE', '');
define ('AUTH_KEY', 'your key');
define ('SECURE_AUTH_KEY', 'your key');
define ('LOGGED_IN_KEY', 'your key');
define ('NONCE_KEY', 'your key');
define ('AUTH_SALT', 'your key');
define ('SECURE_AUTH_SALT', 'your key');
define ('LOGGED_IN_SALT', 'your key');
define ('NONCE_SALT', 'your key');
$ Table_prefix = 'wp_';
define ('WP_DEBUG', false);
if (! defined ('ABSPATH'))
define ('ABSPATH', dirname (__ FILE__) '/'.);
require_once (ABSPATH 'wp-settings.php. ");
Save changes and upload the file
plugins CACHE
For Newspaper 6 TEST, i installed in a test site with TECH style. I have licence of Zen CAHE PRO and WP Rocket (the best cache plugins for wordpress), but also tried with 2 free plugins like w3 cache and WP Super Cache. The test was conducted with GTMetrix, the server of the website is in Spain.




NOTE: Instead of Speed Booster recommend using the Above The Fold Optimization plugin and only exclude the file style.css
Thanks.
I removed the older theme before installing new one. But I needed to change the page template to overcome that error.
Hi,
@fkpress You can access the forum directly using site url/forums like you can see on our demo – http://demo.tagdiv.com/newspaper/forums/ it is not necessarily to set bbpress template to your forum page.
@Cagatay Please provide more details about this.
Thanks!
Hi,
Thanks Chris!
I guess that you have solved this. You need to remove the old theme and after upload version 6. That error came from old page templates.
Thanks!
Hi,
You can access the forum directly using site url/forums like you can see on our demo – http://demo.tagdiv.com/newspaper/forums/ it is not necessarily to set bbpress template to your page.
Also now you have an option to enable log in/register on top bar – http://screencast.com/t/i66DG4EyO0g
Thanks!
but the template for bbpress is missing – only standard, page builder and page builder with headline. no bbpress…. 🙁
Hi
Two other things which are not working (for me) on V6.
I only have three templates for a page. Impossible to find the templates bbpress for instance.
Also, the login widget of Tagdiv is not there anymore…
Since updating, quite a few of our pages are showing as full width when they should have a sidebar!
I have made sure that Template Settings -> page has got sidebar right selected and that the individual pages have got default template selected but this is making no difference 🙁
These pages do not use any VC elements. Interestingly, if I disable Visual composer all my page templates give an error in nginx and I can’t see anything, yet posts and taxonomies still work fine.
Hi,
Before update please backup the site (database and files) – https://codex.wordpress.org/WordPress_Backups
You have to remove theme via FTP and install the new one(the theme was practically rewritten ) and also the plugins that come with the theme files, you can find them it in the theme package inside the Plugins folder – http://screencast.com/t/lkrma6blYE
After the update run the script included in the Welcome panel – http://screencast.com/t/eZxxuqvsTir
And regenerate the thumbs – https://forum.tagdiv.com/using-the-theme-with-existing-content/
Also check the documentation here – https://forum.tagdiv.com/how-to-update-the-theme-2/
Or if you have updated automatically please make sure that youe delete these files(old page templates):
page-homepage-bg.php
page-homepage-bg-loop.php
page-homepage-blank.php
page-homepage-loop.php
page-homepage-timeline.php
Thanks and sorry for inconvenience!
Hi,
Please make sure that you remove the old theme(files) and and then upload the new one. You still have there the old page templates – http://screencast.com/t/X9XCo0Va9A3
Try to delete these files(old page templates):
page-homepage-bg.php
page-homepage-bg-loop.php
page-homepage-blank.php
page-homepage-loop.php
page-homepage-timeline.php
Thanks!
Bună ziua,
În primul rând, felicitări pentru noua versiune grozavă a temei Newspaper! Am instalat-o de îndată ce a apărut și am configurat-o pe site-ul meu și arată super!
Cu toate acestea, am unele întrebări. Nu știu dacă sunt erori sau dacă nu am făcut eu ceva bine, așa că le voi înșira mai jos, poate mă puteți ajuta:
- Cum fac ca reclama „Article top” să fie centrată în pagină? În afară de Google Chrome, unde apare corect, în Safari, spre exemplu, apare mult prea în dreapta și este afișată chiar și sub sidebar (atât pe desktop, cât și pe iPad).
- Cum pot accesa din nou Forumul bbPress? După actualizare nu se mai deschide forumul: https://itutorial.ro/forum/
- Pot să șterg din fișierele temei tot ce este din aprilie și să las numai ce este adăugat în iunie? Am actualizat prin metoda standard tema, fără să văd că recomandați ștergerea versiunii vechi și instalarea celei noi, așa că mi-au rămas unele fișiere vechi. Am văzut că page-homepage-bg.php, page-homepage-bg-loop.php, page-homepage-blank.php, page-homepage-loop.php, page-homepage-timeline.php trebuiesc șterse și le-am șters, însă au mai rămas câteva fișiere vechi, cum ar fi Loop-timeline.php, vc_templates, less_files, rtl.css și altele, din aprilie. Pot să le șterg și pe acelea – mai este nevoie de ele?
- De ce unele resurse javascript, cum ar fi eticheta de la trafic.ro sau Descarcă de pe Magazin Play apar mari în footer – înainte de actualizare nu apăreau supradimensionate?
Cam atât deocamdată. Dacă mai întâlnesc ceva, actualizez postarea asta sau las una nouă :D.
Mersi!
Hi,
@External if you still have that error please delete page templates – https://forum.tagdiv.com/topic/6-x-update-theme-error/#post-53479
Why newspaper 6? – https://forum.tagdiv.com/topic/why-newspaper-6/
Thanks!
Hi,
I have just installed my newspaper template and added a page to a menu. When I thereafter click on the menu I receive the following error, se below. Any body who have had the same problem?
thankful for any help.
Aram
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@kontorsf.laxed.se and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at http://www.kontorsforskning.se Port 80
Hi,
You have to remove the old theme via FTP and install the new one and also the plugins that come with the theme files, you can find them it in the theme package inside the Plugins folder – http://screencast.com/t/lkrma6blYE
After the update run the script included in the Welcome panel – http://screencast.com/t/eZxxuqvsTir
And regenerate the thumbs – https://forum.tagdiv.com/using-the-theme-with-existing-content/
Also check the documentation here – https://forum.tagdiv.com/how-to-update-the-theme-2/
Or if you have updated automatically please delete these files(old page templates):
page-homepage-bg.php
page-homepage-bg-loop.php
page-homepage-blank.php
page-homepage-loop.php
page-homepage-timeline.php
Thanks and sorry for inconvenience!
no problem Emil ! Thanks for the answer.
The work you made is just awesome and this should be paid upgrade!!!
What a pity for this update. You should add a BIG warning and an explanation in the download package.
My last problem is now that the theme panel is in grey and any modification on it is not taken into account
+ I only have 3 templates for pages and no forum for instance… Very weird
Hi,
We implemented a check, if you add visual composer content to the page on the default template the sidebar is disabled. You can easily override this check by adding the following line in page.php – http://screencast.com/t/WvbLIzGyYj
Hope this helps. If it doesn’t work please provide more details about your pages, what template did you use and details about the blocks used.
Sorry for the trouble you encountered with this update.
Thank you, Emil G.
Did you all click on the “update script” link in theme panel welcome page? After clicking on the link my page including all blocks was back. Could be possible taht you also need to go to your pages an switch the template (mine was set back to pagebuilder + on all pages instead of homepage blank)
I have bought theme just now and I’m not able to make Infinite load work.
Here is my custom home page link:-
http://dailydoser.com/myhome/
Template Selected – “Homepage – blank”
Added 2 elements via Visual composer:-
1. Big Slide
2. Block 9 -> Selected Use ajax & Pagination – infinite load option
What am I doing wrong? This is brand new theme with no extra plugins but still infinite load is not working.
Any pointers in this regard will be appreciated.
I’m seeing javascript error in console while debugging but not sure why that error is coming.
Hi,
You will have to remove author box from each post template that you use – http://screencast.com/t/VmU3nSLGkpR and it will be removed also from page source.
Thanks!