Page 38 of 222 FirstFirst ... 2836373839404888138 ... LastLast
Results 371 to 380 of 2217
  1. #371
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by teebo View Post
    Interested in adding tabs to things like shipping & return, contact us pages, like this site

    http://www.accessoryseek.com/index.p...e=shippinginfo

    Can we do this with this mod?
    Not with this mod, but it looks like they just added that to the code for that page. Tabs aren't too hard to make when hardcoding them on the page.

  2. #372
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by bigbadboy View Post
    Just wondering if I could use this mod in this way:

    I have a product with 15 attributes.
    I need to allow the customer to choose from another 100 (but only if they choose a specific option which at this point is not a problem)
    Would I, using your mod, be able to:
    Tab 1 - regular 15 attributes
    Tab 2 - the other 100+ attributes

    Cheers in advance.
    Can't really think of a good way to do what you are looking for. I don't modify any of the actual content, I simple display the existing stuff inside the tabs, which means I only reference the zen-cart attributes template/module to show the attribs. Sounds like what you are lookin for might be handled by the PC Configurator contrib with some minor modifications.

    I guess You could also maybe use javascript to manipulate the display to make the attributes appear on different tabs.. but I dont think my jscript skills are good enough to do that.

    Quote Originally Posted by bigbadboy View Post
    Oh ... and in IE7 your demo produces scroll bars in the mod area.
    This is a feature that I talked about above.. All browsers should show scroll bars in the tabs because I'm using a fixed height instead of the dynamic height. see all the fun to be had with TPP

  3. #373
    Join Date
    Apr 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    I have a question about Tab order. I have looked through the whole thread and haven't been able to find any information regarding changing the tab order.

    I have my attributes tab titled Customize yours now and I would like it display as the last tab. I have played with all that I could think of but haven't been able to move them around.

    Thanks in advanced.

  4. #374
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by phantomxc View Post
    I have a question about Tab order. I have looked through the whole thread and haven't been able to find any information regarding changing the tab order.

    I have my attributes tab titled Customize yours now and I would like it display as the last tab. I have played with all that I could think of but haven't been able to move them around.

    Thanks in advanced.
    Tab order has to be changed in the code, dynamic ordering is not yet supported. If you only want the attribs moved to the end I can PM you with a version that has that

  5. #375
    Join Date
    Apr 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    That would be awesome, or if you plan on adding dynamic ordering any time soon, I can just wait for that. No real big rush :)

    I am just worried that if I did get a custom page I would forget about it or not know how to change it when I did need to update.

  6. #376
    Join Date
    Jun 2007
    Posts
    7
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by qhome View Post
    It's very odd. The default options on your page work fine for me in Firefox. But when I look with IE6 & IE7, they did not.

    On my demo site, The default attributes worked fine in all 3

    I will do some more research on the IE nuances
    Have you fixed this yet?

  7. #377
    Join Date
    Apr 2008
    Location
    Covington, Washington, United States
    Posts
    205
    Plugin Contributions
    1

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Hi Q,

    First things first, GREAT MOD, I love it. However I hate IE.

    I wish I could dismiss the problem I am having by getting rid of IE, but potential customer use IE, so it's not that easy :)

    Everything works and looks great in FF but when I click on a product within IE, I get the following error:

    "Internet Explorer cannot open the internet site http://www.litepockets.com/chadwickh...der-p-378.html (html file changes depending on what products I click on)

    Operation Aborted"

    To duplicate the error I recommend going to a product on this page:
    http://www.litepockets.com/gardendec...rs-c-6_43.html as I haven't tested all products.

    I haven't seen this listed in the forum elsewhere, so I assume I did something wrong, or this mod is not compatible with others. Any support is appreciated!!! I should mention, I can fix the problem by using the default tpl_product_info_display.php file, but then I lose the tabs of course.

  8. #378
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    According to IE7, the actual error is :
    Code:
    Webpage Script Errors
    
    User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; iOpus-Web-Automation; .NET CLR 2.0.50727; InfoPath.2)
    Timestamp: Wed, 7 May 2008 23:29:57 UTC
    
    0.
    Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
    Line: 0
    Char: 0
    Code: 0
    URI: http://www.litepockets.com/chadwickhoseholder-p-378.html

    Unfortunately that isn't very helpful, but then looking at your page in Firebug on FF, it shows a problem in this function:

    Code:
    function domReady(init) {
    53 /* for Mozilla */
    54 if (document.addEventListener) {
    55 document.addEventListener("DOMContentLoaded", init, false);
    56 return;
    57 }
    58 /* for Internet Explorer */
    59 /*@cc_on @*/
    60 /*@if (@_win32)
    61 document.write("<script id=__ie_onload defer><\/script>");
    62 var script = document.getElementById("__ie_onload");
    63 script.onreadystatechange = function() {
    64 if (this.readyState == "complete") {
    65 init(); // call the onload handler
    66 }
    67 };
    68 return;
    69 /*@end @*/
    70 /* for Safari */
    71 if (/WebKit/i.test(navigator.userAgent)) { // sniff
    72 var _timer = setInterval(function() {
    73 if (/loaded|complete/.test(document.readyState)) {
    74 init(); // call the onload handler
    75 }
    76 }, 10);
    77 return;
    78 }
    79 /* for other browsers */
    80 window.onload = init;
    81 return;
    82}
    83function isLinkExternal(link) {
    84 var r = new RegExp('^https?://(?:www.)?'
    85 + location.host.replace(/^www./, ''));
    86 return !r.test(link);
    87}
    88domReady(
    89 function() {
    90 addListener(document, 'click',
    91 function(e) {
    92 var target = (window.event) ? e.srcElement : e.target;
    93 while (target) {
    94 if (target.href) break;
    95 target = target.parentNode;
    96 }
    97 if (!target || !isLinkExternal(target.href))
    98 return true;
    99 var link = target.href;
    100 link = '/outgoing/'
    101 + link.replace(/:\/\//, '/')
    102 .replace('/^mailto:/', 'mailto/');
    103 // alert(link); return false; //тестирование
    104 pageTracker._trackPageview(link);
    105 }
    106 );
    107 //отслеживание дополнительных элементов
    108 //addListener(document.getElementById('element-id'),
    109 // 'click', function() { pageTracker._trackPageview('/element-id/'); });
    110 }
    111);
    112</script>
    and seeing all those funky characters might also be a cause.

    All in all tho, this is not a TPP problem. Nothing related to TPP is anywhere near this error.

  9. #379
    Join Date
    Apr 2008
    Location
    Covington, Washington, United States
    Posts
    205
    Plugin Contributions
    1

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    ? I'm very confused than. If I go back to using the original product info template file, all works well... I use tpp, it breaks...

    Not quite sure what's up..

  10. #380
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    What other mods are you running that requires all the text I pasted above? looks like you are doing some crazy SEO URLS there... are there any errors at all when using the SEO without TPP product info page?

    After looking at in Firefox, i see the Dom_ready function seems to execute when i change tabs, and the pageTracker._trackPageview(link); thing chokes. I'm not sure what this does or why it has a problem with the tabs.

 

 

Similar Threads

  1. Main Image Replacer (MIR) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 5 Aug 2017, 02:47 AM
  2. v154 Tabbed Prod Pro (TPP): Adding Anchor Links
    By Feznizzle in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 30 May 2016, 07:50 PM
  3. v139h Conflicts between Tabbed Home and Tabbed Products Pro v1.07
    By swdynamic in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 14 Sep 2014, 06:29 PM
  4. Column Divider Pro (CDP) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 275
    Last Post: 3 Nov 2013, 07:44 AM
  5. Tabbed Products Contrib [WIP]
    By qhome in forum All Other Contributions/Addons
    Replies: 22
    Last Post: 22 Sep 2008, 01:43 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