Zen Cart Logo
Forums / All Other Contributions/Addons / Multi Cross Sell mod [Support thread]

Multi Cross Sell mod [Support thread]

Views: 85,116

Results 361 to 380 of 476
13 Dec 2012, 7:09 AM
#361
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Multi Cross Sell mod [Support thread]

nesum18:

I go to the Catalog > Multi Cross Sell
When I click on 'Install' I get the following message: WARNING: An Error occurred, please refresh the page and try again.

Can anyone help me please :(Please look at the 3 posts prior to yours ......

16 Dec 2012, 4:15 PM
#362
nesum18 avatar

nesum18

New Zenner

Join Date:
Jun 2012
Posts:
50
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

ok, well, now i get a problem with my login to the the admin portal.
i get this msgs on my admin site: Error: The Multi Cross Sell Admin Page is already registered in the Catalog Menu.
and there's nothing else on that screen. i cant log in cuz there's no login box....only that msg above... :( plz help... :(

24 Dec 2012, 9:02 PM
#363
masterrusty avatar

masterrusty

Zen Follower

Join Date:
Mar 2007
Location:
Oregon
Posts:
152
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

The Multi X-Sell module is causing wrong items to be placed in my cart. I have run several tests removing and re-adding various parts of tpl_product_info_display.php from my custom page, and I even tried going all the way back to an original 1.5.1 file and adding the multi x-sell code to it. In every case, the wrong items are going into the cart when the x-sell code is in the file. Everything works fine when I take the code out.

The site is http://www.fantasycostume.net but the x-sell code is currently removed from tpl_product_info_display.php to make the site function properly. Here is a copy of tpl_product_info_display.php the way I am trying to run it:

Attachment #11654

Thanks,
MRusty

24 Dec 2012, 11:29 PM
#364
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

masterrusty:

The Multi X-Sell module is causing wrong items to be placed in my cart. I have run several tests removing and re-adding various parts of tpl_product_info_display.php from my custom page, and I even tried going all the way back to an original 1.5.1 file and adding the multi x-sell code to it. In every case, the wrong items are going into the cart when the x-sell code is in the file. Everything works fine when I take the code out.

The site is http://www.fantasycostume.net but the x-sell code is currently removed from tpl_product_info_display.php to make the site function properly. Here is a copy of tpl_product_info_display.php the way I am trying to run it:

Attachment #11654

Thanks,
MRustyTake a look at the sample file in the mod and compare to yours.
The </form> close needs to be moved from the end of file to just before where you have added the multi cross sell code.

5 Jan 2013, 11:48 PM
#365
laughton_papworth avatar

laughton_papworth

New Zenner

Join Date:
Jan 2013
Posts:
1
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

Hi I have just downloaded the multi sell mod and followed the instructions, all files are uploaded and changed to my admin folder name, it registers and gives me the install button but it just say WARNING: An Error occurred, please refresh the page and try again. this is a new install on a new website no other multi sell versions or mods installed, I am setting this up locally using xammp until the site is finished so any help would be greatly apreciated, i have un registered it and removed all the files and re added them a number of times now with no luck.

6 Jan 2013, 12:32 AM
#366
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

laughton_papworth:

Hi I have just downloaded the multi sell mod and followed the instructions, all files are uploaded and changed to my admin folder name, it registers and gives me the install button but it just say WARNING: An Error occurred, please refresh the page and try again. this is a new install on a new website no other multi sell versions or mods installed, I am setting this up locally using xammp until the site is finished so any help would be greatly apreciated, i have un registered it and removed all the files and re added them a number of times now with no luck.Bug.. You need to apply a bug fix shown in post 291

12 Jan 2013, 6:25 PM
#367
philip937 avatar

philip937

Totally Zenned

Join Date:
Aug 2009
Location:
Bedford, England
Posts:
968
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

Has anyone come up with a way of having check boxes on the cross sold items to allow a one click add to cart of the main product and all other items?

Thanks
Phil

16 Jan 2013, 4:16 AM
#368
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

bigduffeye:

thanks gilby - i get what you are saying, but i really do need 50 different cross sell tables, each furniture set can only have items from its own specific set in the cross sell.

see here
http://www.wearebeds.com/catalog/index.php?main_page=product_info&cPath=8_31_41&products_id=275
and then we need a new cross sell for a different furniture set like this
http://www.wearebeds.com/catalog/index.php?main_page=product_info&cPath=8_31_37&products_id=265

but you solved my problem anyway! thanks a lot!

Wow. How did you get your site to show the cross sell products with check boxes and automatic cart updates? I would love to know how you did it! I would really appreciate your feed back. Thank you.

17 Jan 2013, 3:37 AM
#369
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

Before I start I wanted to thank you for your contribution.

Running Zen Cart 1.5.1

I installed the “multi_cross_sell_v1.03” plug-in without any problems. This is a fresh install without any prior similar plug-ins.

<!-- BEG: Multi Cross-Sell mod -->
<?php
// THIS CODE WOULD BE ADDED INTO YOUR TPL_PRODUCT_INFO_DISPLAY.PHP WHEREVER YOU WANT TO DISPLAY ALL THE CROSS_SELL BOXES:
  if(defined('MXSELL_ENABLED') && MXSELL_ENABLED == 'true') {
    for ( $mxsell = 1; $mxsell <= MXSELL_NUM_OF_TABLES; $mxsell++ ) { // show all cross sells
      require($template->get_template_dir('tpl_modules_multi_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_multi_xsell_products.php');
    }
  }
?>
<!-- END: Multi Cross-Sell mod -->

I placed the above php code before "/form"

I created 4 products, 1 main product called “PRODUCT A” and 3 parts called “Part 1”, “Part 2” & “Part 3”as follow:
ID for “PRODUCT A” is 24
ID for “Part 1” is 25
ID for “Part 2” is 26
ID for “Part 3” is 27

Under admin/catalogue/Multi Cross Sell, I created a new cross sell as follow:
Attachment 11781

Under admin/configuration/Multi Cross Settings, my setup is as follow:
Attachment 11782

When I select “PRODUCT A” I see the following under the “product_info” page
Attachment 11780

So far so everything is OK.

Question 1) Why is it when I select, add to cart, in the above scenario, “Part 2” gets added to the cart instead of “PRODUCT A”? I have tried this many times on different products and it seems to add the first product on the left from the “Suggested Matching Items…”! What have done wrong? What am I doing wrong?

Question 2) Is there any way to code in and get a “Quantity Box” instead of “Buy Now” button on the product_info_display page only, so the customer could have the choice of picking the quantities of the items he needs to the cart from this page, instead of going back and forth to add related products?

17 Jan 2013, 3:58 AM
#370
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

Kevin205:

Question 1) Why is it when I select, add to cart, in the above scenario, “Part 2” gets added to the cart instead of “PRODUCT A”? I have tried this many times on different products and it seems to add the first product on the left from the “Suggested Matching Items…”! What have done wrong? What am I doing wrong?You need to move the </form> as well.
See post 364

Kevin205:

Question 2) Is there any way to code in and get a “Quantity Box” instead of “Buy Now” button on the product_info_display page only, so the customer could have the choice of picking the quantities of the items he needs to the cart from this page, instead of going back and forth to add related products?Could be done (but hasn't as I didn't require it)

17 Jan 2013, 5:10 AM
#371
kevin205 avatar

kevin205

Totally Zenned

Join Date:
Dec 2012
Posts:
607
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

I wish I knew how to code in php.:lamo:

I would have done it, because it is a very useful scheme and a lot of people could use it.

Thank you for your help. :cheers:

18 Jan 2013, 4:26 PM
#372
aiko70 avatar

aiko70

New Zenner

Join Date:
Jan 2013
Posts:
18
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

There is probably a very simple fix to this and I am just missing somewhere, but after installing Multi Cross Sell it does not even show up in Admin - Catalog to install it. I double checked that all files are in their proper places when I moved them to our test site, but I am not sure why it's not even showing up to install it. If anyone has any suggestions, that would be great! Thanks!

** NEVER MIND, I AM AN IDIOT AND APPARENTLY CAN'T READ! FIXED!

26 Jan 2013, 5:28 PM
#373
jar3300 avatar

jar3300

New Zenner

Join Date:
Dec 2005
Posts:
62
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

gilby:

Multi Cross Sell has now been updated to work with zen-cart v1.5.0
I can't seem to find if this is backward compatible to 1.3x
Thanks
Jim

26 Jan 2013, 11:06 PM
#374
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

jar3300:

I can't seem to find if this is backward compatible to 1.3x
Thanks
JimYou need to use Version: v1.02 which is made for zen 1.3.9

5 Feb 2013, 10:35 PM
#375
felixd74 avatar

felixd74

New Zenner

Join Date:
Oct 2012
Posts:
3
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

i have multi cross sell installed and i have an error displaying on the top in a red banner saying 'Error: The Multi Cross Sell Admin Page is already registered in the Catalog Menu.' did anyone else encountered this? if yes is there a fix?

6 Feb 2013, 5:38 AM
#376
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

felixd74:

i have multi cross sell installed and i have an error displaying on the top in a red banner saying 'Error: The Multi Cross Sell Admin Page is already registered in the Catalog Menu.' did anyone else encountered this? if yes is there a fix?That is an error message from the Admin Page Install file reg_multi_xsell.php that you upload once to install the admin page. After this file runs it deletes itself.
If the message keeps appearing then either
You keep uploading this file?
or for some reason it cannot delete itself.
You can manually delete it from your server by deleting this file
YOUR_RENAMED_ADMIN\includes\functions\extra_functions\reg_multi_xsell.php

6 Feb 2013, 8:39 PM
#377
felixd74 avatar

felixd74

New Zenner

Join Date:
Oct 2012
Posts:
3
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

gilby:

That is an error message from the Admin Page Install file reg_multi_xsell.php that you upload once to install the admin page. After this file runs it deletes itself.
If the message keeps appearing then either
You keep uploading this file?
or for some reason it cannot delete itself.
You can manually delete it from your server by deleting this file
YOUR_RENAMED_ADMIN\includes\functions\extra_functions\reg_multi_xsell.php

Thanks gilby, kudos to you. i coudn't figure it out what's wrong, the fix was so simple and it worked, hope will help others as well. Thanks again.

12 Feb 2013, 10:39 PM
#378
andy_c27 avatar

andy_c27

Zen Follower

Join Date:
Oct 2010
Location:
United Kingdom
Posts:
477
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

Howdy I am no coder
It has been asked before but how hard would it be to make a side box rather than only in product as it is now ..
As I am already using the space (Also Purchased) where this sits and it looks silly when they both are on ...
Or could you even split the 2 with half half even that would be OK
please don't bite my head off am only asking questions

thanks

12 Feb 2013, 10:54 PM
#379
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

ATSWorld:

Howdy I am no coder
It has been asked before but how hard would it be to make a side box rather than only in product as it is now ..
As I am already using the space (Also Purchased) where this sits and it looks silly when they both are on ...
Or could you even split the 2 with half half even that would be OK
please don't bite my head off am only asking questions

thanksIf you are NOT a coder then it will probably be very difficult :(
I haven't needed that, so I have not done that.

There are "other" cross sells that have done that, you could use them instead or use their side box as "inspiration"

Others have used the Tabbed Products Pro mod to display Also Purchased and Multi Cross Sell in separate tabs. But again I have not done this so have no code to show you.

12 Feb 2013, 11:11 PM
#380
philip937 avatar

philip937

Totally Zenned

Join Date:
Aug 2009
Location:
Bedford, England
Posts:
968
Plugin Contributions:
0

Re: Multi Cross Sell mod [Support thread]

I use tabs, I have three. Xsell1,xsell2 and also purchased.

Research and get some example tab code and just output the various xsells into each tab.