I was wondering how to hide the quick navigation column from the order pages to avoid people from obtaining focus on other items other than the order wizard so, with some help from Matt and other threads at the forum, I'll explain how. This works with portal theme and Web20cart.
- To hide the quicknav column from the order page, we need to edit the footer.tpl located at /whmcs_folder/templates/portal/ and before
we should addCode:<div id="side_menu">(or whatever you shopping cart title is) and add {/if} right before <div class="clear">.Code:{if $pagetitle != 'Shopping Cart'}- Side the container left doesn't have a %, the shopping cart now will be smaller than the rest of the menu so we need to make it bigger. First, modify the style.css inside the portal folder and add
Code:#content_left_order{background-color:#FFF;float:left;margin:0;padding:15px;text-align:left;width:920px;}- Next, inside header.tpl you should replace
withCode:<div id="content_left_order">Code:<div id="{if $pagetitle != 'Shopping Cart'}content_left{else}content_left_order{/if}">
And that's it. If you have a dencent number of visits to the order page, I'm pretty sure this will help grow the number of conversions.

Reply With Quote