Ok I noticed there is “hits” parameter but how to display at front end? I saw only at admin area
The configuration of what data points should be displayed or not all happens in the Advanced tab of Library Configurations. You will see a large table with a list of all items that can be displayed. You can then then each of then on and off, and determine their order with the series of colored boxes above the table.
You will see the Hits display in there and be able to display it.
Let me know if this answers the question and please consider donating to support this plugin’s development.
I already donate a few days ago once I install this plugin and discover it much help…I consider donate more if I can achive something or what I want in my website.
Ok I got it what you saying…Thank You very much…!
-
This reply was modified 4 years, 6 months ago by
onlinedoit.
Thank you for your support. I just write it as a habit. It’s not always easy to establish a link between a user name here and a donation.
Thanks for letting me know the answer made sense.
Hi Yannick, where to change color of the table title, I already change the table background color in stylesheet feature but did not found where the table title style located.
Do you mean change the color of the text or the cell color in the table title?
There is already a rule for the background color in the stylesheet:
table.linklisttable th {
border-width: 1px 1px 1px 1px;
padding: 3px 3px 3px 3px;
background-color: #f4f5f3;
}
The last line changes the background color. To change the text color, add a line that says: color: #0f0; or whatever other color you want to use.
Yes..I mean change the color of the text in table title.
Just add the “color: #0f0” code or need other parameter? I want it white (#ffffff) because I set the background title table was black.
Yeah, just adding color: #fff; to the existing rule will do the trick. So it would look like this:
table.linklisttable th {
border-width: 1px 1px 1px 1px;
padding: 3px 3px 3px 3px;
background-color: #f4f5f3;
color: #fff;
}
Let me know if this works. If not, give me the URL of the page on your site and I can have a look. In some cases, CSS rules can not work as expected if the theme developer used special flags like !important on their code.