thimy
Forum Replies Created
-
Hey, thanks for your answer, i understand that you want sell your Pro version but i use the free plugin.
So I looked for a way to override woocommerce schema instead of doing it through your plugin and implemented a snippet like this which works perfectly to remove “offers > prices” in schema :
function bs_product_delete_meta_price( $product = null ) { if ( ! is_object( $product ) ) { global $product; } if ( ! is_a( $product, 'WC_Product' ) ) { return; } if ( '' !== $product->get_price() ) { $shop_name = get_bloginfo( 'name' ); $shop_url = home_url(); $markup_offer = array( '@type' => 'Offer', 'availability' => 'https://schema.org/' . $stock = ( $product->is_in_stock() ? 'InStock' : 'OutOfStock' ), 'seller' => array( '@type' => 'Organization', 'name' => $shop_name, 'url' => $shop_url, ), ); } return $markup_offer; } add_filter( 'woocommerce_structured_data_product_offer', 'bs_product_delete_meta_price' );
I assume that Google don’t index this part and Search console return an error but my customer sell those products in b2b and its customers do not want to see the prices displayed.
If you think there is another solution, please let me know i’m curious to try it ??
Hi @arnaudbroes i implemente it and it works good ??
Cheers
Forum: Plugins
In reply to: [Booster for WooCommerce] Move a Checkout Custom Fieldsthank you for this feedback, I expressed myself badly I search a way to move this field in the billing part after the name of the company, is it possible and how? Thanks.
- This reply was modified 1 year, 4 months ago by thimy.
Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Show Button for a specific quantityHi @yithemes
Firstable thank you for your reply, i appreciate,
but this code isn’t work for me, i don’t understand why the add_action begin by ‘wp_footer’ ?Is it a function in your plugin and did you test it because there is no change for me.
Then, i search a way to deactivate the button (keeping the button visible) not by hiding it.
If there is no other choice, i take the hide with the display none css but with a functional code if possible ??Thanks again.
Forum: Plugins
In reply to: [HelloAsso] Integration pour r?le éditeurBonjour,
Merci pour votre retour, cela répond à la question en effet, pas comme je l’espérais mais je comprends mieux.
Ainsi une fois créé dans l’espace d’admin d’HellAsso, on intègre le shortcode depuis n’importe quel r?le.Dommage de ne pas pouvoir créer une campagne depuis l’interface de wordpress.
Bonne journée.Forum: Plugins
In reply to: [Slider - Ultimate Responsive Image Slider] Slider – full screen mode – ipadHello,
@weblizar_support, i completly agree, full screen button is not available on ios but i think it’s possible to make it compatible by placing it somewhere else.If you envisage to place it on the right side to the thumbnails, would it always be visible and accessible ?
I use a joomla plugin on another website and fullscreen mode function works on ios, have a look on this demo page :
https://www.amazing-templates.com/demos/jext/index.php/slide-show-imagecontent/avatar-slide-galleria/august-themeDo you think it could be work with your plugin ? Wich part of code it would be necessary to implement beside the thumbnails ?
Thanks to considere it,
I’m waiting your answer, thanks !- This reply was modified 6 years ago by thimy.
Forum: Plugins
In reply to: [WP Google Review Slider] Schema questionIt sounds good, thanks.
Hi,
Works fine thanks for fix it.
Hello,
Same for me with WP 4.9.1 with Divi 3.0.90.Error js, conflict.
I answer to myself,
after some tests it works if you don’t apply the purpose update of the override in the extensions page.
Need to modify (or not, your choice) your address email in the php files override (before or after upload don’t matter).Thanks for this great plugin !
- This reply was modified 7 years, 3 months ago by thimy.
Hi Nate,
I’d like to use your little addon for change the email of the “From header”.
I install the “rtb-override-notification-from-email.php” but it don’t work for me.Before i upload it i change the email adress on line 32.
But when i install it in backoffice it indicate a new version, i push on update version.Is it still relevant ?
Thanks for answer.
Thimy.