popeating
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Deferred JavaScripts] Bad Bad Bad Bad Bad Bad Plugin !!i just did ALL the steps
disabled all plugins (including cache) restartd nginx, restarted varnish
it just keep ignoring wp_enqueue_scripti made a sample to load an empty script in function.php and it is ignored
Forum: Plugins
In reply to: [WP Deferred JavaScripts] Bad Bad Bad Bad Bad Bad Plugin !!ok, i just rebooted the server is it enough?
since i installed/unintalled your plugin wp_enqueu_script no longer worki just added a test in function.php to add an empty script and it is totally ignored
and it looks im not the only one with this issue
Forum: Plugins
In reply to: [WP Deferred JavaScripts] Bad Bad Bad Bad Bad Bad Plugin !!Were you able to solve it?
since i installed (and then removed it) it messed up all my script;
it looks i cant no longer call wp_enqueue_script (no script are included when i call it!)
please dont tell me to clean the browser cache or w3 cache or othet basic things like that!i modified (and it solved) the following:
$args = array( 'meta_query' => $meta_query, 'post_status' => 'publish' );to
$args = array( 'meta_query' => $meta_query, 'post_status' => 'publish', 'posts_per_page'=>50 );in templates/pagefrog-feed.php
or the query will limit to default posts_per_page (mine was set to 12)Forum: Plugins
In reply to: [AMP] /amp/ and ?amp=1 not workingi finally got the ?amp=1 working
still the /amp/ is not working
i tried any combination of activating/deactivating the plugin and rebuild the permalink
i noticed that if i disable AMP plugin and use /amp/ it 404
and if i enable it, it redirect (301) to the main post urlForum: Plugins
In reply to: [AMP] /amp/ and ?amp=1 not workingdone both
i guess its a problem of url rewrite, im using nginx and it seems im not getting any paramater outside permalinkForum: Plugins
In reply to: [ChimpMate - WordPress MailChimp Assistant] Facebook integrationThank you!
i just noticed that it works only for not logged user; if i am logged as admin they do not work!thanks again
Forum: Plugins
In reply to: [ChimpMate - WordPress MailChimp Assistant] Facebook integrationit seems i solved the facebook issue (i reuesed and onl fb app that i had)
now im trying to integrate G+, but clicking the g+ button the console gives the following error
signinCallback is not defined (on line 384 of public.js)Forum: Plugins
In reply to: [wp-mpdf] fontsSo i can only use ttf fonts in header and footer parts?
it looks in a review someone was able to use google fonts
Forum: Plugins
In reply to: [wp-mpdf] can't generate pdfjust made a scipt in the middle to parse the pdf, it was probably a configuration of my nginx that dropped the second get parameter
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Lightbox brokenif you use w3 total cache with a cdn (i had this problem with cloudflare), go where you configure CDN on w3, scroll to Rejected Files configuration and add that line in the box
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Lightbox brokenJust to let you know
if using w3 total cache with a cdn
it doesnt work if it load the js files from the cdn;
i just added a line like this:{plugins_dir}/responsive-lightbox/*.js
to the Rejected files of the CDN configuration of the W3TC plugin, it works again…Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Lightbox brokenYes, i always used a cdn (i changed it few day ago, but the lightbox was working with my previous one)
I deleted the cache, but still not working
it looks like a cdn issue, since if i disable it it start working; it was warking correctly with my prevoious cdn and it doesnt work with the current one (cloudflare)Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Lightbox brokensorry… forgot it
http://www.popeating.it
for example this one (i was using swipebox):
http://www.popeating.it/magazine/roberta-sudbrack-fuoco-mani-e-cervello-gli-ingredienti-della-mia-cucina/Forum: Plugins
In reply to: [Revisr] DB backup emptyHello… i just solved my problem
the error was due to the way i connect to MySQL; in my wp-config.php i have the following line:
define(‘DB_HOST’, ‘:/var/run/mysqld/mysqld.sock’);so it is not working using mysqldump
to have it work, i modified class-revisr-db.php to use “localhost” instead thand DB_HOST, where the script muild the connection string