Osclass Support Forums - Rackons.in

Osclass Theme Support => Other => Topic started by: Robert on January 24, 2018, 02:28:25 AM

Title: [SOLVED] I need to show number of views as you did in your site
Post by: Robert on January 24, 2018, 02:28:25 AM
I need to show number of views as you did in your site how can i do it?
Title: Re: I need to show number of views as you did in your site
Post by: Osclass Developer on January 24, 2018, 02:32:09 AM
@Robert

Please explain your question with example and screenshot then we will understand your query .

Title: Re: I need to show number of views as you did in your site[SOLVED]
Post by: Robert on January 24, 2018, 02:46:33 AM
same as home page of rackons.com.
Title: Re: I need to show number of views as you did in your site
Post by: Osclass Developer on January 24, 2018, 04:07:57 AM
@robert
Firstly put below code in style.css
Quote
.item_views{width:auto;line-height:16px;margin:0 6px 0 0;background:#5DADE2;font-size:12px;padding:5px 10px 5px 10px;color:#fff;text-shadow: 1px 1px 1px rgba(0,0,0,0.1);-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;box-shadow:1px 1px 4px rgba(0,0,0,0.1);}
.i_views {width:auto;padding:2px 3px 2px 3px;}

1. Change in Loop-Single.php
then put below code in loop-single.php
Quote
<span class="item_views i_views"><i class="fa fa-eye"></i> <?php echo osc_item_views(); ?> x </span>

after
Quote
<a class="title" href="<?php echo osc_item_url(); ?>"><?php echo osc_highlight(osc_item_title(), 100); ?></a>


2. Changes in Loop-Single-Premium.php
then put below code in loop-single-premium.php
Quote
<span class="item_views i_views"><i class="fa fa-eye"></i> <?php echo osc_premium_views(); ?> x </span>

after
Quote
<a class="title" href="<?php echo osc_premium_url(); ?>"><?php echo osc_highlight(osc_premium_title(), 100); ?></a>