piggy811
Forum Replies Created
-
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Internal Server Errorfound the solution –
it’s due to memory_limit setting in your configuration.
Was 128mb, and after set it to 512mb, all set.Forum: Plugins
In reply to: [Send PDF for Contact Form 7] Internal Server Errorhi @safak93, may you share which permission in IIS server needs to be changed?
We have the same problem but couldn’t find a solution.
Many thanks.Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Hide price on other countryTry this –
Go to Woocommerce > Settings > Zone Pricing > Zone
to configure zones you want to hide and the rates to whatever value which are none 0.And open this file in plugin folder:
woocommerce-product-price-based-on-countries/includes/class-wcpbc-frontend-pricing.phpFind line 36,
paste following code://do_action( 'wc_price_based_country_frontend_princing_init' ); remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
It will also disable the add to cart button.
Good Luck!- This reply was modified 5 years, 8 months ago by piggy811.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay IssueWe have the same problem as described.
Forum: Plugins
In reply to: [qTranslate X] qTranslate X IM8 qTranslate WooCommerce bugHi @gunu,
it seems no problem once deactivate the plugin “Postcode Shipping Rates- WooCommerce” https://www.ads-software.com/plugins/postcode-shipping/
But it seems work good if using the old “qtranslate” and “qtranslate plus”.Forum: Plugins
In reply to: [qTranslate X] qTranslate X IM8 qTranslate WooCommerce bugHi @gunu,
Just tried the new package of beta version you provided. Still got no luck :(.
I am using qTranslate-X + WooCommerce & qTranslate-X(also tried deactivated this once)
Any more thing i can try?Forum: Plugins
In reply to: [qTranslate X] qTranslate X IM8 qTranslate WooCommerce bugHi,
Thanks for developing the wonderful plugin!
But today we found that Woocommerce customer addresses and names in the admin notification emails cannot sent properly. Customers cannot receive emails either, only admin mail sent out.May you help? https://goo.gl/MlOzHq
Thanks!Forum: Plugins
In reply to: [WooCommerce] Custom payment gateway can't use after updated to 2.1.2Hi Coen & Mike,
Thanks for the kind reply again.
The problem was solved by replacing
'redirect' => add_query_arg('order', $order->id, add_query_arg('key', $order->order_key, get_permalink(woocommerce_get_page_id('thanks'))))
to
'redirect' => $this->get_return_url( $order )
Thanks for the efforts to all develop team. Though the 2.1 version do have some adjustment, I think it’s on the way to the best. And we are very impressive by the support while it’s a free system ??
Forum: Plugins
In reply to: [WooCommerce] Custom payment gateway can't use after updated to 2.1.2I have one for thanks page:
/**
* Process the payment and return the result
*
* @access public
* @param int $order_id
* @return array
*/
function process_payment($order_id) {
global $woocommerce;
$order = new WC_Order($order_id);// Empty awaiting payment session
unset($_SESSION[‘order_awaiting_payment’]);
return array(
‘result’ => ‘success’,
‘redirect’ => add_query_arg(‘order’, $order->id, add_query_arg(‘key’, $order->order_key, get_permalink(woocommerce_get_page_id(‘thanks’))))
);
}what will the code be like?
Forum: Plugins
In reply to: [WooCommerce] Custom payment gateway can't use after updated to 2.1.2Hi Mike,
Thanks I checked and it sure has get_permalink.
What should I replace it?
i just try replaced it with get_checkout_payment_url( true ) but it does’t work.
Did I type wrong?
Thanks!Forum: Plugins
In reply to: [WooCommerce] “variable product” – no action after clicking “add to cart”Thanks for the quick response!
I have tried disabled the file > /woocommerce/single-product/add-to-cart/variable.php
Though some of the translation files are missing.
but the function works correct now.
Thanks!