Title: roghithsam's Replies | WordPress.org

---

# roghithsam

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/roghithsam/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/roghithsam/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/roghithsam/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/roghithsam/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Spam Protect for Contact Form 7] WP Mail SMTP admin page shows blank / empty screen](https://wordpress.org/support/topic/wp-mail-smtp-admin-page-shows-blank-empty-screen/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [5 months ago](https://wordpress.org/support/topic/wp-mail-smtp-admin-page-shows-blank-empty-screen/#post-18783209)
 * I found the cause of the blank / empty admin pages issue.
 * The problem is this line in the plugin code: wp-contact-form-7-spam-blocker/admin/
   class-admin.php on line 315 on function spcf7_enqueue_scripts(){}
 * if (isset($_GET[‘page’]) && $_GET[‘page’]=”wpcf7″){ ….. }
 * The single = assigns the value instead of comparing it, causing the condition
   to always be true and the script to load on all admin pages, which leads to JavaScript
   conflicts and blank screens (e.g. WP Mail SMTP).
 * Fix: if ( isset($_GET[‘page’]) && $_GET[‘page’] === ‘wpcf7’ ) { ….. }
 * After this change, the issue is resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Login Not Working When Cache is Enabled](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/#post-18453189)
 * Here’s the complete file link: [https://drive.google.com/file/d/1AMjiNgM5cKUUReoOsBVDjHCWGwAG6kT9/view?usp=drive_link](https://drive.google.com/file/d/1AMjiNgM5cKUUReoOsBVDjHCWGwAG6kT9/view?usp=drive_link)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Login Not Working When Cache is Enabled](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/#post-18451119)
 * [@qtwrk](https://wordpress.org/support/users/qtwrk/) Here’s the code: [https://drive.google.com/drive/folders/1H_haHCdm0MOh1Z12lZ_u4C5sg8PWQjFm?usp=sharing](https://drive.google.com/drive/folders/1H_haHCdm0MOh1Z12lZ_u4C5sg8PWQjFm?usp=sharing)
    -  This reply was modified 1 year, 1 month ago by [roghithsam](https://wordpress.org/support/users/roghithsam/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Login Not Working When Cache is Enabled](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/#post-18449193)
 * Here the location [https://prnt.sc/FNsSAPjAA9yF](https://prnt.sc/FNsSAPjAA9yF)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Login Not Working When Cache is Enabled](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/#post-18449124)
 * [@qtwrk](https://wordpress.org/support/users/qtwrk/), I don’t know what request
   is being sent in the header. Here’s the site link: _[ Short link moved to link
   field, do not use short links here on this site ]_
 * 
   On the top right corner, there’s a user icon. Click it to open the login form.
   Enter the username and password as **[ deleted, don’t post login either ]**, 
   then check the console for any errors.
 * Currently the cache is enabled in site.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Login Not Working When Cache is Enabled](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/login-not-working-when-cache-is-enabled/#post-18448495)
 * Hi [@qtwrk](https://wordpress.org/support/users/qtwrk/), Here’s the details:
 *  Last Report Number: **OVTWHYBE**
 * Last Report Date: **05/04/2025 05:02:57**
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PiWeb Disable payment method / Partial payment for WooCommerce] Partial Payment Based on Shipping Method](https://wordpress.org/support/topic/partial-payment-based-on-shipping-method/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/partial-payment-based-on-shipping-method/#post-18447799)
 * If Refund available Incase incompatibility with shiprocket plugin or you can 
   a test with shiprocket plugin
    -  This reply was modified 1 year, 1 month ago by [roghithsam](https://wordpress.org/support/users/roghithsam/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PiWeb Disable payment method / Partial payment for WooCommerce] Partial Payment Based on Shipping Method](https://wordpress.org/support/topic/partial-payment-based-on-shipping-method/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/partial-payment-based-on-shipping-method/#post-18447780)
 * [@rajeshsingh520](https://wordpress.org/support/users/rajeshsingh520/) Thank 
   you, buddy! I’m ready to make the purchase the pro one. May I know if it’s compatible
   with the Shiprocket plugin to properly collect COD for partially paid orders?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[miniOrange OTP Login, Verification and SMS Notifications] different phone fields](https://wordpress.org/support/topic/different-phone-fields/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/different-phone-fields/#post-18313670)
 * In woocommerce registration form and account details
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMS Alert – SMS & OTP for WooCommerce, Order Notifications & Abandoned Cart Recovery] Send otp to email and Phone](https://wordpress.org/support/topic/send-otp-to-email-and-phone/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/send-otp-to-email-and-phone/#post-18275181)
 * It is possible to use a separate phone number for the account and billing. However,
   when the user changes the billing phone number at checkout, the login phone number
   is also modified. Some Customer Confused in login
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Food Store - Online Food Delivery & Pickup] Conflict Between Filters and wfs_adding_custom_price() in Plugin](https://wordpress.org/support/topic/conflict-between-filters-and-wfs_adding_custom_price-in-plugin/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/conflict-between-filters-and-wfs_adding_custom_price-in-plugin/#post-18267804)
 * But, In my shop all foods have addon. any other solutions
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wallet System for WooCommerce – Digital Wallet, Buy Now Pay Later (BNPL), Instant Cashback, Referral program, Partial & Subscription Payments] set Wallet icon](https://wordpress.org/support/topic/set-wallet-icon/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/set-wallet-icon/#post-18240221)
 * To set In Checkut Page, I am using default one [woocommerce_checkout],
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred] credit amount after given time](https://wordpress.org/support/topic/credit-amount-after-given-time/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/credit-amount-after-given-time/#post-15328320)
 * How to add withdrawal fee for points withdrawal
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred] credit amount after given time](https://wordpress.org/support/topic/credit-amount-after-given-time/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/credit-amount-after-given-time/#post-15305557)
 * [mycred_give amount=10 user_id=”current” limit=”5” log=”Bonus points for reading
   our special article” ref=”bonus_points”]
 * Points credits after reach the limit
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wallet for WooCommerce] Referral credit after order completed (not work)](https://wordpress.org/support/topic/referral-credit-after-order-completed-not-work/)
 *  Thread Starter [roghithsam](https://wordpress.org/support/users/roghithsam/)
 * (@roghithsam)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/referral-credit-after-order-completed-not-work/#post-15147687)
 * ok, Thank You For Your Support

Viewing 15 replies - 1 through 15 (of 46 total)

1 [2](https://wordpress.org/support/users/roghithsam/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/roghithsam/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/roghithsam/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/roghithsam/replies/page/2/?output_format=md)