InvestiSocial
Forum Replies Created
-
Forum: Plugins
In reply to: [JWT Auth - WordPress JSON Web Token Authentication] Status Error 404Hi @bagus,
thank you for your reply.
Yes, I’ve solved it. I changed my htaccess file and disabled the NGINX DIRECT.
Best Regards.
CarloHi, i’ve checked it.
This field comes form a delivery plugin. It isn’t visible in your plugin.
How can I drop it? Can you help me please?
Thank you.
Regards
CarloHi, I’ve checked it, but I don’t see it in the billing details.
Can you help me?
Thank you.
Regards
CarloForum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] WCFM checkout validationDone and it regularly works, but I have this problem: Your feature only works if you try to add a product to the cart from different stores.
I have an app that works with another logical cart. The only shared page that links the website and the app is the checkout page, because app uses the web checkout page.
So I have to block all the orders with different vendor’s products into checkout page.
Can you help me?
Thank you.
Regards
CarloForum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] WCFM checkout validationNo, only this code in child funtion.php:
add_action( ‘woocommerce_add_to_cart_validation’, function( $is_allow, $product_id, $quantity ) {
$product = get_post( $product_id );
$product_author = $product->post_author;
//Iterating through each cart item
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$cart_product_id = $cart_item[‘product_id’];
$cart_product = get_post( $cart_product_id );
$cart_product_author = $cart_product->post_author;
if( $cart_product_author != $product_author ) {
$is_allow = false;
break;
}
}
if( !$is_allow ){
// We display an error messageThis code works on adding to cart button.
Thank you..
Forum: Plugins
In reply to: [WCFM - Frontend Manager for WooCommerce] WCFM checkout validationThank you for your reply.
I’ve disabled multivendor orders, but it doesn’t work.
I regularly can do an order with products from different vendors.
Can you help me, please?
Thank you.
Regards
CarloHi,
can i use WCFM Direct PayPal plugin with another multivendor plugin?
Thank you.
Regards
Carlo