elankathir
Forum Replies Created
-
Hi @magazine3,
I have added the PWA Dashboard in the github link,
https://github.com/ahmedkaludi/push-notification/issues/25#issuecomment-1030349393plz help us to resolve this issue.
Hi,
I have enabled the Push Notification for “https://cbmeat.com/panathur” and its subsite under the domain cbmeat.com
Plz help us to resolve the same.
The same issue has been reported on github.com/ahmedkaludi?
https://github.com/ahmedkaludi/push-notification/issues/25the pop-up does not come after configuration.
URL: cbmeat.com
Using “Progressive Web Apps For WP” PluginCan you help us to resolve the same?
I do have the same issue.
the pop-up does not come after configuration.Hi @magazine3,
cbmeat.com – Primary Site
Respective sub-sites as subdirectories,
cbmeat.com/panathur
cbmeat.com/ecity
etc..Note: Plugin works for Primary Site, but not working for sub-sites
Plz help us to resolve the same.
Forum: Plugins
In reply to: [PWA for WP - Progressive Web Apps Made Simple] Not wokring in Multisite?Hi Team,
We do have the same issue of “Service Worker not working” with our multisite WordPress website.
Same Error as Mr. Deb (@silumant) reported,
https://prnt.sc/20hl3ep
https://monosnap.com/file/kPPeCxEYA3vNRpisS6zyct6XVaQjphIt works fine with our primary site of multisite WordPress. The issue is only with the sub-site / subdirectories of the same multisite WordPress instance.
Looks like it’s having a problem with the multisite configuration and something related to this issue on Github. (https://github.com/ahmedkaludi/pwa-for-wp/issues/298)
Plz help us to resolve the same.
Installed Version:
WordPress Version 5.8.2
WooCommerce Version 5.9.0
Active Theme – Storefront (storefront) 3.9.1
PWA for WP Version 1.7.40- This reply was modified 4 years, 5 months ago by elankathir. Reason: sub-site or subdirectory
Forum: Plugins
In reply to: [Razorpay for WooCommerce] Error in latest version –Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] Mulisite supportPlugin Works for multisite now.
Forum: Plugins
In reply to: [Razorpay for WooCommerce] RazarPay Works for WooCommerce MultisiteIt works with WordPress Multisite Configuration
Forum: Plugins
In reply to: [WooCommerce] Coupon management has moved! – noticeYes @dougaitken, I’m using the above SQL Script to update the database every Admin Notice.
Wait for the permanent fix from the Plugin Owner.
Forum: Plugins
In reply to: [WooCommerce] Coupon management has moved! – noticeTry this if you are familiar with SQL and Database,
1. Connect to the SQL WordPress Database
Refer: https://docs.bitnami.com/aws/apps/wordpress-multisite/get-started/access-phpmyadmin/2.1 Update the record related to “Update” (Single Site)
UPDATE wp_wc_admin_notes SET status='actioned' WHERE type = 'update';2.2 Update the record related to “Update” (Multi-Site)
Replace <SiteID> with your respective Site ID (Means different table for different site in the Multi-Site Installtion like wp_2_wc_admin_notes)
UPDATE wp_<SiteID>_wc_admin_notes SET status='actioned' WHERE type = 'update';Note : Use SELECT statement to check the record status before making changes (
Select * from wp_wc_admin_notes WHERE type = 'update')Forum: Plugins
In reply to: [WooCommerce] Coupon management has moved! – noticeYes, we do have this notice issues with coupon and WC database update..,
1. Coupon management has moved!
2. WooCommerce database update doneWe are using the following code to hide the admin notice (quick, but not right solution)
add_action( 'admin_head', 'admin_css' ); function admin_css() { echo " <style type='text/css'>.is-alert-update {display: none;}</style> "; }Code Reference: https://ww.wp.xz.cn/support/topic/from-3-8-to-4-01-woocommerce-database-update-done-wont-go-away/
But we need a permanent fix for this issue on the WC plugin.
Hi,
Looks like again, it’s not working after the latest updates.
I have tried the QR Code only after enabling this snippet.
add_filter( 'upiwc_order_total_amount', 'upiwc_update_order_total' ); function upiwc_update_order_total( $total ) { $total = ( $total * 30 ) / 100; return $total; }But it’s not working.. it shows the same total invoice value on the payment app (Paytm & BHIM App). It also shows the Amount to be Paid (below the QR Code) as order total only.