pumpingrulos
Forum Replies Created
-
Hi!
Theme: Rigid (v.5.4.3) theme from Althemist
No updates in between.I′ll contact support
Thanks!
Hi!
With your last update the main features editing problen is solved!Hi!!
That′s not possible in our site.
Our bussines model requires that vendors (and their products) should be accesible just form their countries, and not visible from orther countries.Thanks in advance.
Hi!
Thanks for your response!
I′ve purchaserd WPML and everithing is working fine.Just another question:
Is it possible to “hide” a vendor store by language? (the whole store, not just the products)
For example:
Vendor 1 store -> visible only in English
Vendor 2 store -> visible only in SpanishThanks in advance ??
ok, Thanks!
Hi!
Ok.
Are you thinking about making WCFM compatible with Polylang in the future?
I ask because depending on it I′ll think about differente solutions for developing my site.Thanks in advance!
Thanks!!
Custom fields have a unique ID?
Perhaps hidding by CSS could work? (with optional fields?)
Hi
Sorry for the late response. I Missed your mails.
I want to know if it’s possible to set up different sign up forms, customized with different fields each one.
For example:
Sign up form for Menbership A:
Fields A, B, and CSign up form for Menbership B:
Fields B, C and DSign up form for Menbership C:
Fields A, B and D.Thanks in advance.
Hi!
Stripe plit pay.
Hi!
I after some more testing (deactivating all snippets and all the plugins in my site and activating them one by one)
I′ve noticed that woocommerce status control works fine, the problem is with WCFM Marketplace.The order is automatically completed by woplugin, but if I activate wcfm marketplatece, the orders go from completed to Processing.
Any sugestions?
Hi!
The screeshot: https://ibb.co/HPymxWp
Do you have any other Stripe payment gateway plugin active?
No, only “WCFM Stripe Split Pay” active in woocommerce settings, and no other stripe plugin activer or instaled.
Thanks!
Hi again!
At the moment I′m solving it by adding a snippet to change order status, this is the code:
add_action( ‘woocommerce_thankyou’, ‘custom_woocommerce_auto_complete_order’ );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}$order = wc_get_order( $order_id );
$order->update_status( ‘completed’ );
}It works, but the orders goes through 3 stautus: From Pending to Completed to Processing and finally to Completed again, as result, customer recieves the order email confirmation twice… Anyone whit the same problem?
Thanks!!