rkvisit
Forum Replies Created
-
this is something promising will try this..thank you @eva2000
is it possible to write our own php file executing the functions used by you, to cache the pages, like clear the cache folder and revisit or send update request to all posts which will create cache? then we can run that php file via cron using CURL?
@discotoast i am not sure what kind of solution you are building but if you plan to use woo-commerce,you can try this plugin if you maintain mobile plans as separate products in woo-commerce. https://woocommerce.com/products/composite-products. If you not maintain mobile plans as a separate product then creating variable product is the easiest way.(i used my previous example to make my idea clear.)
- This reply was modified 7 years, 8 months ago by rkvisit.
Forum: Plugins
In reply to: [WooCommerce] Redirect to a new page after checkout button is pressedasked the question in wrong way cant delete it now… :'(
- This reply was modified 7 years, 9 months ago by rkvisit.
Forum: Plugins
In reply to: [WP Hotel Booking] Shortcode for this pluginhi there,Can you tell me how i can make hotel room search form like the one in your theme i mean inputs inline.is there any short code attribute?
@shazahm1hotmailcom
got the job done by changing it and calling value from the array.Thank you.Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] Add Settings in to a seperate menu pageDid it by adding the process_admin_options() when save.
Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] Add Settings in to a seperate menu pagehi could you point me to the save options function in your plugin.I managed to get the contents into a separate admin page using
$obj=new WC_Weight_Based_Shipping;$obj->admin_options();
and added the save button but the save button is not working correctly.can you guide me to get this done? OR how i call the location as the link for that admin menu item?- This reply was modified 8 years, 1 month ago by rkvisit.
Forum: Plugins
In reply to: [Connections Business Directory] Add another date fieldhi thanks! achieved it!
Forum: Plugins
In reply to: [Job Manager] Add a field to show on another fields responsek thanks! sorry for the late reply.
hey no need its my mistake found it Solved!
Forum: Plugins
In reply to: [WooCommerce] No emails if retry the paymentOh Thanks! Hope i was helpful.
Forum: Plugins
In reply to: [WooCommerce] No emails if retry the paymentHi Oops that was my bad. i reedited my comment.
Forum: Plugins
In reply to: [WooCommerce] No emails if retry the paymenthow it happened for me as this..(test method)
1.try to pay using credit card and it fails.
2.then a notice should come the payment failed but there is a pay button to try again.(admin get a notice as a failed order but not the customer-it’s OK!)
3.i click on pay button and come to checkout page and this time select direct bank transfer.and it succeed.
4.So now an confirmation email should go to customer as order is now recorded correctly (but it doesn’t-was my question)
what i did:-
So i added that code (obviously if previous attempt failed order status is failed.so i change it to pending again and set it to on hold then the order confirmation email triggered).Don’t know whether this a common issue or not,but this is what i experienced.Forum: Plugins
In reply to: [WooCommerce] No emails if retry the paymenti manged to get by adding the code as follows to BACS.
if ($order->status == 'failed') { $order->update_status( 'pending', __( 'Awaiting BACS payment', 'woocommerce' ) ); } $order->update_status( 'on-hold', __( 'Awaiting BACS payment', 'woocommerce' ) );
Is this a theme related issue or something other because obviously an email should go to inform customer?