Hello,
The most simple is here, to create an override view in order add your wanted elements, other fontawesome icons OR directly image.
In details :
1. From Main HikaShop Configuration => Advanced tab
2. In Advanced settings part, Active the "Display view files" for "Frontend"
=> This will display on your frontend your
view references,
example : user/cpanel
Now, to learn how to create your override view, with this documentation,
here
.
In your view code, look for
<i class=" to find all your
current fontawesome icons, and be able to replace it by example :
<a class="hika_cpanel_icon hikashop_cpanel_joomla_user_... data-original-title="" title="">
<span class="hk-icon fa-stack fa-2x user2">
<i class="far fa-file-alt fa-stack-2x"></i>
<i class="fas fa-circle fa-stack-1x fa-inverse" style="left:30%;top:30%"></i>
<i class="fas fa-user-circle fa-stack-1x" style="left:30%;top:30%"></i></span>
<span class="hikashop_cpanel_button_text">Customer Account</span>
</a>
For something like this :
<a class="hika_cpanel_icon hikashop_cpanel_joomla_user_... data-original-title="" title="">
<span class="hk-icon fa-stack fa-2x user2">
<img src="Your_Image/url_lin/icon.png"
<span class="hikashop_cpanel_button_text">Customer Account</span>
</a>
Hope this will help you to achieved your customization.
Regards