leavai
Forum Replies Created
-
Hello!
Have you been able to solve this problem? I have the same error.
Thank you!
Forum: Plugins
In reply to: [Payment Plugins Braintree For WooCommerce] Send products infoHi! thanks for your reply. I found that filter in the class-wc-braintree-gateway file. I added the following code to this line
$attribs = array( 'amount' => $order->get_total (), 'lineItems' => $order->get_items(), //this is my new line 'taxAmount' => bwc_is_wc_3_0_0_or_more () ? wc_round_tax_total ( $order->get_total_tax () ) : $order->get_total_tax () );How could I send only the product info like product name, price, quantity and shipping info?
Thank you four your help!
- This reply was modified 6 years, 9 months ago by leavai.
Forum: Plugins
In reply to: [WooCommerce] Reset custom order for product categoriesForum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Customer Login Error 500I resolved it applying this code in functions.php to redirect users to “orders” page after a successful login.
//Redirect after login function my_login_redirect( $url, $request, $user ){ if( $user && is_object( $user ) && is_a( $user, 'WP_User' ) ) { if( $user->has_cap( 'administrator')) { $url = admin_url(); } else { $url = home_url('/orders /'); } } return $url; } add_filter('login_redirect', 'my_login_redirect', 10, 3 ); //End Function Redirect after loginForum: Plugins
In reply to: [Price Based on Country for WooCommerce] Gift Card Plugin compatibleHi Oscar!! Could you send me more info about this? I’m interested in upgrade to Pro.
Thanks!
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Add-on category requiredHi! thanks for reply.
For example, if I need to select a flavor of drink, I should only be able to choose one from the list and not two options at the same time. I’m thinking that the best thing for these cases would be to use a radio button and not a checkbox. How can I solve it?
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Gift Card Plugin compatibleOscar, thanks for your reply.
I need to sell Gift Cards in multiple currencies, and if I create a coupon it applies only to default shop currency.
How could I solve this issue?Forum: Plugins
In reply to: [WooCommerce] Woocommerce Membership accountsHi @markhaytema, did you apply this setting in Woocommerce > Settings > Accounts & Privacy? You must uncheck “When creating an account, automatically generate a username from the customer’s email address” and “When creating an account, automatically generate an account password” options. Maybe this solve your problem.
Hi dsloan, I have a similar issue. My checkout page doesn’t show the payment gateway… do you have the same issue?
Forum: Plugins
In reply to: [Woo Mercado Pago Module Oficial] ERROR 500 API URGENTEHice clic en reportar problema y me envió a este foro. A donde me recomendas consultar?
Forum: Plugins
In reply to: [Woo Mercado Pago Module Oficial] ERROR 500 API URGENTE@mebugarin, gracias por tu respuesta.
Tengo ese plugin instalado con la Versión 3.0.13. Que me recomendas?
Mark, thanks for your reply.
I’m ussing the subscriptions and membership plugins. When a user buy a suscription, he must enter a valid email, and if he has been bought any product before with this account, he can’t register his membership with this same email.
Did you understand my trouble? sorry for my english, thanks!