Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Sep 2004
    Location
    LA, California
    Posts
    117
    Plugin Contributions
    0

    Default BUG/Error: Ultimate SEO URLs and ZenCart 1.2.6

    A client of mine discovered a bug in ZenCart 1.2.6 with the contribution Ultimate SEO URLs installed. The bug happens when you select a manufacturer from the drop down of manufacturers (a sidebox) - this redirects you to the product listing for this manufacturer.

    Now, if you setup your cart to show the 'Add to Cart' button without any extra fields on the product listing page than clicking on it will not add the product to your cart, but instead will redirect you to the home page.

    Yes, annoying and frustrating. To fix the issue open the file /includes/modules/product_listing.php on line 130:
    Change from:
    Code:
    $lc_button = '<a href="' . zen_href_link(FILENAME_DEFAULT, zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</a>&nbsp;';
    To:
    Code:
    $lc_button = '<a href="' . zen_href_link(FILENAME_DEFAULT,  'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</a>&nbsp;';
    Enjoy!
    Ron Peled

  2. #2
    Join Date
    Apr 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: BUG/Error: Ultimate SEO URLs and ZenCart 1.2.6

    Same Problem with 1.2.7d on line 139 change:

    From:

    $lc_button = '<a href="' . zen_href_link($_GET['main_page'], zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</a> ';

    To:

    $lc_button = '<a href="' . zen_href_link($_GET['main_page'], 'action=buy_now&products_id=' . $listing->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</a> ';

    Best Regards

    Ruslan

 

 

Similar Threads

  1. Ultimate SEO URLs 403 Error
    By Susan101 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 18 Aug 2011, 05:13 AM
  2. Ultimate SEO Urls Error
    By bryan7707 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Dec 2010, 03:34 AM
  3. JROX and Ultimate SEO urls
    By gsdcypher in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 27 Dec 2008, 03:43 AM
  4. Ultimate SEO URLs and iDevAffiliate SEO Links
    By paintballmountain in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 Sep 2008, 05:18 PM
  5. Ultimate SEO URLs: fatal error
    By X@vier in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 15 Dec 2006, 12:24 PM

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