"Request Fulfillment" button not visible for an order even after creating a Fulfillment Service under our app

When a customer places an order, the merchant cant request for a fulfillment as indicated in this screenshot: https://imgur.com/a/WnS9c7b This button is simply not visible. Our app creates a fulfillment service for the merchants store using the rest api endpoint: /admin/api/2024-07/fulfillment_services.json when the merchant installs the app and authenticates themselves using oauth for the first […]

redirect to different url after order received or/ Redirect to custom Thankyou page after WooCommerce orders paid

After successful payment through Razorpay payment gateway, I need to redirect to my custom created Thankyou page, instead of Razorpay payment gateway plugin default redirect URL. My problem illustrated: screen recorded video Here is what I tried in functions.php file: /* Redirect WooCommerce to a custom page after checkout */ add_action( 'woocommerce_thankyou', 're_redirect_woo_checkout'); function re_redirect_woo_checkout( […]

React Custom Hook executes too many times (or Component renders too many times?) before throwing Minified Error #185

I have a React Component Footer that uses a Custom Hook useLogoImageUrl that seems to be executed 51 times before throwing the following Minified React Error: Error: Minified React error #185; visit https://reactjs.org/docs/error-decoder.html?invariant=185 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. which states that: Maximum update […]

Deleting Posts Only from WordPress Database

I have a WordPress site running locally using Laragon. Before migrating it to my online hosting, I want to delete the posts only from the WordPress database. Not pages, just posts. How can I go about doing this? Does anyone know of an online tutorial or WordPress plugin that they can share or step-by-step instructions […]

WhatsApp hyperlink not working as expected

I am using the "https://wa.me/1XXXXXXXXXX" on my footer WhatsApp icon. But clicking the link, takes me to the "This link is incorrect. Close this window and try a different link. " page. Can anyone please help to overcome this issue? I checked WhatsApp's guidance on this: https://faq.whatsapp.com/5913398998672934. I am facing the same issue on the […]

WordPress Default Featured Image Always Returned

I am trying to improve the LCP load time on my wordpress website. The featured image is what is causing the issues, so my plan is to use: <picture> <source srcset=image.png" media="(min-width: 1280px)"> <source srcset=image2.png" media="(min-width: 768px)"> <source srcset=image3.png" media="(min-width: 412px"> </picture> So the web browser will pick the correct size of image based on […]