Osclass Support Forums

Osclass theme support => Sigma Osclass Theme => Topic started by: David Beaudoin on March 25, 2021, 02:12:26 PM

Title: Show the number of views
Post by: David Beaudoin on March 25, 2021, 02:12:26 PM
It seems to me that there is a variable to do but I don't know which one. Can you direct me to show the number of views
Title: Re: Show the number of views
Post by: MB Themes on March 25, 2021, 02:16:45 PM
@David
Code: [Select]
<?php echo osc_item_views(); ?>
https://docs.osclasspoint.com/hitems-php
Title: Re: Show the number of views
Post by: David Beaudoin on March 25, 2021, 02:19:35 PM
Thanks, but what should I change?
Title: Re: Show the number of views
Post by: David Beaudoin on March 25, 2021, 02:20:47 PM
no rather where should I put this line?
Title: Re: Show the number of views
Post by: MB Themes on March 25, 2021, 03:01:05 PM
@David
Anywhere you need it.
Title: Re: Show the number of views
Post by: David Beaudoin on March 25, 2021, 03:10:09 PM
This only shows me the number that should I add so that it adds a sentence please ?
Title: Re: Show the number of views
Post by: MB Themes on March 25, 2021, 03:39:03 PM
@David
Code: [Select]
Hello world <?php echo osc_item_views(); ?> views
Code: [Select]
<?php echo 'Hello world ' osc_item_views() . ' views'?>
Code: [Select]
<?php echo sprintf(__('Hello world %d views''theme_name'), osc_item_views()); ?>
Title: Re: Show the number of views
Post by: David Beaudoin on March 25, 2021, 03:53:46 PM
@MB Theme

Thanks it works wonderfully !!!