Hi,
1. The fact that you have the price of all the variants displayed there is normal as it is the way it is set in the content plugin.
You would have to change the line:
$currencyClass->getListingPrices($products,$zone_id,hikashop_getCurrency(),'all');
to:
$currencyClass->getListingPrices($products,$zone_id,hikashop_getCurrency(),'cheapest');
in the file plugins/system/hikashopproductinsert/hikashopproductinsert.php in order to only see the cheapest price.
We'll actually change that to:
$config = hikashop_config();
$defaultParams = $config->get('default_params');
$currencyClass->getListingPrices($products,$zone_id,hikashop_getCurrency(),$defaultParams['price_display_type']);
in the next version of HikaShop so that the prices display uses the "price display method" setting of the HikaShop configuration for the content tag display plugin.
2. If the whole content of the product page is ok for your case, you can use a Joomla module (like this one
extensions.joomla.org/profile/extension/...-component-to-module
or this one
extensions.joomla.org/profile/extension/.../components-anywhere
) which modulizes this URL
www.portal-gestao.com/listagem-de-produt....html?tmpl=component
(you add ?tmpl=component at the end of the URL to remove the template around the page).
This supposes that the modulizing extension supports javascript as the variants system requires javascript in order to update the price and the variant selected.
And then you can insert the module in your article with the joomla loadposition system:
docs.joomla.org/How_do_you_put_a_module_inside_an_article%3F