Masrizky.sch.id - Realtime Counter View or Counter of Number of Visitors to posts in the Plus UI v3.0.0 template is a cool feature that we can modify. The function of modification here is to make it seem as if blog visitors look a lot even though they have just registered on blogger.
How to Modify Counter Views
- Open Dashboard Blogger
- Click Theme
- Press the Inverted Triangle icon
Then look for the code
data-views
You will find something like this
.tfxC .pV{--v:'0'}
.tfxC .pV[data-views]{--v:attr(data-views)}
Change it to be like this,
so that the minimum number of visitors to the post is 1K even though it has just been published..tfxC .pV{--v:'1K'}
.tfxC .pV[data-views]{--v: '1' attr(data-views) 'K'}
Next, look for the code
.pGV .pVws::after{content:var(--v) ' views'}
Change it to something like this,
so that the counters in the article are also the same..pGV .pVws::after{content:'1' var(--v) 'K views'}
Save Theme
Important
- The side effect of this trick is that every time 1 visitor reads an article, the counter will consider it 1k visitors.
- The above method is just a trick to make blog visitors look crowded. This method can provoke the psychology of readers so that they are interested in reading our articles and consider our visitors crowded even though it is a matter of minutes.
- If you want the display to be normal as usual, just change the code to the original code found in steps 6 and 8.