Hi there,
i try to disable the post view through theme panel post general setting.
I thought it just disable the appearance on the website, but surprisingly i also cant see the hit figure on my dashboard post backend.
How can i make the view count on my website unseen by anyone other then myself (in the wp dashboard post manager)
hope you can understand my concern and look forward to ur kind thoughts.
tq
-
This topic was modified 10 years by
sarawakv. Reason: notify
Hello,
If you disable the post views they will be removed completely that is whay they do not show up in the back-end anymore. If you only want to hide them from the front-end, you can use this custom css to do it:
.td-post-views{
display:none!important;
}
You can add this code in the theme panel->custom css box
Thank you!
Hi,
Please increase the memory allocated to php by following this guide: https://forum.tagdiv.com/system-status-parameters-guide/
You can also increase the other parameters as the guide suggests so you do not run into this kind of errors uin the future.
Thank you!
hi,
i hv a couple of question.
1. what is the maximum memory allocation that i can set for the wordpress as subject to above matter.
2. as u replied on #97190, i have place to code to the custom css. but the count view can still be seen for a split second. how can i hide it completely from visitors’ eye?
thank you so much for ur help.
Hi,
1) I don’t think there is a maximum amount of memory you can allocate to wordpress. It’s the minimum that creates issues. Please follow this topic for more details:
https://wordpress.org/support/topic/increasing-memory-allocated-to-php-1
2) CSS will do that unfortunately if you set it in the thme panel. If you want it to be hidden by default, you need to edit style.css and add the code inside the file.
Thank you!
Hi,
There are 2 ways to add css code in our theme. The first and most easy way is to add it in the theme panel->custom css box. the second one is adding it directly inside style.css found in the root directory of the theme files. Add the code at the very bottom of the file.
Hope this helps.
Thank you!

