Templates: Silverfish | Blue Admin | TruBlu
Contribs: USPS AutoFill | Column Divider Pro | Tabbed Products Pro | Main Image Replacer
DoNaTiOnS WeLcOmE!
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.
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![]()
Templates: Silverfish | Blue Admin | TruBlu
Contribs: USPS AutoFill | Column Divider Pro | Tabbed Products Pro | Main Image Replacer
DoNaTiOnS WeLcOmE!
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.
Templates: Silverfish | Blue Admin | TruBlu
Contribs: USPS AutoFill | Column Divider Pro | Tabbed Products Pro | Main Image Replacer
DoNaTiOnS WeLcOmE!
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.
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.
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:
and seeing all those funky characters might also be a cause.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>
All in all tho, this is not a TPP problem. Nothing related to TPP is anywhere near this error.
Templates: Silverfish | Blue Admin | TruBlu
Contribs: USPS AutoFill | Column Divider Pro | Tabbed Products Pro | Main Image Replacer
DoNaTiOnS WeLcOmE!
? 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..
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.
Templates: Silverfish | Blue Admin | TruBlu
Contribs: USPS AutoFill | Column Divider Pro | Tabbed Products Pro | Main Image Replacer
DoNaTiOnS WeLcOmE!
Bookmarks