Our extensions

play HikaShop is an e-commerce solution for Joomla !
Built for simplicity and flexibility. 


Have your users purchase your products efficiently, facilitate the management of your store, increase your sales thanks to built-in marketing tools and so much more !
Quik and easy to configure, let starts your shop online today !

All features     Download

What's new ?

Main features

INTERNATIONAL
SALES


HikaShop provides an interface for handling languages, currencies, zones and advanced taxes to sell anywhere in the world.

POWERFUL
STATISTICS


Easily manage your store using the built-in dashboard and its powerful statistics capabilities.

RESPONSIVE
LAYOUT


HikaShop works on every device (laptop, tablet, smartphone..). Your shop will fit to each user's screen.

MARKETING
TOOLS


Increase your sales thanks to affiliate program support, coupons, discounts and email marketing integration.

EASY TO
CONFIGURE


User-friendly and flexible, our component is easy to use and configure. Create your own shop online in a minute !

FULLY
INTEGRATED


HikaShop is integrated with many other components and includes a lots of plugins...

ADVANCED
CUSTOMIZATION


Personalize your store: views, checkout, information fields, emails, and more to fit your website design

MULTI
VENDOR


Adding HikaMarket to HikaShop, create a multi-vendor website. Manage in one shop several sales from different people.

Our Company

BUSINESS
PARTNER

HikaShop is a complete e-commerce solution that allows you to easily create and manage your online store but also take it to the highest level.

GREAT
SUPPORT

The whole team is working to provide you with quality support. Documentation and forum are there to guide you step by step. Each issue finds an answer !

ALWAYS
ON TOP

HikaShop is constantly improving. We ensure compatibility with each new version of Joomla! And new features are added frequently.

RECEIVE
OUR NEWS

Good deals and novelties, it's here!

How to add some css in your Css file

 

All these CSS modifications can be done via the CSS edition interface in the Display tab of the configuration ("Hikashop->System->Configuration->Display"):

As an advice, we know recommend to you add all your custom code a the end of your style.css and with some comments in order to organize :

Note : To see more in details how to proceed to add custom css to your Css file, have a look on this tutorial

Results :

How to move the registration box below the login box on the checkout

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area and change the code:

.hikashop_checkout_login .hkc-lg-4 {
width 100%;
}

Results :

How to change the color/size of the prices in HikaShop

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area and modify the code:

span.hikashop_product_price {
color: #900;
font-weight : bold;
}

Results :

The text of some buttons in HikaShop doesn't fit in the styling of the button

The styling of HikaShop buttons is handled by default by your template. If the text doesn't fit in the styling, that's because the template you're using uses a static styling for the buttons with a fix width. So, you have three solutions:

  1. You change the styling of buttons in your template so that it works regardless of the text in it. You might want to contact your template provider for that.
  2. From HikaShop Main Configuration, you can help you by adding some html class in Display tab, and in CSS part

How to hide some parts of the pagination ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There, in order to remove the number of items per page selection (with the dropdown), you can add the CSS:

.hikashop_products_pagination div.limit,
.hikashop_subcategories_pagination div.limit { 
display :none; 
}
In order to remove the results counter text below it, you can add the CSS:
span.hikashop_results_counter{
  display :none; 
}

How to display the product code on the product page ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There, in order to display the product code on the product page, you can remove the CSS:

.hikashop_product_code_main{
display :none;
}

How to change the border around products and categories on listings ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There,  you can change the CSS:

div.hikashop_products div.hikashop_subcontainer {
border : 1px solid;
}

How to change the size of the small thumbnails on the product page
(you see them only when you have several images attached to a product) ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There,  you can change the CSS:

img.hikashop_child_image {
margin : 2px;
height : 25px;
}

How to hide the characteristic values in the product name on the product page ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There,  you can change the CSS:

.hikashop_product_page .hikashop_product_variant_subname {
display : none;
}

How display the characteristics radio selection vertically ?

You need to edit the CSS of HikaShop via the interface in the configuration under the tab display in the CSS area.
There,  you can change the CSS:

.hikashop_product_characteristics_table {
width : 100%;
}

.hikashop_product_characteristics_table input {
float : left;

clear : both;
}

.hikashop_product_characteristics_table label {
display : block;
}

How to modify HikaShop fontawesome

You want to change the classic fontawesome icon for your own icons (in .png) in the checkout cart :

.hikashop_checkout_cart i.fa.fa-sync {
background-image : url(http://yourwebsite.com/media/com_hikashop/images/refresh.png);
width: 14px;
height: 14px;
}


.hikashop_checkout_cart i.fa.fa-sync:before {
content: '' !important;
}