Switch Search and Cart

GK User
Sun Dec 04, 2011 9:59 pm
Hi !

I would like to put Search box into the Cart area, anyone who know how to do this?

Tanks
User avatar
Fresh Boarder

GK User
Mon Dec 05, 2011 7:19 am
Hi,

What do you mean by Cart area? Give me a screenshot please!
User avatar
Platinum Boarder

GK User
Mon Dec 05, 2011 8:50 am
https://lh5.googleusercontent.com/-BHUVQ3C2FUo/Ttx23Do4esI/AAAAAAAAK6Y/l_nRX7Xr6ZI/s300/print-1.jpg

I want to put the search box were the cart is now on the frontpage if thats possible.
User avatar
Fresh Boarder

GK User
Mon Dec 05, 2011 10:53 am
Open: \templates\gk_boutique\layouts\default.php

- Find to remove (if you want to remove Cart button):

Code: Select all
<?php if($this->modules('cart')) : ?>
                 <div id="btnCart"></div>
<?php endif; ?>


- Add this code to the same place (To add search box beside main nav):

Code: Select all
<?php if($this->modules('search')) : ?>
   <div id="gkSearch">
      <jdoc:include type="modules" name="search" style="<?php echo $this->module_styles['search']; ?>" />
   </div>
   <?php endif; ?>
User avatar
Platinum Boarder


cron