For Cart Delete button please make below modification.
File: \templates\gk_storefront\html\com_hikashop\product\cart.php
Line: 182 and 183 which is below
- Code: Select all
<?php if (@$defaultParams['link_to_product_page']) : ?></a><?php endif; ?>
</h3>
Replace with below
- Code: Select all
<?php if (@$defaultParams['link_to_product_page']) : ?></a><?php endif; ?>
</h3>
<?php if($this->params->get('show_cart_delete',1)){ ?>
<span class="hikashop_cart_module_product_delete_value hikashop_cart_value">
<a href="<?php echo hikashop_completeLink('product&task=updatecart&cart_type='.$this->params->get('cart_type','cart').'&cart_product_id='.$row->cart_product_id.'&quantity=0&return_url='); ?>" onclick="var qty_field = document.getElementById('hikashop_cart_quantity_<?php echo $row->cart_product_id;?>'); if(qty_field){qty_field.value=0;<?php echo $input; ?> document.hikashop_cart_form.submit(); return false;}else{ return true;}" title="<?php echo JText::_('HIKA_DELETE'); ?>"><img src="<?php echo HIKASHOP_IMAGES . 'delete2.png';?>" border="0" alt="<?php echo JText::_('HIKA_DELETE'); ?>" /></a>
</span>
<?php } ?>
Add following css code in override.css located in \templates\gk_storefront\css\override.css and enable css override option in template advanced settings.
- Code: Select all
#gkPopupCart .gkPopupWrap { width: 380px; }
#gkAjaxCart .hikashop_cart_module_product_name_value { width: 70%; }
.hikashop_cart_product_custom_item_fields {float: right;line-height: 33px;width: 40px;}
I don't see any problems with your breadcrumbs, if you haven't fixed it post a direct link to the page where breadcrumb width is not enough.
See you around...