Pau Forner Navarro
Forum Replies Created
-
Thanks! I think with both options I may have to sacrifice something important:
1- In this case, [cooked-browse] function will be disabled. And this is a shame, because it is great and a main functionality of any recipe web.
2- In this case, I will not be able to show the recipes on the homepage (as latests posts, etc).
Are you aware of any other options?
Thanks in advance
Forum: Plugins
In reply to: [Watu Quiz] Error Occured message after submitHi @prasunsen, sorry to bother you. As excluding the URLs with the quizzes to WPRocket didn’t work, I deactivated WPRocket. To my surprise, the problem is still happening so I guess it is not WP Rocket related. Any other idea? I will try deactivating each plugin.
Forum: Plugins
In reply to: [Watu Quiz] Error Occured message after submitThanks @prasunsen, I have added the URLs with the quizzes to WPRocket excluded URLs. I will check and let you know.
Forum: Plugins
In reply to: [Watu Quiz] Error Occured message after submitThanks for your help @prasunsen, I already did and cleared cache but that doesn’t seem to solve the problem. I still get the “Error occured” message. Any other suggestion?
Thanks in advance and best regards
Forum: Plugins
In reply to: [WooCommerce] Product Image linked to External URL with rel=nofollowHello Stuart, I finally did it. I placed the rel=”nofollow” in
/woocommerce/includes/wc-template-functions.php
like this:function woocommerce_template_loop_product_link_open() { echo '<a href="' . get_the_permalink() . '" class="woocommerce-LoopProduct-link" rel="nofollow">'; }
Thanks for your help!
Forum: Plugins
In reply to: [WooCommerce] Product Image linked to External URL with rel=nofollowThanks Stuart, as you suggested I added the nofollow atribute in
/woocommerce/templates/single-product/product-image.php
file like thisecho apply_filters( 'woocommerce_single_product_image_html', sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" data-rel="prettyPhoto%s" rel="nofollow">%s</a>', esc_url( $props['url'] ), esc_attr( $props['caption'] ), $gallery, $image ),
I hope I did it right. However I can’t see the nofollow rel while inspecting the link with Firebug. If it is an internal link being redirected to an external, should I still be able to see the nofollow rel?
Thanks again