Hi again
ok so follow my instructions:
1) Backup your website.
2) Be sure that you have the latest K2 Store component installed. The present version is 2.6.1.
3) Download attach file, decompress and replace the following files on ../gk_restaurant/:
k2_store_2.6.1_update_restaurant.zip
../gk_restaurant/css/k2.css
../gk_restaurant/css/style1.css
../gk_restaurant/css/style2.css
../gk_restaurant/css/style3.css
../gk_restaurant/css/css_noprefix/k2.css
../gk_restaurant/css/css_noprefix/style1.css
../gk_restaurant/css/css_noprefix/style2.css
../gk_restaurant/css/css_noprefix/style3.css
4) Remove all files on ../gk_restaurant/html/com_k2store/ except the index.html file.
Them add the new ones:
../gk_restaurant/html/com_k2store/checkout/cartsummary.php
../gk_restaurant/html/com_k2store/checkout/default.php
../gk_restaurant/html/com_k2store/checkout/form.php
../gk_restaurant/html/com_k2store/mycart/addtocart.php
../gk_restaurant/html/com_k2store/mycart/ajax.php
../gk_restaurant/html/com_k2store/mycart/default.php
../gk_restaurant/html/com_k2store/orders/print.php
5) Go to template parameters > Fonts and add the following font selectors on Headers - selectors:
.k2store_login_box legend,
.k2store_register_box legend
6) Open the following file ../gk_restaurant/html/com_k2/templates/default/item.php and remove this fragment:
- Code: Select all
<?php echo $this->item->event->AfterDisplay; ?>
<?php echo $this->item->event->K2AfterDisplay; ?>
Them replace this fragment:
- Code: Select all
<?php if($params->get('itemFullText')): ?>
<div class="itemFullText">
<?php echo (!empty($this->item->fulltext)) ? $this->item->fulltext : $this->item->introtext; ?>
</div>
<?php endif; ?>
with
- Code: Select all
<?php if($params->get('itemFullText')): ?>
<div class="itemFullText">
<?php echo (!empty($this->item->fulltext)) ? $this->item->fulltext : $this->item->introtext; ?>
</div>
<?php endif; ?>
<?php echo $this->item->event->AfterDisplay; ?>
<?php echo $this->item->event->K2AfterDisplay; ?>
Let me know if look fine