hi,
I'm trying to do a client side script that eliminates dislike, apparently the shape is like this:
But it does not work. In fact, I can not initiate any change in the voting of posts ...
What's wrong here? 🙄
Is there an <!-- IF topic
statement that can be used to determine if the current page being viewed is a topic or not ?
Thanks
Seems I can use this which works. Essentially, if it's a topic then I want to use a specific font for the title. If it's not, use the default.
<!-- IF posts.length -->
<h2 id="title" class="PageHero-title">{title}</h2>
<!-- ENDIF posts.length -->
<!-- IF !posts.length -->
<h2 id="title" class="PageHero-title titlefont">{title}</h2>
<!-- ENDIF !posts.length -->
<-- IF template.topic -->
should work
@baris No, it doesn't. Seems it's not recognised.
EDIT - yes, it does - looks like @baris forgot the !
in the tag
<!-- IF template.topic -->
<h2 id="title" class="PageHero-title">{title}</h2>
<!-- ENDIF template.topic -->
<!-- IF !template.topic -->
<h2 id="title" class="PageHero-title titlefont">{title}</h2>
<!-- ENDIF !template.topic -->