B2BKing 3.8.0 Update #

Version 3.8.0 of B2BKing brings some exciting new improvements and enhancements to how offers work.

  • You can now easily convert quote requests to offers / quotes
  • Email these offers easily to users, incl. guest users
  • Users can download PDF files of your offers, with your company Logo

What are offers? #

Offers are a feature through which you can create specific offer bundles (X items at X prices) and make it available to specific user or customer groups.

For example:

  • You can create a "Holloween" bundle offer of 1000 masks as $0.5 price and 2000 costumers at $2 price per unit. You can make this available to all users in the "Resellers" customer group
  • You can negotiate a quote request with John and make a specific offer for him: 5000 boxes at $0.1 per unit. You can make this offer available to John exclusively. John will be able to see this offer in his "My account" section

How offers are created in the admin backend #

Offers can be created in the admin backend of B2BKing. You can choose group visibility or individual user visibility to control who can see this offer. Then you add each individual item, quantity and unity price to create a bundle.

Creating an offer in B2BKing's Offers admin backend

How offers are viewed by the user #

Once an offer has been created, users with the permission to see it (they were manually selected, or they are part of a group which has permission), will see the offer in their My account sections. B2BKing introduces a dedicated "Offers" section in My account.

How an individual offer appears to a user in the My account "Offers" section

Offers can be added to cart and purchased as a bundle at the specific price in the offer.

How an offer appears in the cart.

Offers Shortcodes #

[b2bking_offers] - Adds the offers page.

[b2bking_offers id=1234] - Adds an individual offer anywhere on the site. For example you can use this to add an offer in a product's description, advertising a bundle that product is part of.

To get an offer's id, go to B2BKing -> Offers in the backend and click on the ID. The number in the URL (e.g. ?post=1234) is the id of the offer.

Add Custom Header to Offers PDF #

It is possible to add a custom header row to the offers PDF, by using one of the following code snippets:

Center-Aligned Line 1

add_filter('b2bking_custom_content_offer_pdf_center_1', function($text){
	$text = 'Your custom content and test here';
        return $text;
}, 10, 1);

This results for example in a header line like this one:

Center-Aligned Line 2:

add_filter('b2bking_custom_content_offer_pdf_center_2', function($text){
	$text = 'Your custom content and test here';
        return $text;
}, 10, 1);

Left-Aligned Line 1:

add_filter('b2bking_custom_content_offer_pdf_left_1', function($text){
	$text = 'Your custom content and test here';
        return $text;
}, 10, 1);

Left-Aligned Line 2:

add_filter('b2bking_custom_content_offer_pdf_left_2', function($text){
	$text = 'Your custom content and test here';
        return $text;
}, 10, 1);

Powered by BetterDocs