Support Forums - Classified Ads Script Osclass
Osclass plugin support => General plugins discussion => Topic started by: mwindey on November 15, 2021, 08:31:41 PM
-
I'm wondering if there is any plugin that shows the price of a listing like old price and current price.
Osclasspoint is using this as in attachment.... If it doesn't exist i have to do it myself ::) :D
-
@mwindey
Today introduced Price Comparison Plugin (https://osclasspoint.com/osclass-plugins/design-and-appearance/price-comparison-plugin-i178) has feature to store "old price" when listing is modified.
It can be easily shown in theme using:
<?php echo pcm_item_old_price(); ?>
-
@mwindey
Thank you, old price was updating everytime, no matter if it was same or no.
We have updated plugin to change old price just in case price has changed.
You can download update in v1.0.1 8)
-
@MB Themes
Cool, thanks! Super plugin by the way and just delivered in time of needs :D
I still have one question and that is that it shows every time even when there is no price change....
Can i hide the div in my code you think so it only shows when there is a price change??
Now i have a new div id in css called price_old:
<div id="price_old" class="round3 i-shadow<?php if(function_exists('pcm_item_old_price')) { echo pcm_item_old_price($item_id = NULL, $format = true); } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><p style = "text-decoration:line-through;"><?php echo pcm_item_old_price(); ?></p></span>
</div>
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
-
@mwindey
Condition would be:
if(floatval(osc_item_price()) <> floatval(pcm_item_old_price(NULL, false)) {
not quite sure here if osc_item_price is multiplied by 1 000 000 or no ;)
-
@MB Themes,
I have tried with:
<?php if(floatval(osc_item_price()) <> floatval(pcm_item_old_price(NULL, false))) { ?>
<div id="price_old" class="round3 i-shadow<?php if(function_exists('pcm_item_old_price')) { echo pcm_item_old_price($item_id = NULL, $format = true); } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><p style = "text-decoration:line-through;"><?php echo pcm_item_old_price(); ?></p></span>
</div>
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
<?php } else { ?>
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
But the div id="price_old" still shows ...without price in the grey part and that is correct but i want to hide the complete div if no price change was made... is that possible you think??? Thanks ...
-
Try
if(floatval(osc_item_price()/1000000) <> floatval(pcm_item_old_price(NULL, false)) {
-
Same as before :'( I will continue until i solved it :D there must be a way to hide the grey div somehow ;D
Anyway i appreciate your great help, even though it is not a plugin problem because that works super.....
-
@mwindey
Print those 2 functions just to see what values they have ;)
-
first value 580 second value 0
so it checks the 2 values correctly.... When price changes value is 520 second 580 so that is correct.....
-
SOLVED :D :D
If value in tables is null / false or have same value then only show price ...else if tables is not equal show more div...
<?php if($content_only == 0) { ?>
<div id="side-right">
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
<?php if(function_exists('pcm_item_old_price')) { ?>
<?php if(floatval(pcm_item_old_price(NULL, false) <> floatval(pcm_item_old_price()))) { ?>
<div id="price_old" class="round3 i-shadow<?php if(function_exists('pcm_item_old_price')) { echo pcm_item_old_price($item_id = NULL, $format = true); } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><p style = "text-decoration:line-through;"><?php echo pcm_item_old_price(); ?></p></span>
</div>
<?php } ?>
-
Glad to hear that, looks nice!