Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 47
  1. #31
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: Wishpot Wishlist Management support thread

    Try putting the Wishpot code at the bottom of tpl_product_info_display right after the </form>.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #32
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Wishpot Wishlist Management support thread

    Quote Originally Posted by swguy View Post
    Try putting the Wishpot code at the bottom of tpl_product_info_display right after the </form>.
    It's funny you should say that... I was actually just playing around with placements.

    If I place it anywhere after the attribute code, everything works as expected.

    If I place it after the form it works as well.

    Obviously, both location are useless and not where we'd like to put it since it really wouldn't make sense to have that button just floating below the description.

    If I place before the add to cart, then it breaks add to cart as well as attributes, you cannot and anything to shopping cart and since that doesn't work, it breaks attributes as well.

    I should say that if the customer is smart and they actually select the attributes, everything works fine. It's just when don't select it, they are not prompted to select it because wishpot breaks that.

  3. #33
    Join Date
    Aug 2008
    Posts
    9
    Plugin Contributions
    0

    Default Re: Wishpot Wishlist Management support thread

    yes - can confirm this problem. works ok in Firefox but IE prevents ability to add to cart.....BUT only if you have the wishpot code included anywhere BEFORE the attributes module code in tpl_product_info_display.php

  4. #34
    Join Date
    Oct 2008
    Posts
    28
    Plugin Contributions
    0

    Default Re: Wishpot Wishlist Management support thread

    Aha! You've just solved a problem I had posted on two other threads, as I had no suspicion that it was related to Wishpot.

    I was finding that, with the Wishpot code above the Attributes code, Attributes was breaking to such an extent that customers' Attributes selections were not being passed though to the Checkout. So we were receiving orders with no Attribute information, which was a potential disaster where stock is priced by attribute.

    All was good in Firefox, by IE7 and IE8 both had the problem.

    SWGuy, do you have any suggestions to get this working without stranding the Wishpot icon at the bottom of a long list of attributes?

    It would be great to put it either at the top of the Product Info page, or in the Add to Checkout box. :-)

  5. #35
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: Wishpot Wishlist Management support thread

    The problem with the top of the page is that then you won't have access to image information. The bottom of the page below the form should work.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #36
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Wishpot Wishlist Management support thread

    You might be able to use CSS absolute positioning to get the Wishpot button where you want it. There are limits to the location flexibility with this, but you should be able to make a space near the top of the product info page for it.

  7. #37
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: Wishpot Wishlist Management support thread

    I have reported this problem to Wishpot as well.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #38
    Join Date
    May 2009
    Location
    North Las Vegas, NV
    Posts
    44
    Plugin Contributions
    0

    Default Re: Wishpot Wishlist Management support thread

    I have spent this whole weekend troubleshooting this same problem... Many searches did not turn up this thread until I VALIDATED the Product Display page and removed all errors (one of which was commenting out the REQUIRE to tpl_wishpot.php) and then new WHY Internet Exploder exploded (as it frequently does).

    It's because the WISHPOT mod is a FORM and you cannot nest a Form within a Form (that is why you need to place it at the bottom of the page or anywhere Outside the Product Display Form).

    However, not that I've tried it yet, I think an idea is to strip out the Form Tags from the Wishpot Mod, write a second Submit button to call a Function that will basically rewrite the ACTION of the submit button (via getElementByID or Name) to do the action of either doing the submit for Add to Cart OR FOR Wishpot...

    Just an idea. I will try it later, but my brain is fried and my vision is getting blurred... LOL

    BTW, you may want to check out my New Zen Cart for some modifications I've done for Attributes... Nothing fancy, but it works and validates using Javascript (server side coming when I get a Round Tuit...) PLUS, it Updates the default image for both Style and Color after adding to the Cart AS WELL AS in the Shopping Cart. Not bad for just learning Zen Cart in the past two months... And not programming in several years!

    Click on my PrettySickPuppy.com link below to take a peek.

    Cheers!

    Mega Moonshine

  9. #39
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,312
    Plugin Contributions
    125

    Default Re: Wishpot Wishlist Management support thread

    Quote Originally Posted by Mega Moonshine View Post
    It's because the WISHPOT mod is a FORM and you cannot nest a Form within a Form (that is why you need to place it at the bottom of the page or anywhere Outside the Product Display Form).
    Sure enough, you are correct.

    My first implementation was actually below the form, but they didn't like that so they tried doing this nesting. It seems to work with most browsers but I guess you found a hole (please confirm that this is IE8 only).
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #40
    Join Date
    May 2009
    Location
    North Las Vegas, NV
    Posts
    44
    Plugin Contributions
    0

    Default Re: Wishpot Wishlist Management support thread

    I was testing on IE7 (not 8, so can't say about IE 8). Firefox is forgiving (works) while IE7 is not (breaks Add to Cart for attribute submission).

    BTW, I did try the IE hack of < !- -[if !IE]>- - >Some HTML or Text< !- -<![endif]- - > to have any IE browser skip/ignore the Wishpot Mod add-on, but that didn't work either unfortunately.

    I think my idea of writing a Javascript to replace the value of the ACTION via "document.form.action= this action or that action logic" (I know it's not correct, but you get the idea) depending on whether the Add-To-Cart submit button is clicked or the Wishpot submit button is clicked.

    This requires ONE Form with TWO different submit buttons, which is allowed (whereas a Form within a Form is not allowed and... would be BAD FORM... pun intended ).

    Mega Moonshine
    Last edited by Mega Moonshine; 5 May 2009 at 12:08 AM.

 

 
Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  2. BackUp ZC [Support Thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 285
    Last Post: 23 Dec 2020, 10:40 AM
  3. News & Article Management [Support]
    By Woodymon in forum All Other Contributions/Addons
    Replies: 450
    Last Post: 21 Nov 2019, 10:13 PM
  4. v139h Wishlist module attribute support
    By aliona in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 Mar 2012, 07:49 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