Thread: Cross Sell

Page 7 of 14 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 131
  1. #61
    Join Date
    May 2006
    Posts
    313
    Plugin Contributions
    0

    Default Re: Cross Sell

    just wondering...

    i have cross-sell installed and working great. however, if I add more than 3 products it goes to another row. is there something I can do to adjust the columns per row for cross-sell?


    thanks in advance.

  2. #62
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default Cross Sell

    can somebody point me where to change these color as it is hard to see because of the white font...see attachmenets!
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	xsell1.JPG 
Views:	431 
Size:	53.6 KB 
ID:	682   Click image for larger version. 

Name:	xsell2.JPG 
Views:	441 
Size:	37.3 KB 
ID:	683  
    [FONT=Comic Sans MS]"Whether you think you can, or you think you can't... YOU ARE RIGHT."[/FONT]
    [FONT=Comic Sans MS]GOOD LUCK !!![/FONT]

  3. #63
    Join Date
    Jan 2006
    Location
    Toronto, Ontario, Canada
    Posts
    183
    Plugin Contributions
    3

    Default Re: Cross Sell

    tajul_ashyqin:
    try admin/xsell.php

    colours seem to be defined in this file.
    Ahmad Rahman
    TRUST IT | web site design and development
    mobile: 416.828.0224 | email: [email protected]
    www.trustit.ca

    For IT solutions how you want IT, when you want IT, TRUST IT.

  4. #64
    Join Date
    Jan 2006
    Location
    Toronto, Ontario, Canada
    Posts
    183
    Plugin Contributions
    3

    Default Re: Cross Sell

    Quote Originally Posted by pensive612
    just wondering...

    i have cross-sell installed and working great. however, if I add more than 3 products it goes to another row. is there something I can do to adjust the columns per row for cross-sell?


    thanks in advance.
    go to includes/modules/YOUR TEMPLATE NAME/xsell_products.php

    in the version i have, line 31, or look for:

    Code:
            if ($col > 2) {
    change the number 2. Basically this is saying if it is greater than 3 columns, add a new row. So if you wanted 6 items on a row, you would change this to 5.


    let me know how it works out.
    Ahmad Rahman
    TRUST IT | web site design and development
    mobile: 416.828.0224 | email: [email protected]
    www.trustit.ca

    For IT solutions how you want IT, when you want IT, TRUST IT.

  5. #65
    Join Date
    Apr 2006
    Posts
    121
    Plugin Contributions
    0

    Default Re: Cross Sell

    I'm trying to show the product model number between product name and product price within the 'Related Products' block at the bottom of the product info display.

    Anyone who has ever done that?

    Located the probable position of the code to change at line 49 of the includes/modules/xsell_products.php file being:

    $list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsCrossSell centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
    'text' => '<a href="' . zen_href_link(zen_get_info_page($xsell_query->fields['products_id']), 'products_id=' . (int)$xsell_query->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $xsell_query->fields['products_image'], $xsell_query->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . zen_href_link(zen_get_info_page($xsell_query->fields['products_id']), 'products_id=' . $xsell_query->fields['products_id']) . '">' . $xsell_query->fields['products_name'] . '</a>' . (XSELL_DISPLAY_PRICE=='true'? '<br />'.zen_get_products_display_price($xsell_query->fields['products_id']):'') );

    Tried several syntaxes but all failed causing the entire 'Related Product' block not to load. Must be missing a database call at line 23 but none of my attempts worked.

    Could somebody please help me with this modification?

  6. #66
    Join Date
    May 2006
    Posts
    98
    Plugin Contributions
    0

    Re: Cross Sell

    Forgive me if I've missed this issue elsewhere, but I'm having an issue since I upgraded to 1.3.5 and also upgraded to IH for 1.3.5. I also have the Cross-sell mod installed, and I think there's an issue between the new IH and the Cross-sell mod (for 1.3.0).

    In my upgraded site, when I go to IH in the admin section to add an additional picture, it is also showing all of the photos for anything that is a cross-sell for that item. So, what ends up happening is that all of the cross-sell photos are displayed twice on the product page - as additional photos directly under the main product photo, and also at the bottom of the page under "We also recommend...". This only seems to be happening to products where I go in to add an additional photo, but not to other pages with no additional photo, even if they also have defined cross-sell products.

    Here's an example of a page showing the problem: http://superbuzzy.com/index.php?main...roducts_id=294

    I went to add the picture with the finished bags, and found that all of the cross-sell pictures were displayed as additional pictures as well. Does anyone have a suggestion as to what might be going on? There isn't yet a Cross-sell mod update for 1.3.5, so that may be part of the problem... Thanks!

  7. #67
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Cross Sell

    How are you naming your images before you upload them? Are there any similarities between the naming? For example, if you name an image: product, and another product2, the product2 image will show up as an additional image for product.

  8. #68
    Join Date
    May 2006
    Posts
    98
    Plugin Contributions
    0

    Default Re: Cross Sell

    Quote Originally Posted by voltage View Post
    How are you naming your images before you upload them? Are there any similarities between the naming? For example, if you name an image: product, and another product2, the product2 image will show up as an additional image for product.
    Yup! That was the ticket... all the images started with "marine". Thanks so much! Learn something new everyday!

  9. #69
    Join Date
    Jul 2006
    Posts
    50
    Plugin Contributions
    2

    Default Re: Cross Sell 1.3.0 for 1.3.5

    Quote Originally Posted by reza View Post
    ... but the problem of not loading the pages in admin still remains, apart this, i can see cross products under selected product.
    the problem is the module using $HTTP_GET_VARS and you probably are using a host or have PHP.INI on your server set to have register_globals turned off.

    http://www.zen-cart.com/forum/showthread.php?t=45220

    in admin/xsell.php replace all $HTTP_GET_VARS to $_GET and it will start working when you get it uploaded to your host/server.

  10. #70
    Join Date
    Aug 2004
    Location
    Fountain Hills, AZ
    Posts
    515
    Plugin Contributions
    1

    Default Re: Cross Sell

    Is this to say we have to open the Globals to use cross sell????

 

 
Page 7 of 14 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. Replies: 1
    Last Post: 18 Sep 2013, 11:24 PM
  2. Which one? Multi Cross Sell vs Ultimate Cross Sell?
    By Renz in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 3 Jul 2013, 08:30 AM
  3. Fatal Error After installing Cross Sell - Just Another Cross Sell Mod
    By kconklin in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 9 Jul 2010, 02:38 PM
  4. Cross Sell and Advanced Cross Sell Modules
    By fairway in forum Addon Templates
    Replies: 4
    Last Post: 8 Dec 2009, 08:44 PM
  5. cross sell and cross sell in cart
    By g0d4lm1ty in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 17 Dec 2006, 01:35 AM

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