germanmazza
Forum Replies Created
-
Forum: Reviews
In reply to: [Woo Mercado Pago Module Oficial] Cuidado! Ralentiza todo WPHola! me pasaba lo mismo hasta que desactive mercadoenvios. En la web de otro cliente tuve que borrar lineas de codigo que activan mercadoenvios para que funcione el sistema de pago.
Si conseguis ayuda de los programadores de mercadopago, es un milagro… nadie jamas vio una respuesta de ellos.Forum: Plugins
In reply to: [Woo Mercado Pago Module Oficial] no funciona mewrcadoenviosEstamos en la misma, si por una de esas casualidades te ayudan, es un milagro.. ya podes esperar que reviva jesus tambien.
Forum: Plugins
In reply to: [WP-DBManager] Cannot restore databaseI thought you had another plugin to upload it by php or something… but I cant go for phpmyadmin, my db is 100mb. I can only upload throught SSH.
Never mind, thanks anywayYou told me to open up a ticket and now they told me I need a paid account.
Whats going on? are you going to help me please?
support ticket ready, let me know here if you need something else. thanks
Yes no problem, opening ticket right away
Forum: Plugins
In reply to: [Cloudflare] Entering email and API key no longer worksHi, today i try the api and the email adress and now works. Maybe it was a cloudflare server error.
I didnt change anything, not even the cache of my site.@cloudflare in twitter reports errors from yesterday
Thanks!
Forum: Plugins
In reply to: [Cloudflare] Entering email and API key no longer worksI’m having the same issue.
My first Issue was “forbbiden” settings page in wordpress plugin.
Deactivate the plug in, re install it.
Now I got this “invalid email or api key” but my credentials are OK.Any ideas how to fix this??
thanksForum: Plugins
In reply to: [WooCommerce] Some store products price missingAnyone?? any idea please?
Forum: Plugins
In reply to: [WooCommerce] wc-ajax=get_refreshed_fragmentsI’ve found a solution with a simple code in this post, check ??
https://www.ads-software.com/support/topic/wc-ajaxget_refreshed_fragments-slow-loading/Forum: Plugins
In reply to: [Menu Cart for WooCommerce] ?wc-ajax=get_refreshed_fragmentsI got a solution, check at the bottom of this post:
https://www.ads-software.com/support/topic/wc-ajaxget_refreshed_fragments-slow-loading/
Forum: Plugins
In reply to: [WP-DBManager] 404 saving optionsSolved, it was a new MODSECURITY rule. Disabled modsecurity and was working fine.
Spoke to the host administrator to ask they remove that rule and they add an exception.
Now working finethanks
I’ve set new rules to easly ban people attacking the site. Also added country restrictions to avoid a lot of hackers.
If anyone’s requests exceed 240
If a crawler’s page views exceed 240
then
If a crawler’s pages not found (404s) exceed 30then
If a human’s page views exceed 240then
If a human’s pages not found (404s) exceed 30then
If 404s for known vulnerable URLs exceed 10Add throttle or block depending on the rule they brake
Hope it helps ??Forum: Plugins
In reply to: [WooCommerce] ?wc-ajax=get_refreshed_fragments – slow loadingFirst time im helping out people in www.ads-software.com so be nice ??
I found a code to stop refreshed fragments in all the site but that thing returned errors in variable products: ” ReferenceError: wc_cart_fragments_params is not defined ” (check that in chrome console)
Soooo… I modify that code to ONLY stop fragments in ‘page’ and ‘post’ using is_singular().
here it is, hope it helps. Add to funtions.php in your child theme:
add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_cart_fragments’, 11); function dequeue_woocommerce_cart_fragments() { if (is_front_page() || is_singular(‘page’) || is_singular(‘post’) ) wp_dequeue_script(‘wc-cart-fragments’); }IF you want, you can delete ” || is_singular(‘page’) ” to allow fragments in pages
or you can delete ” || is_singular(‘post’) ” to allow them on posts.
Also delete is_front_page() and it will allow fragments in home pageGood luck people!
- This reply was modified 7 years, 10 months ago by germanmazza. Reason: added where to paste the code