Registered days conditional

Status
This content is read-only, or is not open for further replies.

Finexes

Guest
offline
Hi there,

in the template of a page node, I'm using the following conditional to check, if a user is registered for less than 3 days:

HTML:

Code:
<xf:if is="{{ number(($xf.time - $xf.visitor.register_date) / 86400) }} <= 3">
    // registered for less than 3 days   
<xf:else />
    // registered for 3 days or more
<xf:if>

This works perfectly fine, except for a small number of users and I have no idea why. No matter how long they are registered, the conditional returns, that they are...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom