- 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
Update from Newspaper 4 to 6 script dont convert shortcode
Update script run ok, but shortcode for dropcap and blockquote&pullquote are not converted
For example if I were to move from Newsman to Newspaper 6 and all my images have the width of 640px. Would it be possible to change the content width in newspaper 6 to the same with as newsmag? I guess the image sizes must be adapted as well?
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
Hi,
For example the megamenu use ajax, live search and also if you use pagination for blocks.
Thanks!
Yes @hhealth displaying article titles is not really news. With custom text that reads like for example ” See the newest film of ….” and link to the article , or ” We are currently upgrading your experience “…etc.
I like the design of the Ticker now , just not what one can use it for
-
This reply was modified 11 years by
skykid.
Hello
First, BRAVO for your new update. It is really great!
However, I have 4 problems.
Here an image :
http://imageshack.com/a/img909/5994/koqJe9.png
1/ I regenerate all images with Force Regenerate Thumbnails and hope it will change.
I deleted W3 Total Cache so it is not a cache issue.
Still 1500 to go! 🙂
2/ I rename the theme folder, put the new one, delete old plugin, and install the 4 news one from your /include folder in the zip.
In the cateogories pages, I still have code instead of the elements.
Why ?
3/ Background and color
Since the v4, when I laod any page, instead of having my main color (for us purple) on the link and background, during half a second it is the light blue color theme appearing.
Why this informatoin a still load or in the base and not replace by
4/ After the name of the redactor, how I could change the format of the date to have french one aka for example 5 Février 2015 instead of fév 5, 2015?
Regards
Hi,
we have the theme api available https://forum.tagdiv.com/the-theme-api/ but it’s not yet fully documented. We have a tutorial about how to add new modules and blocks here: https://forum.tagdiv.com/practical-example-how-to-add-a-new-block-and-module/
Hi,
You have to check the API documentation here: – https://forum.tagdiv.com/the-theme-api/ – https://forum.tagdiv.com/the-child-theme-method/
An example for block 1 template file would be:
<?php
/* ----------------------------------------------------------------------------
WordPress booster framework - this is our theme framework - all the content and settings are there
It is not necessary to include it in the child theme only if you want to use the API
*/
if (!defined('TD_THEME_WP_BOOSTER')) {
include TEMPLATEPATH . '/includes/td_config.php';
include TEMPLATEPATH . '/includes/wp_booster/td_wp_booster_functions.php';
}
add_action('td_global_after', 'hook_td_global_after'); // hook used to add or modify items via Api
function hook_td_global_after() {
td_api_block::update_key('td_block_1', 'file', get_stylesheet_directory() . '/includes/shortcodes/td_block_1.php');
}
Thank you!
-
This reply was modified 11 years by
Emil G.
Bună,
Mulțumesc pentru răspunsuri!
- A funcționat! Mersi!
- La acel link afișează subiectele și nu categoriile – nu pot fi postate subiecte noi de acolo. Din câte observ, noua versiune nu include bbpress la șabloane (http://www.screencast.com/t/S5UJQ3LD ), iar șablonul bbpress din vechea versiune nu funcționează. Vreo rezolvare?
- Nu o mai șterg acum să nu pierd configurări și altele. Mai degrabă șterg în continuare cele câteva fișiere vechi 😀
- A funcționat! Mersi!
În plus:
- Cum aliniez reclamele mari în pagina principală să apară ca în demo? La mine apar cu aliniere la stânga: http://www.screencast.com/t/tnEbjlEjQ
- Am văzut că se recomandă de către Booster folosirea WP Super Cache în locul W3 Cache. L-am configurat, dar după, la efectuarea cache-urilor am văzut că pierd toate setările temei (noroc că le aveam salvate). M-am jucat puțin prin setări și cred că opțiunea care cauza problemele era: „Comprimare fişiere cache pentru a accelera de lucru. (Recomandat)” – vă rog să verificați dacă este o problemă în legătură cu această opțiune recomandată a pluginului
- Am instalat pluginul Font Awesome 4 Menus, însă nu reușesc să adaug acele iconițe pe care le oferă, iar site-ul lor nu prea este de ajutor pentru WordPress. Așadar, aveți un ghid pentru cum pot fi adăugate la meniuri?
- Cum schimb formatul datei la articole din Iun 16, 2015 în 16 Iun 2015? În Newspaper era o opțiune, dar acum nu o găsesc – formatul datei din meniul de sus l-am schimbat
- Noua versiune nu mai este compatibilă cu shortcode-urile din versiunea trecută (de exemplu pull_quote_center)? Văd că nici nu le mai recunoaște – cum pot să fac să le interpreteze din nou corect, pentru că le-am folosit mult și arată urât acum…?
- Cum adaug linii de despărțire a blockurilor între ele? De exemplu, aș vrea să le pun într-un chenar cu linie subțire pe cele de pe pagina principală.
- De ce atunci când dau clic pe numele autorului, mă redirecționează automat către pagina principală și nu către pagina autorului?
Vă rog să țineți cont de următoarele recomandări când lucrați la o nouă actualizare:
- Adăugați mai multe opțiuni pentru tagDIV SocialCounter – de exemplu, Tumblr. De asemenea, ar fi super să fie incluse și linkuri pentru descărcarea aplicațiilor (de pe App Store, Magazin Google Play, de exemplu).
- Adăugați mai multe câmpuri pentru sursă și via. În versiunea anterioară era mai bine cu 2 câmpuri pentru fiecare
Mulțumesc!
Hi,
Before update please backup the site (database and files) – https://codex.wordpress.org/WordPress_Backups
We recommend to remove 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 running the script it will import old settings, change the shortcode like you can see in the documentation. The theme has more features(example- big grid on categories, smartsidebar) so you will have to set those mannually. Also the custom css may not work at this it should be regarded as a new theme(changed classes, ids).
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/
Thanks!
Another question.
In the mega menu on my site http://brandinginasia.com/ for Southeast Asia, some of the country names are not appearing when it drops down on mouseover –Thailand for example. Is there a limit on what can appear on the mouseover?
thanks,
Bobby
Hi,
Like many i’ve just moved to v6 and here is a little low priority issue i found.
I’m using menu 12 with the default blue color, when switching from desktop to mobile the header becomes black.
The Enable Top Bar doesnt seem to work (the bar is always displayed), there again, no big deal as it can easily be hidden via css.
ps : the new content blocks & footer are pretty cool
@yannc04 Enter vía FTP, go to wp-content/themes/newspaper/ and rename newspaper folder (example: newspaper2).
Refresh http://www.parolesdefoot.com/wp-admin/ enter and go to themes, delate newspaper and reupload.
Hi,
I’m happy with the new update: congratulations! However, I have mark the option « SHOW AUTHOR NAME Enable or disable the author name (on blocks, modules & single post page)» (link to screenshot: http://s27.postimg.org/f9nteo3df/Screenshot_4.jpg), but it doesn’t appear, for example, in block 7. I have gone to filezilla and edit the file, but it doesn’t make any effect as you can see in this link: http://s10.postimg.org/gvvsna0l5/Screenshot_2.jpg
Could you help me, please? Thanks.
Hello,
I have the same problem (the third) of wpfan3751. I can change all title color and background of tagdiv blocks, but not of, for example, newsletter plugin or in a block7 in a sidebar. You can see it in these links:
http://s10.postimg.org/uoa7iwrcp/Screenshot_1.jpg
http://s10.postimg.org/gvvsna0l5/Screenshot_2.jpg
http://s10.postimg.org/aw81jmfsp/Screenshot_3.jpg
I think the last system was better, because you set up the color one time and appears everywhere. Now, I have a problem with different styles.
Thanks.
Hi I have a problem, on the frontpage of my site, the date shown is always the same. Check it and please let me know how can I change it or just delete it.
Thanks
Hi!
Just downloaded the new update. I made a new database and installed it on a new local server address (XAMPP). After I installed the theme and imported the theme settings from an existing Newspaper 4 website (also running on XAMPP) a lot of things worked bad.
The WP admin panel has a broken design and I have two errors:
“Please update your [tagDiv social counter] Plugin!”
“Hi! Would you like to activate your version of Revolution Slider to receive automatic updates & get premium support? This is optional and not needed if the slider came bundled with a theme.”
Not only I cannot get rid of these but as well there are no more updates available. Also, the Revolutions Slider is already activated!
I also get the following error on when viewing the website:
“wp booster error:
Please update your [tagDiv social counter] Plugin!” – I already did this.
So, what to do? I seriously love the Newspaper 4, wonder if it is really worth the trouble of upgrading? Can someone help me out with a solution for all these issues?
Thanks in advance!
Hi,
1. Please try this custom css in Theme Panel > Custom Css it will be applied on all big grids:
.td-hover-1 .td-big-grid-post:hover .td-module-thumb .entry-thumb {
transform: none;
-webkit-transform: none;
-moz-transform: none;
}
If you want this only for home please add the .home class.
2. Unfortunately there is no general option and you have to set it manually each one.
3. You can try this custom css: http://screencast.com/t/wJUvDaaPaAJB
.td_block_big_grid_2 .td-big-grid-post-0 .td-meta-info-container {
display: none;
}
4. The theme doesn’t have an option to show post views on modules anymore. You will have to copy the vies function from td_module_single_base.php to td_module.php – http://screencast.com/t/izGddMRU and call the views on each module: http://screencast.com/t/YFATXWXCZt you may need additional css customizations. For example – http://screencast.com/t/sbnmcCbKpB0l
<?php echo $this->get_views();?>
5. Unfortunately you need to inspect and change the background and color for each one – http://screencast.com/t/6Q0FKEhJE
.td-module-comments a{
background-color: #cbcbcb !important;
}
.td-module-meta-info .td-post-views{
color: #cbcbcb;
}
.td-module-comments a:after {
display: none;
}
6. Theme doesn’t have an option to disable more from author, but you can hide it using custom css – http://screencast.com/t/OPfLLMowFK3M
.td_block_related_posts .td-related-right {
display: none;
}
7. Provide a link so we can take a look
8. The widget/block title background can be added from block settings and that color will be when your hover on article title from that block – http://screencast.com/t/rX1wEZVy
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Could you explain how to do this for a Child theme? Can’t see an example of the API Child Theme method that applies to shortcodes replacement/update ie replacing /includes/shortcodes/td_block_authors.php.
Thanks
After upgrading theme from 4 to 6 i have a lot of “wp booster” errors.
For example http://47oporalo.ru/news/federalnye
Screenshots:
Chrome-https://s.mail.ru/39Rg8vVdn9Cw/newspaper_chrome.png
Firefox-https://s.mail.ru/5AhyNTHLgurb/newspaper_firefox.png
All plugins updated.
Hi there,
Why don’t you update from the wp-admin panel? Activate another theme (for example Twenty Fourteen), delete the old theme and then upload the new one.
Hi,
The theme has now various header styles that you can set from Theme Panel > Header section – http://screencast.com/t/sRoGabFso
Not sure what you are trying to do, you can use browser’s inspector tool and see those classes. For example for default header style – http://screencast.com/t/nCTnwG3Y8Hmi
Thanks!
I’ve just updated the site and it’s been a real pain to tidy it back up. I’ve got things working again but I’m discovering so many things which I preferred in the previous version.
* On the home page I use Big Grid 2 for the featured posts – how do I stop it from zooming in on the images? I can’t seem to find the option.
* Is there an easy way to change the font for all of the headers and the body font? Do I really have to go through the crazy amount of options to change them all? Can I change the default fonts somewhere?
* How to remove post meta on the first post in the Big Grid 2?
* How to show page views on the homepage using the
* How can I make the meta on the home page go back to how it was in the previous version (greyed out, clustered together). The new comment meta icon is too bold & distracting and I don’t want to show the author.
* Where can I find the option to remove ‘More From Author’ at the bottom of posts?
* Does the logo have to be exact width? My logo now looks like it’s been pushed to the right.
* Why aren’t section/widget headers the same colour as my theme accent colour?
To create this menu all you need to do have each item in your menu selected as a “mega nav”. Ideally, your categories in the menu have sub-categories in which they’d show up.
The example above would have categories like this:
Lifestyle
– Beauty
– Get Inspired
– Health and Beauty
– Sex and Love
Tech
Travel Guides
Videos
Features
Homepages
Select each of the MAIN navigation items, and in the menu builder (Dashboard>Appearance>Menus) make sure each of these main sections is listed. For each section of the menu, go to the drop down for “Make this a category mega menu”. Remember, your menu should only include main categories, as sub-categories will show up as default.