Support Forums - Classified Ads Script Osclass

Osclass plugin support => General plugins discussion => Topic started by: mwindey on November 15, 2021, 08:31:41 PM

Title: Display price old and new
Post 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
Title: Re: Display price old and new
Post by: MB Themes on November 15, 2021, 10:18:32 PM
@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:
Code: [Select]
<?php echo pcm_item_old_price(); ?>
Title: Re: Display price old and new
Post by: MB Themes on November 16, 2021, 11:00:40 AM
@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)
Title: Re: Display price old and new
Post by: mwindey on November 16, 2021, 12:25:46 PM
@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:
Code: [Select]
        <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>
Title: Re: Display price old and new
Post by: MB Themes on November 16, 2021, 01:17:37 PM
@mwindey
Condition would be:
Code: [Select]
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 ;)
Title: Re: Display price old and new
Post by: mwindey on November 16, 2021, 03:13:55 PM
@MB Themes,

I have tried with:
Code: [Select]
      <?php if(floatval(osc_item_price()) <> floatval(pcm_item_old_price(NULLfalse))) { ?>

        <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 ...
Title: Re: Display price old and new
Post by: MB Themes on November 16, 2021, 03:27:56 PM
Try
Code: [Select]
if(floatval(osc_item_price()/1000000) <> floatval(pcm_item_old_price(NULL, false)) {
Title: Re: Display price old and new
Post by: mwindey on November 16, 2021, 03:51:29 PM
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.....
Title: Re: Display price old and new
Post by: MB Themes on November 16, 2021, 04:10:42 PM
@mwindey
Print those 2 functions just to see what values they have ;)
Title: Re: Display price old and new
Post by: mwindey on November 16, 2021, 05:19:27 PM
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.....
Title: Re: Display price old and new
Post by: mwindey on November 17, 2021, 11:59:06 AM
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...

 
Code: [Select]
      <?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(NULLfalse) <> 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 ?>
Title: Re: Display price old and new
Post by: MB Themes on November 18, 2021, 08:52:58 AM
Glad to hear that, looks nice!