Title: webdev's Replies | WordPress.org

---

# webdev

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Notifima – WooCommerce Stock Manager, Inventory Management, Waitlist] How to add Unsubscribe Link in Alert Email??](https://wordpress.org/support/topic/how-to-add-unsubscribe-link-in-alert-email/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-unsubscribe-link-in-alert-email/#post-17155795)
 * Hi mouindi, 
   I know i have to do custom code but what will be the Hook ?, i will
   find the hook to add custom data in mail , but what will be the link or shortcode
   to generate unique **Unsubscribe Link **for that email only so that on once user
   visit it it will unsubscribe the user ..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Product Filters] Auto set filter Colors from attribute swatches](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/#post-15363225)
 * Hi RazyRx,
 * with paid version the filtering for Brands will work right ?
 * [https://wordpress.org/plugins/perfect-woocommerce-brands/](https://wordpress.org/plugins/perfect-woocommerce-brands/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Product Filters] Auto set filter Colors from attribute swatches](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/#post-15353657)
 * Hi RazyRx,
    Thanks for your suggestions, looks like that add-on will work
 * we have used this plugin for brands in our site
    [https://wordpress.org/plugins/perfect-woocommerce-brands/](https://wordpress.org/plugins/perfect-woocommerce-brands/)
 * When creating new filter it does not showing any Brand in list, How can i create
   filter for Brands ??
    [http://prntscr.com/26tj1ey](http://prntscr.com/26tj1ey)
 * Also when i created condition for Nested Filter it shows Brand in it,
    [http://prntscr.com/26tj2hq](http://prntscr.com/26tj2hq)
 * but why its not showing Brand when creating Filter ??
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced AJAX Product Filters] Auto set filter Colors from attribute swatches](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/auto-set-filter-colors-from-attribute-swatches/#post-15350371)
 * can i achieve Flow shown in this image ??
    [http://prntscr.com/26s4f1b](http://prntscr.com/26s4f1b)
 * When we select values in on 1st dropdowns it will load values of other based 
   on previous selection…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search with Category name not working](https://wordpress.org/support/topic/search-with-category-name-not-working/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/search-with-category-name-not-working/#post-15310090)
 * Hi Mikko Saari,
    you link for Flatsome live documentations helped and now its
   showing results from revanssi to live search,
 * Regrading indexing parent categories i have added filter in function.php of child
   theme and then re-run the indexing process , and then with debug checked one 
   of product from child which still shows same data in results, does not shows 
   terms from parent category
 *     ```
       add_filter( 'relevanssi_content_to_index', 'rlv_parent_categories', 10, 2 );
       function rlv_parent_categories( $content, $post ) {
       	$categories = get_the_terms( $post->ID, 'product_cat' );
       	if ( is_array( $categories ) ) {
       		foreach ( $categories as $category ) {
       			if ( ! empty( $category->parent ) ) {
       				$parent = get_term( $category->parent, 'product_cat' );
       				$content .= $parent->name;
       			}
       		}
       	}
       	return $content;
       }
       ```
   
 * here is screenshot parent category is Mobility Scooters which is not showing 
   [http://prntscr.com/26mc5i5](http://prntscr.com/26mc5i5)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Search with Category name not working](https://wordpress.org/support/topic/search-with-category-name-not-working/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/search-with-category-name-not-working/#post-15296597)
 * Hi Mikko Saari,
 * **Patient lifting** is parent category and Electric Lift Chairs is child category,
   products are in Electric Lift Chairs child category.
 * So in debug its not showing any term from parent category ,
    here is debug of
   one of the product [http://prntscr.com/26k0m3h](http://prntscr.com/26k0m3h)
 * we are using Flatsome theme which have Ajax based live search which shows search
   results as user starts typing…
 * in live search it does not how any products for “Patient lifting”
    [http://prntscr.com/26k0gj1](http://prntscr.com/26k0gj1)
 * But when i disable live search of theme and just use default search then it shows
   product for **Patient lifting** parent category name also, search results have
   products from other category also but looks related to keyword
 * So what should i do to fix the live search ?
 * is there any way to show Relevanssi search results with ajax similar to live 
   search ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] How to add ” View in Browser ” link to woocommerce mails](https://wordpress.org/support/topic/how-to-add-view-in-browser-link-to-woocommerce-mails/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/how-to-add-view-in-browser-link-to-woocommerce-mails/#post-14873462)
 * Hi,
 * Can it be done by this paid plugin from woocommerce ??
 * [https://docs.woocommerce.com/document/automated-follow-up-emails-docs/email-variables-and-merge-tags/](https://docs.woocommerce.com/document/automated-follow-up-emails-docs/email-variables-and-merge-tags/)
   
   [https://woocommerce.com/products/follow-up-emails/?_ga=2.254307211.2060866129.1631690994-2038883179.1610514664](https://woocommerce.com/products/follow-up-emails/?_ga=2.254307211.2060866129.1631690994-2038883179.1610514664)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Stripe Payment Gateway] Billing Last name is a required field error with Google Pay](https://wordpress.org/support/topic/billing-last-name-is-a-required-field-error-with-google-pay/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/billing-last-name-is-a-required-field-error-with-google-pay/#post-14246903)
 * Hi,
 * Currently Google Pay button shows on product page and cart page , not on checkout
   as Google Pay used for faster checkouts, so with google pay we don’t have any
   form to fill..
 * I have tested from cart page it shows “Billing Last name is a required field 
   error” in cart page, where there is no any form to fill..
 * error is due to Billing Last name is a required by default for woocommerce, and
   as I know google pay does not pass Last name, it only pass data in First name…
 * I have fixed the error by adding code to **disabled required field for Last name**,
   and then it works…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Super Progressive Web Apps] PWA support for WooCommerce ?](https://wordpress.org/support/topic/pwa-support-for-woocommerce/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/pwa-support-for-woocommerce/#post-13198285)
 * Hi ,
    I have added this plugin and configured to my site but when i tried to 
   add it to home screen but its added as shortcut not an pwa app, this is the staging
   site on which i have added it. [https://www.staging3.5starpresents.com/](https://www.staging3.5starpresents.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] CF7 version 3 recaptcha not working (5.1.1)](https://wordpress.org/support/topic/cf7-version-3-recaptcha-not-working-5-1-1/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/cf7-version-3-recaptcha-not-working-5-1-1/#post-11301743)
 * [@takayukister](https://wordpress.org/support/users/takayukister/)
 * Flatsome theme and many other plugins (about 40-50)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPSSO Core - Complete Schema Markup and Meta Tags] “modified plugin file” says Wordfence?](https://wordpress.org/support/topic/modified-plugin-file-says-wordfence-2/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/modified-plugin-file-says-wordfence-2/#post-11173611)
 * Hi Js,
    It means there is nothing to worry about, right ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Draft product checkout issue](https://wordpress.org/support/topic/draft-product-checkout-issue/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/draft-product-checkout-issue/#post-10738083)
 * Hi Kartik,
    Thanks for the replay But i think this issue needs to be fix in woocommerce
   update.
    -  This reply was modified 7 years, 8 months ago by [webdev](https://wordpress.org/support/users/swapnilwebdev/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customer Reviews for WooCommerce] recaptacha issue and conflicts](https://wordpress.org/support/topic/recaptacha-issue-and-conflicts/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/recaptacha-issue-and-conflicts/#post-10581306)
 * Hi ivole,
    you are using static ids for assuming only one captcha in page and
   that’s your, but i am also using other captcha in same page, which have same 
   id** #g-recaptcha-response**, so it triggers your condition. which creates issue.
 * **<script src=”[https://www.google.com/recaptcha/api.js&#8221](https://www.google.com/recaptcha/api.js&#8221);
   defer></script>**
    this script is added by me to set manually invisible captcha
   for other forms.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customer Reviews for WooCommerce] recaptacha issue and conflicts](https://wordpress.org/support/topic/recaptacha-issue-and-conflicts/)
 *  Thread Starter [webdev](https://wordpress.org/support/users/swapnilwebdev/)
 * (@swapnilwebdev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/recaptacha-issue-and-conflicts/#post-10580619)
 * Hi,
    **After deactivating captcha, can you please try clearing your browser cache?
   Captcha HTML and JS code can remain if the page is cached.** I have already check
   with deactivating and clearing cache from browser, but still it don’t allow to
   submit, same alert message **“Please confirm that you are not a robot” **, Please
   check your plugin’s frontend.js file, which have code to check captcha, that 
   creates the issue, you have to check if captcha is enabled then only validate
   in js, but that is not implemented. [http://prntscr.com/khatsp](http://prntscr.com/khatsp)
 *     ```
       //prevent review submission if captcha is not solved
         jQuery("#commentform").submit(function(event) {
           var recaptcha = jQuery("#g-recaptcha-response").val();
           if (recaptcha === "") {
             event.preventDefault();
             alert("Please confirm that you are not a robot");
           }
         });
       ```
   
 * Also in your code you have used fixed id or google recaptcha, but if other captcha
   loads before your captcha then your id will be changed so it will not work.
    
   I have pass through all those error in this page.
 * Please check those cases.
 * Thanks.

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