I recommend to hide date from google :-P. You can get more CTR and visits to your website if you dont show date on structured data. SEO Secret 😛
en el campo de cuenta de twitter en tu perfil tienes que colocar http://www.twitter.com/ TU USUARIO. En lugar de poner @ tu usuario
Lo mismo para todas las demás redes sociales.
@charly_vk tienes un server response de 1 segundo, es decir anda lento el servidor. Veo que tienes zencache, sin embargo no está activado la expiración para algunos tipos de archivo http://gtmetrix.com/reports/www.chicasfitness.com/w07wTjMa (leverage browser caching) . esto es sencillo si tienes apache solo tendrás que agregar unas líneas al htacces, si tienes nginx lo haces en el nginx.conf. Revisa en google como establecer los tiempos de expiración según tengas apache o nginx,
2.- https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.chicasfitness.com%2F&tab=desktop
Your page has 2 blocking scrip
Estos los eliminas con el functions.php que subí ayer.
Solo sustituye este funcions.php https://drive.google.com/file/d/0B-VBkiewxpMAM29uUkI5YWpneEU/view?usp=sharing
Para el css puedes usar cualquier plugin que te permita diferir el css, solo excluye el style.css
Saludos
LOL xD Too many ram
I think your website has about 10,000-15,000 visitors per day and just need 2gb ram 😛
try to disable w3, install WP-FFPC an configure.
I dont know where is located your server but location has alot guilty for responses times. To avoid them register on CLOUDFLARE and setup your site on free acount (dont need premium cloudflare). This will help you alot
-
This reply was modified 11 years by
Ing Geek.
how many ram have on your server?
Oki.
First. (missing files) http://gtmetrix.com/reports/www.movzio.com/XJg9IOf2
You need to disable tag div api plugin or fix them, because its calling https://www.movzio.com/wp-content/plugins/td-api-plugin/css/style.css and this file doesnt exist.
second (light files) https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.movzio.com%2F&tab=mobile
You need to MINIFY and COMBINE html, css and js code. I dont like w3 because have too many options, but you can try minify option on w3 :-P. Just exclude style.css
Third (server response)
You are on Nginx and nginx works better whit other cache plugins like WP-FFPC instead of w3, just need to install memcached latest version on your server.
Regards
There is a problem when copy from forum to php file and i cant edit the first post i made. Use this funcionts (newspaper 6.1) https://drive.google.com/file/d/0B-VBkiewxpMAM29uUkI5YWpneEU/view?usp=sharing
You can use a combination. Quick adsense + shortcodes panel in newspaper
Yourpitstop, you need to exclude style.css from minify.
This is a bug in some layouts xD , for example Video Layout
@modernmavens Are you serious? You get white page after install? Check your sistem LOG and send it to developers team. I never have issues whit wp-optimize and i use for a loong time.
regards
I prefered dont use migration plugins 😛
Manual migration:
Just download a full backup from your actual server and backup your database.
Create a new database on new server, create an user. enter on database and import sql file (old database).
Upload all the site backup folder via ftp in the new server
open wp-config.php and remplace DB name and DB user. Save changues.
Finally just changue your dns to the new server and wait some minuts.
Done 🙂
Btw. you dont need made reactivation newspaper or something like that
que tal @arsonists
si solo usas visual composer puedes dejar speed booster
Pero si tienes otros plugins que son incompatibles es mejor usar el above the fold ya que ese no es incompatible.
Los settings para wprocket son
lazy load a imagenes (y desactiva la que incoporta el newspaper)
optimizar archivos palomea todas
cache movil
opciones avanzadas
Precarga de DNS
//fonts.googleapis.com
//ajax.googleapis.com
//stats.wp.com
//ssl.gstatic.com
//platform.twitter.com
archivos css a excluir
/wp-content/uploads/js_composer/custom.css
/wp-content/themes/Newspaper/style.css
Archivos js a excluir
/wp-content/themes/Newspaper/js/min/site.min.js
/wp-content/themes/Newspaper/js/min/td_external.js
sobre cachear la db depende de tu servidor, si estás en un shared de nada te ayuda, si estás en un vps o dedicado puedes dedicar mas recursos a la base de datos o cachear desde el servidor lo cual será mejor que con un plugin
Yajuuu! thank you very much @pmarius05
😛 i dontknow what its happening. If you use skype you can addme inggeek and i can try to help you.
Regards
@thomas Another thing, Wordfence isnt a god option 🙁 Its better to use jetpack and activate bruteforce. Wordfence + falcon only works well on Nginx and you need at least 4gb ram and 4 cores or your site will turns slower.
If you uninstall wordfence then you need to enter on phpmyadmin and detale manually around 10tables related to wordfence!!! Its a really a bad plugin xD
@gopal904 Yep, WP Rocket its F* OSOM!
@arsonists Así es. El Newspaper 6 tiene la opción de importar desde la 4, pero en si el theme es muy diferente internamente, de hecho V6 es 1MB mas ligero que v4!! por lo que importar ajustes sería una tontería si la estructura interna no es igual. Por las traducciones no te preocupes pues ahora ya viene traducido a español 😀
@thomas Hello thomas, you must use spanish code. Because i use google translator to translate tutorial from spanish to english and some translated code lines are bad. :-(. Try this:
/* 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’ );
@Bintmusic Regenerato thumbnails works very well 😀
@szysz If you are in shared hosting maybe you cant regenerate more than 10K images because it takes a hugh load of CPU. But you can download and install your site on your PC, install regenerate thumbnails, regenerate all thumbs and then upload all the content and Base data to your website.
Que tal @Alienplot, solo sigue los pasos que marqué en español. Y te recomiendo adquirir la licencia de Wp Rocket es el mejor plugin de cache, si lo haces me avisas para pasarte mi setup.
si no, puedes usar cualquiera de los otros plugins de cache, en especial el zencache en su versión básica es bastante decente te da buena velocidad y no consume mucha ram ni cpu lo cual mantiene veloz el sitio
@modernmavens Sorry, i cant edit the firs post 😛 and I forgot a comma in english part
add_filter( 'jetpack_implode_frontend_css', '__return_false' );
function dequeue_devicepx() {
wp_dequeue_script( 'devicepx' );
}
add_action( 'wp_enqueue_scripts', 'dequeue_devicepx', 20 );
Copy all the code i put on spanish part, and paste at the end in your functions.php
Regards
Use quick adsense plugin 🙂
Note 2: For osom image optimizatión you can use “ShortPixel Image Optimizer”.
😛 Thanks chris. I think i fix the problem 😛 regards
