By Ivaylo Valkov on Thursday, 14 September 2017
Posted in General
Replies 6
Likes 0
Views 391
Votes 0
Hi, I have several problems associated with HikaShop App. Since my partners will use variants instead of creating individual products, there are several problems. The problem is to extract information about an image, description, category and vote. Instead of the information being taken from the variant, it must be taken from the base product (product_parent_id). I also want to ask how can extract price with VAT as it shows price without VAT.
Hey Ivaylo,

Correct me if i getting wrong your mean, regarding with your first question is it you mentioned that you would like to display only parent product on user profile hikashop app filter page?

For example :

T-shirt
- M size
- L size
- XL size

So you would like to display only T-shirt product on the listing page right?

Is it possible guide us how to create sub product? Because I am not really familiar with the Hikashop extension.


I also want to ask how can extract price with VAT as it shows price without VAT.

May i know how to create tax for the product in Hikashop? Because i tested in my locally, it seems like when i set the product price, it will display the price as what i set into "price with tax" section, you can watch my video here : http://take.ms/oD5nc

Perhaps you can update your Joomla backend and FTP access at http://stackideas.com/dashboard/site so we can better have a check on your site directly see whether can display the price without VAT.
·
Thursday, 14 September 2017 19:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi the first problem was fixed. Everything is displayed correctly when I'm a registered user rather than a super administrator. For the second problem here, I have to use this type of tax: Electronic goods & services, since I'm going to sell games and software, I have to charge taxes for every country in the European Union. For this example, it should show 10 instead of 8.33.
There is another question, is it possible to extract the price at the lowest price than the variants instead of the main product.

Unfortunately, there is no way to provide access right now, I'm waiting for Joomla 3.8 to start working on my server. This is a local test.
·
Thursday, 14 September 2017 23:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for getting back to us,
It seems like my "prices and taxes" section different than yours, may i know is it need to setup the currency setting or other configuration on Hikashop? Because it keep can't let me change that 'Price with tax' value.

perhaps you can try modify this following code from that PHP file and see whether it display correctly with the price with tax value?

JoomlaFolder/media/com_easysocial/apps/user/hikashop/hikashop.php

// LINE 543
$product->price = $currencyHelper->format($product->prices[0]->price_value);

//replace with
$product->price = $currencyHelper->format($product->prices[0]->price_value_with_tax);


There is another question, is it possible to extract the price at the lowest price than the variants instead of the main product.

Is it possible provide us more screenshot regarding this part? Because i would like to know how you create those variants product in Hikashop since you only work on your localhost server.
·
Friday, 15 September 2017 13:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the reply. I will test this code. Will temporarily postpone this problem so you do not commit to it. In two weeks I will start my work and I will contact you again if there is any problem and I will give you a link to it.
·
Friday, 15 September 2017 13:48
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome

Keep us update if you need any further assistance in the future.
·
Friday, 15 September 2017 15:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post