Page 2 of 48 FirstFirst 123412 ... LastLast
Results 11 to 20 of 476
  1. #11
    Join Date
    Jun 2010
    Posts
    53
    Plugin Contributions
    2

    Idea or Suggestion Re: Multi Cross Sell mod [Support thread]

    I figured it out, I'm sorry.
    This file had not transfered over.
    includes/modules/premium2a/multi_xsell_products.php


    works great now!!!!
    Thank you so much for the hard work.

  2. #12
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Multi Cross Sell mod [Support thread]

    Hello, I'm looking to install this mod on one of my websites. Before i do, i would like to know if it is compatible with Tabbed products pro last version. Has anyone tried this combination so far?
    Thanks!

  3. #13
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by HeathenMagic View Post
    I had cross sell installed from before and I tried uninstalling and reinstalling this module and the same happened. Had the normal cross sell and cross sell advanced. I am on PHP 5 too.
    I suspect you still have some of the previous mods files or configuration settings.

    You can run this in the tools->sql patches to remove the previous mods configuration settings
    after BACKING UP AND TESTING FIRST of course

    Code:
      
    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4 
      FROM configuration_group
      WHERE configuration_group_title= 'Cross Sell';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id = @t4;
    Check that all the previous mods files have been removed

  4. #14
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by andreitero View Post
    Hello, I'm looking to install this mod on one of my websites. Before i do, i would like to know if it is compatible with Tabbed products pro last version. Has anyone tried this combination so far?
    Thanks!
    I don't use "Tabbed products pro" so I don't know
    You would need to compare both mods directory structure to find any duplicate files.
    These duplicate files would then need to be "merged"

  5. #15
    Join Date
    May 2005
    Location
    England
    Posts
    626
    Plugin Contributions
    0

    Default Re: Multi Cross Sell mod [Support thread]

    Hello Gilby,

    Thanks so much for your assistance, it worked a treat. I cleared the files from the last version and ran the sql statement you quoted and it did it. Where can people send a donation to you?

  6. #16
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by gilby View Post
    I don't use "Tabbed products pro" so I don't know
    You would need to compare both mods directory structure to find any duplicate files.
    These duplicate files would then need to be "merged"
    Thanks for that, i did install this contribution, but got an error:
    1146 Table 'lemycouk_zc1.TABLE_PRODUCTS_XSELL' doesn't exist in:
    [select distinct p.products_id, p.products_image, pd.products_name from TABLE_PRODUCTS_XSELL xp, zen_products p, zen_products_description pd where xp.products_id = '90' and xp.xsell_id = p.products_id and p.products_id = pd.products_id and pd.language_id = '1' and p.products_status = 1 order by xp.sort_order asc limit 6]

    Double checked the Cross Sell 1 - Display Products - Max, it has value '6' . What else should i look at to fix it?

    Also, in order to get it to work with Tabbed products pro, i would need to change this bit to match multi_cross_sell database table instead of xsell table. I am unsure about the changes i should make, can you please give me some advice?
    Code:
    				$xsell_query = $db->Execute("select distinct p.products_id, p.products_image, pd.products_name
    									 from " . TABLE_PRODUCTS_XSELL . " xp, " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
    									 where xp.products_id = '" . $_GET['products_id'] . "'
    									  and xp.xsell_id = p.products_id
    									  and p.products_id = pd.products_id
    									  and pd.language_id = '" . $_SESSION['languages_id'] . "'
    									  and p.products_status = 1
    									 order by xp.sort_order asc limit " . MAX_DISPLAY_XSELL);

  7. #17
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by andreitero View Post
    Thanks for that, i did install this contribution, but got an error:
    1146 Table 'lemycouk_zc1.TABLE_PRODUCTS_XSELL' doesn't exist in:
    [select distinct p.products_id, p.products_image, pd.products_name from TABLE_PRODUCTS_XSELL xp, zen_products p, zen_products_description pd where xp.products_id = '90' and xp.xsell_id = p.products_id and p.products_id = pd.products_id and pd.language_id = '1' and p.products_status = 1 order by xp.sort_order asc limit 6]

    Double checked the Cross Sell 1 - Display Products - Max, it has value '6' . What else should i look at to fix it?

    Also, in order to get it to work with Tabbed products pro, i would need to change this bit to match multi_cross_sell database table instead of xsell table. I am unsure about the changes i should make, can you please give me some advice?
    Code:
    				$xsell_query = $db->Execute("select distinct p.products_id, p.products_image, pd.products_name
    									 from " . TABLE_PRODUCTS_XSELL . " xp, " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
    									 where xp.products_id = '" . $_GET['products_id'] . "'
    									  and xp.xsell_id = p.products_id
    									  and p.products_id = pd.products_id
    									  and pd.language_id = '" . $_SESSION['languages_id'] . "'
    									  and p.products_status = 1
    									 order by xp.sort_order asc limit " . MAX_DISPLAY_XSELL);
    Quick fix to use the first XSELL database and hard code it
    Cannot try it myself but it looks right
    Code:
    $xsell_query = $db->Execute("select distinct p.products_id, p.products_image, pd.products_name
     from " . TABLE_PRODUCTS_XSELL1 . " xp, " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
     where xp.products_id = '" . $_GET['products_id'] . "'
      and xp.xsell_id = p.products_id
      and p.products_id = pd.products_id
      and pd.language_id = '" . $_SESSION['languages_id'] . "'
      and p.products_status = 1
     order by xp.sort_order asc limit " . MAX_DISPLAY_XSELL1);
    Last edited by gilby; 9 Jul 2010 at 05:55 AM.

  8. #18
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by HeathenMagic View Post
    Hello Gilby,

    Thanks so much for your assistance, it worked a treat. I cleared the files from the last version and ran the sql statement you quoted and it did it. Where can people send a donation to you?
    Glad you solved the problem
    Donate instead to the zen-cart admins here:

  9. #19
    Join Date
    Feb 2010
    Posts
    61
    Plugin Contributions
    0

    Default Re: Multi Cross Sell mod [Support thread]

    I love this mod! I have installed and it appears to be working correctly in my Admin area however, I do not see anything on the actual web page? Do I need to add this like suggested in the Cross Sell mod installation?

    4. Open includes/languages/english/product_info.php
    or includes/languages/english/YOUR_TEMPLATE/product_info.php
    and add:
    define('TEXT_XSELL_PRODUCTS', 'We Also Recommend :');
    just above the final ?> and save it into includes/languages/english/YOUR_TEMPLATE/product_info.php

  10. #20
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Multi Cross Sell mod [Support thread]

    Quote Originally Posted by kconklin View Post
    I love this mod! I have installed and it appears to be working correctly in my Admin area however, I do not see anything on the actual web page? Do I need to add this like suggested in the Cross Sell mod installation?

    4. Open includes/languages/english/product_info.php
    or includes/languages/english/YOUR_TEMPLATE/product_info.php
    and add:
    define('TEXT_XSELL_PRODUCTS', 'We Also Recommend :');
    just above the final ?> and save it into includes/languages/english/YOUR_TEMPLATE/product_info.php
    No that info is found here:
    includes\languages\english\extra_definitions\YOUR_TEMPLATE\multi_xsell_box_defin es.php

    You probably haven't edited or merged
    includes\templates\YOUR_TEMPLATE\templates\tpl_product_info_display.php

    If you haven't previously customised this file then you can just rename the sample file:
    includes\templates\YOUR_TEMPLATE\templates\SAMPLE_ADDITION_TO_tpl_product_info_d isplay.php
    to:
    includes\templates\YOUR_TEMPLATE\templates\tpl_product_info_display.php

 

 
Page 2 of 48 FirstFirst 123412 ... LastLast

Similar Threads

  1. Cross Sell Advanced [Support Thread]
    By DivaVocals in forum Addon Admin Tools
    Replies: 153
    Last Post: 19 Mar 2024, 08:22 PM
  2. Ultimate Cross Sell [Support Thread]
    By ultimate_zc in forum All Other Contributions/Addons
    Replies: 239
    Last Post: 17 May 2015, 03:25 AM
  3. Just another Cross-Sell mod (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 702
    Last Post: 3 Nov 2012, 04:30 AM
  4. Multi cross sell mod
    By bonsey61 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 9 Oct 2010, 08:12 PM
  5. support for Cart Upsell/Cross Sell Mod
    By wagnerguy in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 5 May 2009, 01:18 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR