Buy B2BKing
$179 $129
Version 3.8.0 of B2BKing brings some exciting new improvements and enhancements to how offers work.
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:
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.
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.
Offers can be added to cart and purchased as a bundle at the specific price in the offer.
[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.
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