I currently need "Buy Together" module, Although there is already a similar module in the OpenCart Extension Store.
But i need functions that can be directly linked to each other based on the following rules, Can use simple rules to link purchases and linked products:
Include Buy Product
Include Buy Category
Include Buy Manufacturer
Include Link Product
Include Link Category
Include Link Manufacturer
Exclude Buy Product
Exclude Buy Category
Exclude Buy Manufacturer
Exclude Link Product
Exclude Link Category
Exclude Link Manufacturer
Sort order If there are other product rules, When setting to other "Buy together" modules at the same time, the sort order of multiple modules will be displayed at the same time.
Status Enable and disable
Start date
End date
MySQL table structure:
Code: Select all
CREATE TABLE `oc_buy_together` (
`buy_together_id` int(11) NOT NULL, AUTO_INCREMENT
`title` text NOT NULL, The name of the module, Displayed on the front end with admin
`buyproduct` text, Which product IDs will be applied
`buycategory` text, Which category IDs will be applied
`buymanufacturer` text, Which manufacturer IDs will be applied
`exbuyproduct` text, Which product IDs will be excluded
`exbuycategory` text, Which category IDs will be excluded
`exbuymanufacturer` text, Which manufacturer IDs will be excluded
`getproduct` text, Which product IDs should be linked
`getcategory` text, Which category IDs should be linked
`getmanufacturer` text, Which category IDs should be linked
`exgetproduct` text, Which product IDs will be excluded from the link
`exgetcategory` text, Which category IDs will be excluded from the link
`exgetmanufacturer` text Which manufacturer IDs will be excluded from the link
`sort_order` int(3) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL, enable / disable
`date_added` datetime NOT NULL, Start date
`date_modified` datetime NOT NULL End date
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
139,208,148,157
No need to set up separate links between products, reducing unnecessary set time.
Current development examples that comply with the above set rules, I have found a module that can be used as a development reference:
Buy Any Get Any Product Combination Pack
I have obtained permission from opencart tools to directly reference the files in the admin directory as the basis for development, I will remove variables and MySQL table fields that I don't need.
Display style on the front end, I hope to be able to do it like the related products of Journal v.3.2, There can be a Carousel function that can automatically play and move back and forth if there are too many products listed at the same time.
If the linked product has setting options, you can directly click on the option in the module block that can be Buy together and click Add to Cart.
We are willing to pay a development fee of $100 USD for this, Is anyone willing to help us custom development this module?