rejetto forum

About "hits"

evehq · 17 · 13659

0 Members and 1 Guest are viewing this topic.

Offline evehq

  • Occasional poster
  • *
    • Posts: 2
    • View Profile
Hello, is my first post here, i love this app but i want to temove that column "hits" ¿is posible? thanks.


Offline LeoNeeson

  • Tireless poster
  • ****
    • Posts: 842
  • Status: On hiatus (sporadically here)
    • View Profile
    • twitter.com/LeoNeeson
It's possible, you just have to edit the template.
(Sorry, I have little time to give you more help)
HFS in Spanish (HFS en Español) / How to compile HFS (Tutorial)
» Currently taking a break, until HFS v2.4 get his stable version.


Offline evehq

  • Occasional poster
  • *
    • Posts: 2
    • View Profile
somebody can help me please? i tried but i couldnt


Offline Mars

  • Operator
  • Tireless poster
  • *****
    • Posts: 2059
    • View Profile

Offline LeoNeeson

  • Tireless poster
  • ****
    • Posts: 842
  • Status: On hiatus (sporadically here)
    • View Profile
    • twitter.com/LeoNeeson
Instructions:
1) Go to HFS, Virtual File System
2) Right click on the Home/Root
3) Properties...
4) Diff template
5) Paste this text:

Code: [Select]
[+]
<script>
$('tr').each(function() {
    $(this).children('td:eq(3)').remove();
    $(this).children('th:eq(3)').remove();
});
</script>

6) Click on 'Apply' and 'OK'.
This is only valid for HFS v2.3m (default template)

Welcome to the forum... :)
Cheers,
Leo.-
« Last Edit: October 18, 2021, 03:26:25 PM by LeoNeeson »
HFS in Spanish (HFS en Español) / How to compile HFS (Tutorial)
» Currently taking a break, until HFS v2.4 get his stable version.


Offline tamy

  • Occasional poster
  • *
    • Posts: 1
  • Tech geek, dev, gamer
    • View Profile
Thanks, Leo!
Was seeking the same problem solution and your answer was a goldmine for me.


Offline pss0ft

  • Occasional poster
  • *
    • Posts: 8
    • View Profile
Hi Guys,

I just want to do the opposite and display the hits in the default template of HFS 2.4.0 R7. This is missing in the default template and it was present in version 2.3 default template of HFS.  Anyone who can help me with that? Browsing through the WIKI did not help me out.

What we could use is a more structual explanation of a template layout and I also wonder how up-to-date is the documentation regarding the version 2.4.0 of HFS?

Kind regards,
Henk
« Last Edit: January 09, 2022, 07:28:11 PM by pss0ft »


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
https://www.rejetto.com/wiki/index.php/HFS:_Template_symbols
what you are searching for is %item-dl-count%
you can decide to add it where you see it fit


Offline pss0ft

  • Occasional poster
  • *
    • Posts: 8
    • View Profile
Hello Rejetto,

Thank you for the quick reply. I am a novice in editting templates. HTML and javascript is not a problem, but I have no idea where to add %item-dl-count%. The part I am thinking about is in a screenshot attached. Somewhere in the neighbourhood of %list%, but that did not work.

Kind regards,
Henk
« Last Edit: January 10, 2022, 01:35:17 PM by pss0ft »


Offline pss0ft

  • Occasional poster
  • *
    • Posts: 8
    • View Profile
Hi Rejetto,

I found the right place. Now struggeling with adding an icon from Font Awsome. :-) HFS is running at ftp.ph5hp.nl and only when my main computer is running :-)

Kind regards,
Henk


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
for the font part there's a difficulty.
HFS 2 default template is using a reduced version of font-awesome, with only the icons it's using.
this is done through this generator https://fontello.com/

if you wan to go with it, you'll have to click the wrench and import this configuration file
https://raw.githubusercontent.com/rejetto/hfs2/master/fontello.json

it will then produce a new output that you will have to copy in the hfs template replacing the existing one.

You may consider using HFS 3, that's a build-in-progress but I would assist you.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
if you want to stick to HFS 2 there's a much easier solution anyway: you take the icons you need as single files, and you make sure they are accessible via HFS.
Then you just refer to their address in the html/css.
If you need to, you can hide them in the VFS.


Offline pss0ft

  • Occasional poster
  • *
    • Posts: 8
    • View Profile
Hi Rejetto,

I will look into HFS3... I like to experiment as I am a HamRadio Operator too :-) ... Thank you for your replies and that wonderfull program HFS.

Kind regards,
Henk - www.ph5hp.nl


Offline danny

  • Tireless poster
  • ****
    • Posts: 281
    • View Profile
...Now struggling with adding an icon from Font Awsome. :-) ...
Alternatively, you can use a unicode icon, which is most efficient anyway (because it already exists at the client's browser).  The 6-digit versions are usually in full color.  &#127909; 

In order from best to worst:
1. Unicode icons (best--no shipping charge)
2. Fonts (costs a little bandwidth to send them)
3. Base64 encoded icon (very colorful icon is too big, but 16-color icon is okay)
4. Icon files (worst and slowest, because each file makes a separate trip).

Instead of storing the template as an ANSI encoded file, you can use UTF-8, which is editable with Notepad++ open source editor; And, a UTF-8 can store emoji's so much easier, just copy and paste from https://emojipedia.org/   Microsoft Notepad won't do; so, you'd need this:  https://notepad-plus-plus.org/  (click the Encoding menu) and save your icons directly in the template. 😺
« Last Edit: January 13, 2022, 03:57:24 PM by danny »


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13510
    • View Profile
nice suggestion,  i will consider unicode icons as a fallback