WebWizards
Forum Replies Created
-
Hi Dicko,
Thank you for using our plugin,
I looked at the errors you posted but it’s very hard to say what could cause that. Obviously we are not seeing this on our test sites.
We would be happy to look into these and assist with troubleshooting in detail. Would you like to open a ticket with us here at https://webwizards.ticksy.com so our team can investigate?
Hi there,
By default, the plugin indeed redirects the sales notifications to vendors without informing the admin.
If you would like, you can have both admin and vendor receive it, by adding this code snippet to your site:
add_filter('marketking_new_order_email_recipient', function($recipient){ $admin_email = '[email protected]'; return $recipient.', '.$admin_email; }, 10, 1);Commissions are not displayed in this email.
Thank you so much!
Glad to hear the initial one worked!
Regarding conditions, I guess it depends on what specifically you’re trying to set up. Most conditions such as minimum orders, multiple rules, etc are configured in our plugin via B2BKing -> Dynamic rules. All dynamic rules can be configured to only apply to B2B users, or specific B2B groups, etc.
It would probably help if you gave more details on what specifically you need to setup.
Please replace that existing code with this one:
add_action( 'woocommerce_after_add_to_cart_form', function() { echo '<div class="additional_product_info">⛟ Levering 1-3 hverdage ⛟ Gratis fragt fra 599 DKK ⛟ Fragt fra 34 DKK </div>'; });Then you can add the following CSS:
.b2bking_b2b_user .additional_product_info { display: none; }Thank you for clarifying. It seems to me something changed in the code, previously that text had the <font> tag, but I’m no longer seeing that.
At the moment that text has no tag, so it’s impossible to select it with CSS.
How is that text added? If you added it with custom code, please put that text inside a <div>, so we can select it with CSS. For example
<div class=“additional_product_info”> ⛟ Levering 1-3 hverdage ⛟ Gratis fragt fra 599 DKK ⛟ Fragt fra 32 DKK </div>In that case please open the ticket in the ‘B2BKing Pre-Sales’ category (this category doesn’t require a code), and just include the customer’s code in the body of the message. Thank you.
I am not sure why you are not able to see the tiered_active_price price on variable products. I do see it on my end in local tests. Here’s what I see:
View post on imgur.com
There’s a range, table and active price for each variation. Perhaps it is because of other custom code.
I could check this directly on your site if you want and look into this in more depth. For that it would be best if you please opened a ticket with us at https://webwizards.ticksy.com , the forum there is easier for us to work with for more complex matters,
I checked your site but I am not sure what elements are added by Order Delivery Date Pro. Can you please highlight them in a screenshot?
How do you remove the image you showed to the logged in B2B user? https://prnt.sc/K9Tq6f_xO-mU
I’m not sure if I understand. If you want to remove that area for B2B users, the CSS I sent above should do it.
We haven’t heard back from you on this so I will close this ticket for now.
If you need any further assistance with this, please just open a ticket with us at https://webwizards.ticksy.com (as I understand you’re also using the Pro version).
Our team will be happy to assist and we can even look into the issue directly on your site if you want.
Hi there,
This is not currently a feature of the plugin, but I believe we can add this and send you an updated version with this functionality.
Could you please open a ticket with us at https://webwizards.ticksy.com so we can follow up on this?
We would need to privately send you an updated version of the credit add-on.
Thank you so much! 🙂
Oh, the tiered price table can be disabled for each product by disabling this checkbox:
Do you mean that you’d like to hide this area? https://prnt.sc/K9Tq6f_xO-mU
You could add this CSS to the site:
.b2bking_b2b_user .product-info > font { display: none; }I checked that product you linked. My impression is that there’s some kind of plugin or custom code that’s interfering with how this works – perhaps a plugin that enables variation functionality.
Here’s how this works on my test site with this “Show tiered price range” feature enabled and this snippet added:
add_filter('b2bking_tiered_range_display_final', function($price, $min, $max, $product){ return 'ab '.wc_price($min); }, 10, 4);Video: https://drive.google.com/file/d/1wPXMkUpYh52wN1d9Y-XVoSY7LtODEsp0/view
(I get the same for variations).
My suggestion would be to try and deactivate all site plugins to see how this works with default functionality.