Search Results for 'pagespeed'

    No search results were found in Documentation!

Results from the Forum
AzharNadeem
tagDiv Member

I have registered Akismet, WordPress SEO Premium, WP-Optimize and OIO Ad Manager. Status of Speedbooster changed to “Active” but there is no change in the outcome. Like before, 2 Javascript and 8 CSS resources are still appearing as Render Blocking in pagespeed insights.
The blocking scripts include (i) jquery.js?ver=1.11.2 and (ii) jquery-migrate.min.js?ver=1.2.1
While blocking styles include (i) Contact-Form-7 (2) 3 Google fonts (3) js_composer.css? (4) Newspaper Style.css (5) Jetpack.cssand (6) OIO Ad manager.

Looking at the plugin code I can see that many of the styles are already moved to footerlike

if ($this->td_theme_name == 'Newspaper') {
// wp 011 - Newspaper 6

//$this->move_style_to_footer_queue('bbp-default-bbpress'); //bpress old
//$this->move_style_to_footer_queue('bbp-default'); //bpress
$this->move_style_to_footer_queue('google_font_open_sans');
$this->move_style_to_footer_queue('google_font_roboto');
$this->move_style_to_footer_queue('contact-form-7');

if ($this->is_ie === false) {
// move style.css theme style

Any idea what is going on?

simchris
tagDiv Member

Try to avoid high ASCII characters in file names, most web servers can’t understand them. In your example you have a filename with broken ASCII character not “escaped” properly when you named it prior to upload; so technically you’re trying to access a file the server can’t read properly.

File names on servers should have
a) no spaces
b) no multiple dots
c) ideally end in dimensions for modern systems like mod_pagespeed, thumbnail regen, etc.
d) no high ascii characters like tildes, degree marks, question marks, percentage sign, etc. (basically letters, numbers, underscores, hyphens and nothing else).

So, this is your problem — fix your file names: (note broken ASCII character encoding after Silva) —
Quintino-Sandro-Silva-–-Aftermath-Review1-e1434933753361.jpg

  • This reply was modified 11 years by simchris.
bgo
tagDiv Member

Hi,

thnx the date/author can be found a bit lower on the page See the screenshot here. I dont have any other plugin’s running on this site as on my others.
regarding the errors, for sure i will take a look at it. Compression is mostly done by cloudflare. Why am I doing this? My score wassent good enough at google pagespeed. But again, i wil take a closer look at this.

Emil G
tagDiv Staff

Hi,

The theme uses featured images to display posts on pages, it generates thumbs from those images to keep the page size as low as possible.

1. First check if the gzip compression, browser leverage cache and image compression are set – https://forum.tagdiv.com/how-to-make-the-site-faster/https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/

2. Then check if the thumbs used on your modules are enabled – http://screencast.com/t/4A8qWhlovXW (disable the unused ones)

3. Next regenerate the thumbs – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/

4. Check the error.log to see if there are any strange errors which may cause high cpu usage.

Thank you!

alopfr
tagDiv Member

Hello,

I have the same mistake:

https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fdescubrirlahistoria.es&tab=desktop

I think it’s because of the theme. Thanks!

Arafat
Blocked
#0

How to fixed Eliminate render-blocking JavaScript and CSS in above-the-fold content. See this Image : http://prntscr.com/7jqgau


PageSpeed Insights
: https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Famazinghealthplan.com%2F&tab=mobile

AzharNadeem
tagDiv Member

Speed BoosterPlugin is not working at all. In my experience, Pagespeed results does not change at all, even if I remove the plugin completely.

Gopal
tagDiv Member

why JS files to be loaded in footer? Even if it is loaded in footer, pagespeed considers it as render blocking. Can it be made async in speed booster plugin?

simchris
tagDiv Member

1) try disabling all plugins except visual composer
2) don’t use child theme; activate main theme
3) turn off/clear caching if using before doing anything; if using caching turn off all minification settings
4) turn off mod_pagespeed if using to clear caching
5) if using CDN server; you need to “retire/refresh” cache
6) if installing via FTP, make sure your FTP software set to automatically upload files properly (e.g., as text or binary depending on type of file)
7) make sure you have enough memory allocated; you may need to edit your wp-config.php file in your root WP folder to increase default memory from 40MB to at least 96MB (128MB recommended)
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

TRY #7 FIRST 🙂

Radu
tagDiv Staff

I will re post my message from another thread here:

Hi,

I’m still searching for a good solution for that plugin. A lot of people install the plugin without knowing what it does and after that they add 100 plugins and some of the plugins are not written ok. For example some of the plugins do not respect the google pagespeed recommendations of punting javascript at the end of the page and they just try to use jQuery in the middle of the page. This slows the site down and it also enforces the requirement that jQuery has to be in the header instead of the footer how Google recommends.

For example even Revolution Slider is written that way, not only that but they don’t use recommended WordPress methods to load it’s style and js. One may say that loading resources that way is bad BUT even jetpack (that is a plugin made by the makers of wordpress) doesn’t use standard ways of loading resources – you can find the jetpack hack in the speed booster.

I know this is causing a lot of frustrations but we don’t have a good solution yet 😐 .

To always enable speed booster, delete this code: http://screencast.com/t/RZLIOPUNdqh

Radu
tagDiv Staff

I will re post my message from another thread here:

Hi,

I’m still searching for a good solution for that plugin. A lot of people install the plugin without knowing what it does and after that they add 100 plugins and some of the plugins are not written ok. For example some of the plugins do not respect the google pagespeed recommendations of punting javascript at the end of the page and they just try to use jQuery in the middle of the page. This slows the site down and it also enforces the requirement that jQuery has to be in the header instead of the footer how Google recommends.

For example even Revolution Slider is written that way, not only that but they don’t use recommended WordPress methods to load it’s style and js. One may say that loading resources that way is bad BUT even jetpack (that is a plugin made by the makers of wordpress) doesn’t use standard ways of loading resources – you can find the jetpack hack in the speed booster.

I know this is causing a lot of frustrations but we don’t have a good solution yet 😐 .

To always enable speed booster, delete this code: http://screencast.com/t/RZLIOPUNdqh

Radu
tagDiv Staff

Hi,

I’m still searching for a good solution for that plugin. A lot of people install the plugin without knowing what it does and after that they add 100 plugins and some of the plugins are not written ok. For example some of the plugins do not respect the google pagespeed recommendations of punting javascript at the end of the page and they just try to use jQuery in the middle of the page. This slows the site down and it also enforces the requirement that jQuery has to be in the header instead of the footer how Google recommends.

For example even Revolution Slider is written that way, not only that but they don’t use recommended WordPress methods to load it’s style and js. One may say that loading resources that way is bad BUT even jetpack (that is a plugin made by the makers of wordpress) doesn’t use standard ways of loading resources – you can find the jetpack hack in the speed booster.

I know this is causing a lot of frustrations but we don’t have a good solution yet 😐 .

To always enable speed booster, delete this code: http://screencast.com/t/RZLIOPUNdqh


@neakriti
thanks for providing the solution.

Radu
tagDiv Staff

Hi,

I’m still searching for a good solution for that plugin. A lot of people install the plugin without knowing what it does and after that they add 100 plugins and some of the plugins are not written ok. For example some of the plugins do not respect the google pagespeed recommendations of punting javascript at the end of the page and they just try to use jQuery in the middle of the page. This slows the site down and it also enforces the requirement that jQuery has to be in the header instead of the footer how Google recommends.

For example even Revolution Slider is written that way, not only that but they don’t use recommended WordPress methods to load it’s style and js. One may say that loading resources that way is bad BUT even jetpack (that is a plugin made by the makers of wordpress) doesn’t use standard ways of loading resources – you can find the jetpack hack in the speed booster.

I know this is causing a lot of frustrations but we don’t have a good solution yet 😐 .

To always enable speed booster, delete this code: http://screencast.com/t/RZLIOPUNdqh


@neakriti
thanks for providing the solution.

surfpark
tagDiv Member

1. How do I erase the excess pink space from the top of footer to snap closer to logo and same with bottom of footer to snap closer to social icons?

I think those areas have some padding due to the possibility to include some ads in those spaces. It looks like the height of the footer is hardcoded to be 1164×389. It is element ‘td-footer-wrapper td-footer-template-4’. You could change it in your style sheet.

2. How do I make the social icons in footer menu a bit bigger? And how do I make the hover colour on those icons a solid purple colour instead of the colours constantly changing?

The footer social media icons are designed to be 40×40. You’d have to change the styles too. Look at the following elements in your CSS: td-social-style-2 and td-icon-font. If you’re going to make several edits to the stylesheet, consider making a child theme.

3. Chris’s Pagespeed Custom Code no longer works (the one that you post at the end of the functions.php – will he be coming out with a new one that works with Newspaper 6?)

Have you upgraded to v6.1 of the theme?

4. How do I move the bottom share options (at the end of my posts), above my taboola advertisement so that they appear right at end of article?

Go to your dashboard. Theme Panel>Post Seetings>Sharing. You should see toggles to move the social sharing buttons.

5. Is there a code so that my custom ad 1 will appear underneath (or above) the author box?

I’m not sure if it always inserts it below ads. I think the author box is placed there via the posts template. You can attempt to mess with the posts templates to see if another one places the author box higher. Go to dashboard. Theme Panel>Post Settings>Default Post Template.

frasercarly89
Participant
#0

I have some questions here, and instead of posting them all in different questions, I’ll just post them in one large question:

My website is: http://www.livelovefruit.com

1. How do I erase the excess pink space from the top of footer to snap closer to logo and same with bottom of footer to snap closer to social icons?

2. How do I make the social icons in footer menu a bit bigger? And how do I make the hover colour on those icons a solid purple colour instead of the colours constantly changing?

3. Chris’s Pagespeed Custom Code no longer works (the one that you post at the end of the functions.php – will he be coming out with a new one that works with Newspaper 6?)

4. How do I move the bottom share options (at the end of my posts), above my taboola advertisement so that they appear right at end of article?

5. Is there a code so that my custom ad 1 will appear underneath (or above) the author box?

Thank you kindly! Newspaper 6 is awesome!

Radu
tagDiv Staff

Hello,

Sorry for the delay, we are working with limited staff.

I do the pagespeed work on all of our themes and the number one reason that we don’t include all the optimizations in the theme is due to plugins. It is a bit hard to write a plugin or code in general that performs at the best speed possible. So some of the plugins cannot be made to run because performance was not an issue when the plugins was wrote.

Also the theme cannot do almost nothing for bad server configurations.

Ing Geek
Participant
#0

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

Ing Geek
tagDiv Member

@Alienplot por la noche en horario de México voy a publicarles un tutorial de cómo instalar la versión 6 y optimizar al máximo para obtener los mejores resultados de pagespeed y tiempos de carga casi instantaneos.

simchris
tagDiv Member

We use opcache on server along with mod_pagespeed for our server and works very well.

jansena
tagDiv Member

Or they never checked the system status or pagespeed insights.
I’m also waiting for a solution, I didn’t have this problem with version 4 having the same plugins

Dmitry_Lupich
tagDiv Member

Nice site and great PageSpeed Insights results, how You did it?

jansena
tagDiv Member

I have also 6 (most used) plugins which are not working anymore with speedbooster. For testing I disabled all the plugins which were conflicting, but still getting the error from pagespeed insights that I have blocking css en javascript (but all are in the footer now). How can I solve both problems?

Alin [tagDiv]
tagDiv Staff

Hi,

Please check our documentation – https://forum.tagdiv.com/page-speed-guide/ for more info on how to customize your site’s page speed and other matters and also you can follow and use all instructions provided in these treads:
* https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
* https://forum.tagdiv.com/topic/pagespeed/

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You have these errors in the console – http://screencast.com/t/aGLY6Hjh2 please check this without any plugins active, leave just Visual Composer active, clear cache and see if you still have this issue with gallery.
Unfortunately this delay usually happens when speed booster is used as the css and js are moved at the bottom of the page structure, so that the page will load faster. That’s why the theme’s default style appears first then changes, because of the cascading property of css. To avoid this you could try to make the changes directly into theme’s style file.
I also checked your page source and those css resources are moved to the bottom, you also can check – http://screencast.com/t/vkHNjMZu only jetpack sharing css is not moved – http://screencast.com/t/YGTYW5v11oxY Try to move also that css and see if you still have this issue when you test pagespeed on mobile.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,


@Christopher
thanks!


@vtobing
You can change the color of the Grid line on Newsmag theme if you want this – http://screencast.com/t/9wYZwr0k
1. Please try Christopher suggestion and use Regenerate thumbnails – https://forum.tagdiv.com/how-to-fix-strange-thumbnails/ anyway I have checked your homepage and the thumbnails are displayed fine – http://screencast.com/t/EafYUovZba

2.
a. Not sure why do you have this issue, if you have articles on Featured category it should be displayed also on Big Slider.
b. You can use this custom css in Theme Panel > Custom Css for Big Slider arrows – http://screencast.com/t/DtyeieMwq8e

.iosSlider.td_block_big_grid .td-icon-left, .iosSlider.td_block_big_grid .td-icon-right {
color: red !important;
}

Also for normal slider you can add a background to the arrows – http://screencast.com/t/bDrHvF5t7u

.iosSlider .prevButton, .iosSlider .nextButton {
background-color: red;
}

3. You can try to change the post style as default from Theme Panel > Post Settings – http://screencast.com/t/SoPnjVmiAjRR This option is overwritten by the ‘Post template’ option from the backend – post add / edit page.

4. To improve the pagespeed score please check if the following optimization are done on your side – https://forum.tagdiv.com/how-to-make-the-site-faster/ – and this one – https://forum.tagdiv.com/topic/tutorial-pagespeed-2015/

Thanks!

Viewing 25 results - 2,101 through 2,125 (of 3,025 total)