calduchoweb
Forum Replies Created
-
Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Images links in googlesheetThanks for the reply! I have already bought the Pro version, but it always overwrites the second row. Does not add new rows in new sends…
Forum: Plugins
In reply to: [CF7 Google Sheets Connector] Images links in googlesheetHello. I have the plugin updated to the latest version 4.6, but the name of the images still appear instead of the url. Do I need to change something to make it work?
Thanks.- This reply was modified 3 years, 8 months ago by calduchoweb.
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] No apperar pricePlease, I need the price to be shown correctly and in its format. You can see in the test tool that the price appears badly formatted and without VAT: https://search.google.com/structured-data/testing-tool/u/0/?hl=es#url=https%3A % 2F% 2Fheyjoe.es% 2Fproduct% 2Fbeard-oil-no-1-classic-joe-beard-oil
And in the preview the same thing happens: https://www.google.com/search?prvw=AP1HcD0YY1UJLmEMHUlHctPuKRLv&q=previewid%3A4f731454-cd2e-4e35-9427-329e69638f8b&useragent=Mozilla%3+Andux+roid=Mozilla%3+Andux+roid%3+Andux+roid%3+Anduxroid .1% 3B + Nexus + 6 + Build% 2FN6F27M% 29 + AppleWebKit% 2F537.36 +% 28KHTML% 2C + like + Gecko% 29 + Chrome% 2F66.0.3359.106 + Mobile + Safari% 2F537.36 & filter = 0 & gws_rd = cr & newwindow = 1 & igu = 1The price that should appear is € 19.50 (and not € 16.1157 or € 161.157.00)
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] No apperar priceSome help with it please?
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] No apperar priceOK, although I’ve been waiting for more than a month for it to update …
On the other hand, the price it shows is not correct and I need to correct it … I give you the link of the product so that you can check it.
https://heyjoe.es/producto/beard-oil-no-1-classic-joe-aceite-barba
Thank you!
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Doesn’t work with YotpoYes, the problem continues. I have already created a new thread.
Thank you very much for being attentive.A greeting!
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Doesn’t work with YotpoYes, what appears from the reviews is now correct. But I am missing the price data that previously appeared but after the update they have disappeared.
How could I add them automatically just like I was before?
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Doesn’t work with YotpoAny possible solution for the price to appear in Google searches? And that appears with VAT included? Or is it necessary to make some update of the plugin that corrects that?
Thank you very much.Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Doesn’t work with YotpoYes, as soon as you see that you have added it, I have activated it. It seems that it is already correct in Google searches too (I suppose we had to wait for it to update). The problem is that the Price does not appear yet (in the test it continues to come out without VAT and I need it to be forced with VAT included and that appears in Google searches).
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Doesn’t work with YotpoPerfect! Thank you very much. Yotpo reviews are out. But a couple of doubts arise …
On the one hand, the price without VAT appears. How could I tell you to show prices with VAT?
On the other hand, Google continues to show only WooCommerce reviews and not Yotpo (in the rich snippets test tool they do come out):
https://www.google.es/search?ei=1EARX8_TAYCcjLsP99mu0Ak&q=site%3Ahttps%3A%2F%2Fheyjoe.es%2Fproducto%2Fbeard-soap-on-a-rope-jabon-para-barba&oq=site%3Ahtt% 3A% 2F% 2Fheyjoe.es% 2Fproducto% 2Fbeard-soap-on-a-rope-soap-to-beard & gs_lcp = CgZwc3ktYWIQA1AAWABgwFZoAHAAeACAATeIATeSAQExmAEAqgEHZ3dzLXdpeg & sclient = psy-ab & ved = 0ahUKEwjPjc2b0NPqAhUADmMBHfesC5oQ4dUDCAw & uact = 5
Forum: Plugins
In reply to: [Contact Form 7] Doesn’t work in LightboxThank you very much! That was just the problem.
Forum: Plugins
In reply to: [WooCommerce] URL to add to cart multiple productsHello @3sonsdevelopment
Many thanks! It is just what I was looking for.
In case someone else helps, the code that has worked for me is the following:add_action( 'wp_loaded', 'add_multiple_to_cart_action', 20 ); function add_multiple_to_cart_action() { if ( ! isset( $_REQUEST['multiple-item-to-cart'] ) || false === strpos( wp_unslash( $_REQUEST['multiple-item-to-cart'] ), '|' ) ) { // phpcs:ignore WordPress.Security.NonceVerification.NoNonceVerification, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized return; } wc_nocache_headers(); $product_ids = apply_filters( 'woocommerce_add_to_cart_product_id', wp_unslash( $_REQUEST['multiple-item-to-cart'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.NoNonceVerification $product_ids = explode( '|', $product_ids ); if( ! is_array( $product_ids ) ) return; $product_ids = array_map( 'absint', $product_ids ); $was_added_to_cart = false; $last_product_id = end($product_ids); //stop re-direction add_filter( 'woocommerce_add_to_cart_redirect', '__return_false' ); foreach ($product_ids as $index => $product_id ) { $product_id = absint( $product_id ); if( empty( $product_id ) ) continue; $_REQUEST['add-to-cart'] = $product_id; if( $product_id === $last_product_id ) { add_filter( 'option_woocommerce_cart_redirect_after_add', function() { return 'yes'; } ); } else { add_filter( 'option_woocommerce_cart_redirect_after_add', function() { return 'no'; } ); } WC_Form_Handler::add_to_cart_action(); } }
A greeting!
OK. Thank you very much for confirming it.
A greeting!
Forum: Plugins
In reply to: [Joinchat] Icono de WhatsApp no se muestra en SafariGenial!
Muchas gracias por la actualización!!!
Así da gusto respondiendo tan rápido a las sugerencias.
Ok. Thanks!