VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: tomsson on January 24, 2017, 23:46:08 PM

Title: streng characters in span.PricesalesPrice
Post by: tomsson on January 24, 2017, 23:46:08 PM
Hello

Joomla 3.6.5
VM 3.0.18

In detail view of the product , for example http://www.catherinesbarneutstyr.no/nb/barnevogner/avenger-05-detail
there is span.PricesalesPrice   showned the price but after the price is div "pp"

I do not know where it ("pp") comes from?

do you know?
Title: Re: streng characters in span.PricesalesPrice
Post by: GJC Web Design on January 24, 2017, 23:51:31 PM
they must be in your template

they aren't in a div -- the appear after the div <div class="product-price">
Title: Re: streng characters in span.PricesalesPrice
Post by: jenkinhill on January 24, 2017, 23:52:31 PM
Maybe your template developer knows, because that is not default VirtueMart.
Title: Re: streng characters in span.PricesalesPrice
Post by: tomsson on January 25, 2017, 00:21:05 AM
hi

Was something beetwen webmaster who did the store and the owner of the store. They was fighting ;p
Now we do not have contact to the first one webmaster / developer.
The owner of the store has ordered to me fixing all of the problems with the store.



I have found in

/domains/catherinesbarneutstyr.no/public_html/templates/catherine/html/com_virtuemart/productdetails/default.php

<div class="vm-prices-block">
<?php
/*if (is_array($this->productDisplayShipments)) {
foreach ($this->productDisplayShipments as $productDisplayShipment) {
echo $productDisplayShipment;
}
}
if (is_array($this->productDisplayPayments)) {
foreach ($this->productDisplayPayments as $productDisplayPayment) {
echo $productDisplayPayment;
}
}*/
//In case you are not happy using everywhere the same price display fromat, just create your own layout
//in override /html/fields and use as first parameter the name of your file







echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$this->product,'currency'=>$this->currency)).'pp';








?>

</div>
</div>



so this echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$this->product,'currency'=>$this->currency)).'pp'; is not missed.


I do not know what kind of idea has the first webmaster with "pp"

thx