Title: thimy's Replies | WordPress.org

---

# thimy

  [  ](https://wordpress.org/support/users/thimy/)

 *   [Profile](https://wordpress.org/support/users/thimy/)
 *   [Topics Started](https://wordpress.org/support/users/thimy/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thimy/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thimy/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thimy/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thimy/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thimy/favorites/)

 Search replies:

## Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Woo Search - Product Search for WooCommerce] Migration to the new Divi 5 builder](https://wordpress.org/support/topic/migration-to-the-new-divi-5-builder/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/migration-to-the-new-divi-5-builder/#post-18860189)
 * Works good thank you for your reactivity.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Woo Search - Product Search for WooCommerce] Migration to the new Divi 5 builder](https://wordpress.org/support/topic/migration-to-the-new-divi-5-builder/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/migration-to-the-new-divi-5-builder/#post-18859941)
 * Hi, this new version crashed my website. I don’t use Divi 5. How can i resolve
   that? Thanks.
 * type E_ERROR a été causée dans la ligne 15 du fichier
 * /var/www/clients/client16/web49/web/wp-content/plugins/advanced-woo-search/includes/
   modules/divi/divi-5/server/Modules/AwsSearch/AwsSearch.php. Message d’erreur :
   Uncaught Error: Interface “ET\Builder\Framework\DependencyManagement\Interfaces\
   DependencyInterface” not found in /var/www/clients/client16/web49/web/wp-content/
   plugins/advanced-woo-search/includes/modules/divi/divi-5/server/Modules/AwsSearch/
   AwsSearch.php:15 Stack trace: #0 /var/www/clients/client16/web49/web/wp-content/
   plugins/advanced-woo-search/includes/modules/divi/divi-5/server/Modules/Modules.
   php(12): require_once() #1 /var/www/clients/client16/web49/web/wp-content/plugins/
   advanced-woo-search/includes/class-aws-integrations.php(394): include_once(‘…’)#
   2 /var/www/clients/client16/web49/web/wp-content/plugins/advanced-woo-search/
   includes/class-aws-integrations.php(78): AWS_Integrations->includes() #3 /var/
   www/clients/client16/web49/web/wp-content/plugins/advanced-woo-search/includes/
   class-aws-integrations.php(49): AWS_Integrations->__construct() #4 /var/www/clients/
   client16/web49/web/wp-content/plugins/advanced-woo-search/advanced-woo-search.
   php(223): AWS_Integrations::instance() #5 /var/www/clients/client16/web49/web/
   wp-includes/class-wp-hook.php(341): AWS_Main->init() #6 /var/www/clients/client16/
   web49/web/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters() #7 /var/
   www/clients/client16/web49/web/wp-includes/plugin.php(522): WP_Hook->do_action()#
   8 /var/www/clients/client16/web49/web/wp-settings.php(742): do_action() #9 /var/
   www/clients/client16/web49/web/wp-config.php(96): require_once(‘…’) #10 /var/
   www/clients/client16/web49/web/wp-load.php(50): require_once(‘…’) #11 /var/www/
   clients/client16/web49/web/wp-admin/admin.php(35): require_once(‘…’) #12 /var/
   www/clients/client16/web49/web/wp-admin/plugin-install.php(16): require_once(‘…’)#
   13 {main} thrown
    -  This reply was modified 1 month, 2 weeks ago by [thimy](https://wordpress.org/support/users/thimy/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic] Hide price woocommerce](https://wordpress.org/support/topic/hide-price-woocommerce/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/hide-price-woocommerce/#post-17503929)
 * 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 :
 *     ```wp-block-code
       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 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All in One SEO – Powerful SEO Plugin to Boost SEO Rankings & Increase Traffic] Duplicate content with shortcode option](https://wordpress.org/support/topic/duplicate-content-with-shortcode-option/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/duplicate-content-with-shortcode-option/#post-17404784)
 * Hi [@arnaudbroes](https://wordpress.org/support/users/arnaudbroes/) i implemente
   it and it works good 💪
 * Cheers
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Booster for WooCommerce – PDF Invoices, Abandoned Cart, Variation Swatches & 100+ Tools] Move a Checkout Custom Fields](https://wordpress.org/support/topic/move-a-checkout-custom-fields/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/move-a-checkout-custom-fields/#post-16895408)
 * thank 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 2 years, 10 months ago by [thimy](https://wordpress.org/support/users/thimy/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH Request a Quote for WooCommerce] Show Button for a specific quantity](https://wordpress.org/support/topic/show-button-for-a-specific-quantity/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/show-button-for-a-specific-quantity/#post-12525343)
 * Hi [@yithemes](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HelloAsso] Integration pour rôle éditeur](https://wordpress.org/support/topic/integration-pour-role-editeur/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/integration-pour-role-editeur/#post-12502521)
 * Bonjour,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Responsive Image Slider] Slider – full screen mode – ipad](https://wordpress.org/support/topic/slider-full-screen-mode-ipad/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/slider-full-screen-mode-ipad/#post-10898356)
 * Hello,
    [@weblizar_support](https://wordpress.org/support/users/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 :
    [http://www.amazing-templates.com/demos/jext/index.php/slide-show-imagecontent/avatar-slide-galleria/august-theme](http://www.amazing-templates.com/demos/jext/index.php/slide-show-imagecontent/avatar-slide-galleria/august-theme)
 * Do 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 7 years, 5 months ago by [thimy](https://wordpress.org/support/users/thimy/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Google Review Slider] Schema question](https://wordpress.org/support/topic/schema-question/)
 *  Thread Starter [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/schema-question/#post-10684959)
 * It sounds good, thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Social Feed - Social Photos Gallery and Post Feed for WordPress] Conflict with Divi](https://wordpress.org/support/topic/conflict-with-divi-3/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/conflict-with-divi-3/#post-9836457)
 * Hi,
 * Works fine thanks for fix it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Social Feed - Social Photos Gallery and Post Feed for WordPress] Conflict with Divi](https://wordpress.org/support/topic/conflict-with-divi-3/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/conflict-with-divi-3/#post-9759500)
 * Hello,
    Same for me with WP 4.9.1 with Divi 3.0.90.
 * Error js, conflict.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Five Star Restaurant Reservations - WordPress Booking Plugin] Wrong “From” Email](https://wordpress.org/support/topic/wrong-from-email/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/wrong-from-email/#post-9380927)
 * 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 8 years, 9 months ago by [thimy](https://wordpress.org/support/users/thimy/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Five Star Restaurant Reservations - WordPress Booking Plugin] Wrong “From” Email](https://wordpress.org/support/topic/wrong-from-email/)
 *  [thimy](https://wordpress.org/support/users/thimy/)
 * (@thimy)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/wrong-from-email/#post-9380665)
 * 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.

Viewing 13 replies - 1 through 13 (of 13 total)