Author Topic: [SOLVED] I need to show number of views as you did in your site  (Read 975 times)

This topic contains a post which is marked as Best Answer. Press here if you would like to see it.

Robert

  • Newbie
  • *
  • Posts: 13
    • View Profile
    • BIG MARKET TANZANIA
[SOLVED] I need to show number of views as you did in your site
« 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?
« Last Edit: January 27, 2018, 01:54:14 AM by Administrator »



Osclass Developer

  • Jr. Member
  • **
  • Posts: 66
    • View Profile
Re: I need to show number of views as you did in your site
« Reply #1 on: January 24, 2018, 02:32:09 AM »
@Robert

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


Osclass Support Forums - Rackons.in

Re: I need to show number of views as you did in your site
« Reply #1 on: January 24, 2018, 02:32:09 AM »

Robert

  • Newbie
  • *
  • Posts: 13
    • View Profile
    • BIG MARKET TANZANIA
Re: I need to show number of views as you did in your site[SOLVED]
« Reply #2 on: January 24, 2018, 02:46:33 AM »
same as home page of rackons.com.
« Last Edit: January 25, 2018, 01:47:12 AM by Robert »

Marked as best answer by admin on December 28, 2018, 10:26:26 PM

Osclass Developer

  • Jr. Member
  • **
  • Posts: 66
    • View Profile
Re: I need to show number of views as you did in your site
« Reply #3 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>


Osclass Support Forums - Rackons.in

Re: I need to show number of views as you did in your site
« Reply #3 on: January 24, 2018, 04:07:57 AM »