Page 6 of 17 FirstFirst ... 4567816 ... LastLast
Results 51 to 60 of 163
  1. #51
    Join Date
    Jul 2005
    Location
    Hoedspruit
    Posts
    530
    Plugin Contributions
    2

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by DivaVocals View Post
    I'd say you both missed part of the install.. namely the template files which add the cross sell display to the product information page..
    I found the culprit in >templates, and moved the files to the right place. Will test in the morning. Bed time now.

  2. #52
    Join Date
    Apr 2015
    Location
    United States
    Posts
    144
    Plugin Contributions
    0

    Default Re: Cross Sell Advanced [Support Thread]

    Is this plugin compatible with zen cart version 1.54?

  3. #53
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,363
    Plugin Contributions
    94

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by fjbern1943 View Post
    Is this plugin compatible with zen cart version 1.54?
    Almost, but not quite. You'll need to find the "Product URL" block in each of the *_display.php files in the /includes/templates/YOUR_TEMPLATE/templates directory and make the change below. The handling of the product's URL display changed in Zen Cart v1.5.3 -- please note that these changes apply ONLY TO Zen Cart v1.5.3 or later!

    Find:
    Code:
    <!--bof Product URL -->
    <?php
      if (zen_not_null($products_url)) {
        if ($flag_show_product_info_url == 1) {
    ?>
        <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
    <?php
        } // $flag_show_product_info_url
      }
    ?>
    <!--eof Product URL -->
    Change to:
    Code:
    <!--bof Product URL -->
    <?php
      if (zen_not_null($products_url)) {
        if ($flag_show_product_info_url == 1) {
    ?>
        <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=product&products_id=' . zen_output_string_protected($_GET['products_id']), 'NONSSL', true, false)); ?></p>
    <?php
        } // $flag_show_product_info_url
      }
    ?>
    <!--eof Product URL -->

  4. #54
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by lat9 View Post
    Almost, but not quite. You'll need to find the "Product URL" block in each of the *_display.php files in the /includes/templates/YOUR_TEMPLATE/templates directory and make the change below. The handling of the product's URL display changed in Zen Cart v1.5.3 -- please note that these changes apply ONLY TO Zen Cart v1.5.3 or later!

    Find:
    Code:
    <!--bof Product URL -->
    <?php
      if (zen_not_null($products_url)) {
        if ($flag_show_product_info_url == 1) {
    ?>
        <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
    <?php
        } // $flag_show_product_info_url
      }
    ?>
    <!--eof Product URL -->
    Change to:
    Code:
    <!--bof Product URL -->
    <?php
      if (zen_not_null($products_url)) {
        if ($flag_show_product_info_url == 1) {
    ?>
        <p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=product&products_id=' . zen_output_string_protected($_GET['products_id']), 'NONSSL', true, false)); ?></p>
    <?php
        } // $flag_show_product_info_url
      }
    ?>
    <!--eof Product URL -->
    Cool.. thanks for posting the fix..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #55
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,363
    Plugin Contributions
    94

    Default Re: Cross Sell Advanced [Support Thread]

    No problem, nice plugin!

  6. #56
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by lat9 View Post
    No problem, nice plugin!
    It is now.. I take no credit for anything but cleanup.. RodG did the original code consolidation between the two OG cross sell plugins..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #57
    Join Date
    Mar 2006
    Location
    Rosebud, Victoria, Australia
    Posts
    310
    Plugin Contributions
    2

    Default Re: Cross Sell Advanced [Support Thread]

    G'day,

    So lat9 has installed Cross Sell Advanced for me and I've been testing it out on our test setup.

    I added a product model to one product and it looked okay, but I wanted to try it on another product with five X-sell items.

    So I've tried to add the following five Cross Sell products to Product Model: M-212 + MC-750
    TEC52A-ANTIFOG
    TA-200A
    MS-20
    VA-TOWEL3
    SP-0101

    But I get an error: Product Model: M-212 + MC-750 was not found. No Cross Sell Added.

    I suspect Cross Sell Advanced has limitations on the Product Model character set, e.g. no spaces. There may be other limitations. It would help if the limitations were documented, but it would be even better if the problem was just fixed. Without a fix it's going to be difficult for us to use Cross Sell Advanced.

    Also, what's Cross Sell Advanced going to do if two products have the same Product Model value, because I'm not aware of Zen Cart stopping this from happening. We may well have some duplicate Product Model values.

    Personally, I'd like to be using the Product Id value. After all, that value is unique.

    It would be really nice if Cross Sell Advanced supported us being able to use either of Product Model or Product Id on its various inputs.

    (By the way, it's simply not practical to use the old Cross Sell interface on a site with more than 2000 products. Not being able to go direct to a product id and having to page around is just not a workable interface. And no doubt, that's why Cross Sell Advanced was created.)

    Best regards, Lloyd Borrett.
    Zen Cart 1.5.5e, PHP 5.3.29 MySQL 5.5.42

  8. #58
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by lloyd_borrett View Post
    G'day,

    So lat9 has installed Cross Sell Advanced for me and I've been testing it out on our test setup.

    I added a product model to one product and it looked okay, but I wanted to try it on another product with five X-sell items.

    So I've tried to add the following five Cross Sell products to Product Model: M-212 + MC-750
    TEC52A-ANTIFOG
    TA-200A
    MS-20
    VA-TOWEL3
    SP-0101

    But I get an error: Product Model: M-212 + MC-750 was not found. No Cross Sell Added.

    I suspect Cross Sell Advanced has limitations on the Product Model character set, e.g. no spaces. There may be other limitations. It would help if the limitations were documented, but it would be even better if the problem was just fixed. Without a fix it's going to be difficult for us to use Cross Sell Advanced.
    Dunno if this is a limitation of Cross Sell.. Never had this issue reported before.. Can't document a problem that can't be replicated or has not been reported.. (see results of my own test below..

    Product Name: Grifo Fasce Tablecloth

    Current Cross-Sells:

    Product Model Product Name Action
    01-050614 + 001 Galatea Tablecloth
    01-0702GB Grifo Fasce Napkins-Set of Four
    Quote Originally Posted by lloyd_borrett View Post
    Also, what's Cross Sell Advanced going to do if two products have the same Product Model value, because I'm not aware of Zen Cart stopping this from happening. We may well have some duplicate Product Model values.
    Again, not an issue that's been reported, but I'd say the short answer is to make your model numbers unique so that this is not an issue.. Not seeing the upside of modifying this community module to account for something that isn't a recommended business practice.. (meaning the use of duplicate model numbers)

    Quote Originally Posted by lloyd_borrett View Post
    Personally, I'd like to be using the Product Id value. After all, that value is unique.

    It would be really nice if Cross Sell Advanced supported us being able to use either of Product Model or Product Id on its various inputs.
    And you (and any other community member) are free to submit these kinds of changes to this module..

    Quote Originally Posted by lloyd_borrett View Post
    (By the way, it's simply not practical to use the old Cross Sell interface on a site with more than 2000 products. Not being able to go direct to a product id and having to page around is just not a workable interface. And no doubt, that's why Cross Sell Advanced was created.)
    Again, you (and any other community member) are free to submit improvements/changes to this module.. You also might want to look at one of the other cross sell modules ad see if they provide an interface more to your liking..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #59
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: Cross Sell Advanced [Support Thread]

    Hi Guys, I've recently installed this plugin (everything seems to have installed without any problems), but for some reason I can't get the additional images to display below the page. I'm running ZenCart v1.5.1 with a custom (ThemeForrest) template that I've merged with the plugin template files. Even so, my template strangely only displays 'Search' at the bottom of the page where the additional images are supposed to show. Does anyone have any ideas what the problem might be?

  10. #60
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Cross Sell Advanced [Support Thread]

    Quote Originally Posted by McLovin View Post
    Hi Guys, I've recently installed this plugin (everything seems to have installed without any problems), but for some reason I can't get the additional images to display below the page. I'm running ZenCart v1.5.1 with a custom (ThemeForrest) template that I've merged with the plugin template files. Even so, my template strangely only displays 'Search' at the bottom of the page where the additional images are supposed to show. Does anyone have any ideas what the problem might be?
    The issue is with your theme, and not this module.. You will have to go back to Theme Forest and ask the template author to help you with this..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 6 of 17 FirstFirst ... 4567816 ... LastLast

Similar Threads

  1. Multi Cross Sell mod [Support thread]
    By gilby in forum All Other Contributions/Addons
    Replies: 475
    Last Post: 11 Apr 2020, 10:44 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. Replies: 1
    Last Post: 18 Sep 2013, 11:24 PM
  4. 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
  5. Cross Sell and Advanced Cross Sell Modules
    By fairway in forum Addon Templates
    Replies: 4
    Last Post: 8 Dec 2009, 08:44 PM

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