Title: webtinker's Replies | WordPress.org

---

# webtinker

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

 *   [Profile](https://wordpress.org/support/users/webtinker/)
 *   [Topics Started](https://wordpress.org/support/users/webtinker/topics/)
 *   [Replies Created](https://wordpress.org/support/users/webtinker/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/webtinker/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/webtinker/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/webtinker/engagements/)
 *   [Favorites](https://wordpress.org/support/users/webtinker/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: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] IPN Issue](https://wordpress.org/support/topic/ipn-issue-6/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/ipn-issue-6/#post-15873066)
 * Hi Jason,
 * Thanks for your prompt reply, I will try to use the snippet and let you know 
   the outcome. But am travelling and only back to work on Monday. Anyhow the Gravity
   Forms Callback Notification URL is as follows: [https://www.supermodeloftheyear.com/?callback=gravityformspaypal](https://www.supermodeloftheyear.com/?callback=gravityformspaypal)
 * Thanks once again, really appreciate your response.
    Cheers! Amarnath.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Grid/List View for WooCommerce] List View Not working correctly](https://wordpress.org/support/topic/list-view-not-working-correctly/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/list-view-not-working-correctly/#post-15267076)
 * Dear Dima,
 * Thanks for the fix. Worked like a charm.
    Highly appreciate your quick support.
 * Regards,
    Amarnath Jaganathan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gum Addon for Elementor] Desktop Alignment Issues](https://wordpress.org/support/topic/desktop-alignment-issues/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/desktop-alignment-issues/#post-14904983)
 * Dear Atawai,
 * Thank you for a quick response. I tried it now still the pop-up is partially 
   hidden on both sides.
    Kindly see the link: [https://prnt.sc/1tg2sjh](https://prnt.sc/1tg2sjh)
 * Thanks in advance for any further help.
    Regards Amarnath Jaganathan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Gift Cards] Related Products Not showing on single product view](https://wordpress.org/support/topic/related-products-not-showing-on-single-product-view/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/related-products-not-showing-on-single-product-view/#post-12965043)
 * [@yithemes](https://wordpress.org/support/users/yithemes/) Thank you for your
   prompt reply. Yes you are correct, we have disabled your GIFT Card Plugin for
   now with some other plugin related issue. Also we figured it out, that the Owl
   Carousel Plugin which came pre-rolled with the purchased theme by client was 
   causing that issue. That is also fixed now.
 * Thanks once again for your reply. Really appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Maker - Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popup Builder] Cursor Pointer Not Working](https://wordpress.org/support/topic/cursor-pointer-not-working/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/cursor-pointer-not-working/#post-11351651)
 * hi danieliser,
 * Thanks for your reply. I cleared the cache and it worked for me as well.
    No 
   issues.
 * Cheers
    Amarnath
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove Add to Cart Button on Condition](https://wordpress.org/support/topic/remove-add-to-cart-button-on-condition/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/remove-add-to-cart-button-on-condition/#post-10493155)
 * [@conschneider](https://wordpress.org/support/users/conschneider/) apparently
   achieved finally with a simple jQuery call when a save_form_message ID is true,
   disable submit button.
 *     ```
       <script type="text/javascript">
   
           if (jQuery(".form_saved_message").length > 0) {
       		          jQuery('.single_add_to_cart_button').hide();
           }
       </script>
       ```
   
 * Thanks once again for your advice, which lead me to find this snippet and fix
   the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Hide ADD TO CART upon Save and Continue](https://wordpress.org/support/topic/hide-add-to-cart-upon-save-and-continue/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/hide-add-to-cart-upon-save-and-continue/#post-10493154)
 * [@amandasjackson](https://wordpress.org/support/users/amandasjackson/) thanks
   for your guidance. But apparently achieved this via a simple jQuery call when
   a save_form_message ID is true disable submit button.
 *     ```
       <script type="text/javascript">
   
           if (jQuery(".form_saved_message").length > 0) {
       		          jQuery('.single_add_to_cart_button').hide();
           }
       </script>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove Add to Cart Button on Condition](https://wordpress.org/support/topic/remove-add-to-cart-button-on-condition/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/remove-add-to-cart-button-on-condition/#post-10484102)
 * [@conschneider](https://wordpress.org/support/users/conschneider/) thank you 
   very much for the jsfiddle.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Five Star Restaurant Reservations - WordPress Booking Plugin] Google re-CAPTCHA in booking-form](https://wordpress.org/support/topic/google-re-captcha-in-booking-form/)
 *  [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/google-re-captcha-in-booking-form/#post-10335156)
 * Thanks for that function [@natewr](https://wordpress.org/support/users/natewr/)
   really appreciate, someone earlier asked the same and you have mentioned that
   you are not offering this as out-of-box solution yet. Thus i managed my method
   as a quick solution on a client site.
 * Now i will take note of this function, and use it appropriately in future.
    Thanks
   once again. Regards Amar
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Five Star Restaurant Reservations - WordPress Booking Plugin] Google re-CAPTCHA in booking-form](https://wordpress.org/support/topic/google-re-captcha-in-booking-form/)
 *  [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/google-re-captcha-in-booking-form/#post-10328888)
 * Hi Maria
 * 1. The file you need to edit is located in the following path: ” wp-content/plugins/
   restaurant-reservations/includes/template-functions.php”
    2. Find this line: `
   <?php do_action( 'rtb_booking_form_after_fields' ); ?>` and enter your snippet
   <div class=”g-recaptcha” data-sitekey=”**my-site-key**”></div> below the php 
   code(i assume you already generated the site key) 3. You need to enter the following
   javascript snippet on the header.php file before the </head> tag: <script src
   =’[https://www.google.com/recaptcha/api.js’></script&gt](https://www.google.com/recaptcha/api.js’></script&gt);
 * Will work like a charm.
    Amarnath J.
    -  This reply was modified 7 years, 11 months ago by [webtinker](https://wordpress.org/support/users/webtinker/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [SUBMIT button positioning](https://wordpress.org/support/topic/submit-button-positioning/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/submit-button-positioning/#post-10068927)
 * Thank you 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] No shipping tab](https://wordpress.org/support/topic/no-shipping-tab/)
 *  [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/no-shipping-tab/#post-9143379)
 * Really Appreciate it.
 * Thank you very much Khyati.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] WooCommerce Shop Layout](https://wordpress.org/support/topic/woocommerce-shop-layout-2/)
 *  Thread Starter [webtinker](https://wordpress.org/support/users/webtinker/)
 * (@webtinker)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/woocommerce-shop-layout-2/#post-8645353)
 * Thank you very much for the references. I will check them out.

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