durangod Posted January 16, 2012 Share Posted January 16, 2012 Hi i am using a copy of the portal template and im trying to mod the look of the initial product cart display but i cannot find which template file is for the cart. One of the things i want to do is this. on the shopping cart page it shows Shared Hosting as the title. Then under that it has a link that says (Choose another category) when you click on that link it opens a small frame box and inside that box it says Register Domain Transfer Domain View Cart What i want to do is show that frame all the time without having to click on the (choose another category) so i want Register Domain Transfer Domain View Cart to show up all the time at the top of the page rather than have to click on a link first. Anyone know what tpl file handles the shopping cart initial view with available products all listed for selection? 0 Quote Link to comment Share on other sites More sharing options...
durangod Posted January 18, 2012 Author Share Posted January 18, 2012 looked thru most of the templates, have not found it yet, any ideas please? 0 Quote Link to comment Share on other sites More sharing options...
Sitepearl Posted January 19, 2012 Share Posted January 19, 2012 The .tpl files you want are in templates/orderforms/. In the folder of the cart you are using. 0 Quote Link to comment Share on other sites More sharing options...
durangod Posted January 19, 2012 Author Share Posted January 19, 2012 oh ok thanks so much for that 0 Quote Link to comment Share on other sites More sharing options...
DJSean00 Posted July 17, 2012 Share Posted July 17, 2012 I'm looking to do exactly the same thing but cannot work out what to do to the HTML to make it so the box is always there and you don't need to click on "(Choose another category)" to display it.. Any ideas? 0 Quote Link to comment Share on other sites More sharing options...
richardr35 Posted July 19, 2012 Share Posted July 19, 2012 Bump this thread as I am looking to accomplish this as well. 0 Quote Link to comment Share on other sites More sharing options...
DJSean00 Posted July 22, 2012 Share Posted July 22, 2012 I still cannot work this out.. Anyone at all ? 0 Quote Link to comment Share on other sites More sharing options...
richardr35 Posted July 27, 2012 Share Posted July 27, 2012 (edited) So I am also still in need of help, but I think I have it narrowed down. This is the command that allows you to click on the link and open the categories: <div align="center"><a href="#" onclick="showcats();return false;">({$LANG.cartchooseanothercategory})</a></div> However, I have tried many different choices to make it be open all the time, I have removed it, no good. I tried onmousemove which made it appear and disappear continuously, any help would be greatly appreciated. I also tried onload to no avail. Thanks Edited July 27, 2012 by richardr35 0 Quote Link to comment Share on other sites More sharing options...
richardr35 Posted August 3, 2012 Share Posted August 3, 2012 tumbleweeds... 0 Quote Link to comment Share on other sites More sharing options...
calbert Posted August 7, 2012 Share Posted August 7, 2012 tumbleweeds... I am looking for the same thing? Bump .. anybody .. 0 Quote Link to comment Share on other sites More sharing options...
calbert Posted August 7, 2012 Share Posted August 7, 2012 Anybody , I could use some help too .. 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted August 7, 2012 Share Posted August 7, 2012 What you need to do is edit the stylesheet for the cart template you are using and remove the display: none line for the categories div. e.g. if you were wanting to do this for the modern template, in the modern template folder edit the style.css file. And change the following #order-modern #categories { display: none; width: 75%; margin: 10px auto 0 auto; padding: 10px 0 10px 15px; background-color: #666; text-align: center; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } to this: #order-modern #categories { width: 75%; margin: 10px auto 0 auto; padding: 10px 0 10px 15px; background-color: #666; text-align: center; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } After making this change, be sure and shift reload the page in order for the new style sheet to load and the categories will show by default now on every page that uses them. 0 Quote Link to comment Share on other sites More sharing options...
richardr35 Posted August 7, 2012 Share Posted August 7, 2012 You Mr. Clarke are my HERO. That worked perfectly, thank you for taking time to post this. I looked at that 100 times and decided that "none" was equal to null and had no bearing on the display at all. You are truly a lifesaver, have a great day! 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.