[3.2][3.3][CDB] Fred The Bat (Cursor Follower)

My little contributions to the phpBB 3.2.x and 3.3.x world. Please read the note on Version Numbering to ensure you download the correct Extension version.
Administrator
Site Admin
Posts: 766
Joined: Tue Nov 18, 2014 11:30 am

Re: [3.2][3.3][CDB] Fred The Bat (Cursor Follower)

Post by Administrator »

Activate on specific date only:

By using the following code you can have the extension activate itself on a specific date.

OPEN

ext/hifikabin/fredthebat/styles/all/template/event/overall_header_head_append.html

AND

ext/hifikabin/fredthebat/styles/all/template/event/overall_header_body_before.html


FIND

Code: Select all

{% if S_INDEX %}

REPLACE WITH

Code: Select all

{% set today = 'now'|date('m/d') %}
{% set halloween = '10/31' %}
{% if today == halloween and S_INDEX %}
SAVE UPLOAD PURGE BOARD CACHE

Now you can activate the extension in the ACP but it will not become active until the specified date (April 1st if the default setting, to choose a different date edit

Code: Select all

{% set halloween = '10/31' %}
to the MM/DD you require