MATCHING PRODUCTS CROSS-SELL
#1
Posted 09 August 2007, 18:13
This is done by simply adding product SKUs (product ids) to the product page in admin in the following fashion SKU, SKU, SKU, etc.
Then on the catalog product page 3 of these SKUs are randomly selected to display as "matching" cross-sell items if they are in stock, allowing you to increase your cross sells and not have to micro-manage them. Can be easily added to even the most modified of stores.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#2
Posted 09 August 2007, 18:18
Thanks go to all of the other contribution makers, as I'll freely admit I looked at bits and pieces of other oscommerce contribution codes for help in the designing of this contribution.
Edited by homewetbar, 09 August 2007, 18:21.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#3
Posted 09 August 2007, 20:41
I have been using family products, I wonder how different this is ?
Carine Bruyndoncx
KEUKENLUST, Everything but the kitchensink !
#4
Posted 09 August 2007, 20:54
bruyndoncx, on Aug 9 2007, 03:41 PM, said:
I have been using family products, I wonder how different this is ?
Hello,
I do not have a screen shot but here is the gist of the current layout (which you can modify easily for your site):
Matching products:
[Image] [Image] [Image]
name name name
It works kinda like the JC Penney cross sell shown here: http://www3.jcpenney.com/jcp/ProductsHOM.a...;itemid=11aa54b but in horizontal fashion instead of verticle.
The thought is not to try and do a listing like a category, rather showcase products that match/coordinate with the product they are looking at that they can click on and then view and add them to their cart.
Edited by homewetbar, 09 August 2007, 20:58.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#5
Posted 17 August 2007, 23:45
Any help would be greatly appreciated,
Rocky
#6
Posted 18 August 2007, 22:29
Any ideas? I was able to delete that code before line 220 and my site works again. However, the contribution does not work.
#7
Posted 18 August 2007, 23:02
zoomedia, on Aug 17 2007, 06:45 PM, said:
Any help would be greatly appreciated,
Rocky
Did you do the product_info.php steps?
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#8
Posted 18 August 2007, 23:04
midwestp, on Aug 18 2007, 05:29 PM, said:
Any ideas? I was able to delete that code before line 220 and my site works again. However, the contribution does not work.
Sounds like you are missing a ; ?> or <?php bracket somewhere.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#9
Posted 20 August 2007, 21:49
homewetbar, on Aug 18 2007, 04:02 PM, said:
<tr>
<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td>
<?php
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_also_purchased(3600);
} else {
include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
}
}
it comes right after the matching products code could that be causing the problem?
Thanks :)
#10
Posted 20 August 2007, 22:20
zoomedia, on Aug 20 2007, 04:49 PM, said:
<tr>
<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<tr>
<td>
<?php
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_also_purchased(3600);
} else {
include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
}
}
it comes right after the matching products code could that be causing the problem?
Thanks
I've got an extremely modified store so it's hard for me to tell you exactly what point in the code you should put the matching cross sell code if it does not work for you in the default area, but I poped my code in the instructions into jEdit to check and the code itself does not have any errors according to jEdit.
Backup your file and try moving it around in the product_info.php and see what happens. It's not going to do any harm, worst case it won't work, then try it in another spot and so on and so on. Then please post what you find and where you actually get it to work for others to see in the forum.
Edited by homewetbar, 20 August 2007, 22:21.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#11
Posted 25 August 2007, 13:26
quote name='homewetbar' date='Aug 20 2007, 07:20 PM' post='1124956']
I've got an extremely modified store so it's hard for me to tell you exactly what point in the code you should put the matching cross sell code if it does not work for you in the default area, but I poped my code in the instructions into jEdit to check and the code itself does not have any errors according to jEdit.
Backup your file and try moving it around in the product_info.php and see what happens. It's not going to do any harm, worst case it won't work, then try it in another spot and so on and so on. Then please post what you find and where you actually get it to work for others to see in the forum.
[/quote]
#12
Posted 25 August 2007, 15:52
cliquei, on Aug 25 2007, 08:26 AM, said:
quote name='homewetbar' post='1124956' date='Aug 20 2007, 07:20 PM']
I've got an extremely modified store so it's hard for me to tell you exactly what point in the code you should put the matching cross sell code if it does not work for you in the default area, but I poped my code in the instructions into jEdit to check and the code itself does not have any errors according to jEdit.
Backup your file and try moving it around in the product_info.php and see what happens. It's not going to do any harm, worst case it won't work, then try it in another spot and so on and so on. Then please post what you find and where you actually get it to work for others to see in the forum.
Try moving the code up one line... Tell me how that works.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#14
Posted 25 August 2007, 18:38
Maybe the only thing is to make that last step on product_info easier for people.. I almost gave up trying.. hehe
Nice script !
#15
Posted 27 August 2007, 18:46
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#16
Posted 28 August 2007, 06:44
homewetbar, on Aug 9 2007, 10:54 PM, said:
I do not have a screen shot but here is the gist of the current layout (which you can modify easily for your site):
Matching products:
[Image] [Image] [Image]
name name name
It works kinda like the JC Penney cross sell shown here: http://www3.jcpenney.com/jcp/ProductsHOM.a...;itemid=11aa54b but in horizontal fashion instead of verticle.
The thought is not to try and do a listing like a category, rather showcase products that match/coordinate with the product they are looking at that they can click on and then view and add them to their cart.
Hello!
This seems like an awsome addition.
I'm planning to add the new SPPC 4.20, which is going to be released this week by Janz. I guess there has to be some modifications to yours in order to make them play nice together. My question is, would you mind consider looking into this?
#17
Posted 28 August 2007, 16:54
kbking, on Aug 28 2007, 01:44 AM, said:
This seems like an awsome addition.
I'm planning to add the new SPPC 4.20, which is going to be released this week by Janz. I guess there has to be some modifications to yours in order to make them play nice together. My question is, would you mind consider looking into this?
I have no idea what SPPC is... However this contrib is a very light install and should not interfer with other contribs unless the contribs you are installing heavily modify oscommerce, it that case you are likely a skilled enough programmer to make them "play nice" together anyway so I wouldn't worry about it.
Also Purchased (AP) Preselection (cuts this resource hogging query down to nothing) -- Contribution 3294
FedEx Automated Labels -- Contribution 2244
RMA Returns system -- Contribution 1136
Sort Products By Dropdown -- Contribution 4312
Ultimate SEO URLs -- Contribution 2823
Credit Class & Gift Voucher -- Contribution 282
Cross-Sell -- Contribution 5347
#18
Posted 28 August 2007, 19:41
Anyway, thanks for your answer!
#19
Posted 21 September 2007, 16:44
Thanks
#20
Posted 01 October 2007, 12:20
That`s just I searched for. Very uncomplicated Cross Selling module !
I have only 1 wish:
it would be nice if it would be possible to make more than 3 Cross Selling Items......
This is the best Cross Selling contrib because very uncomplicated !!
I tried out 2-3 contribs but they were not very useful for admins...
+ STS 4.5.7 for 2.2MS2 and RC1














