[8WR] XenAtendo (Events)

[8WR] XenAtendo (Events) 1.5.0b

No permission to download
but how do I change this default image?
default image can remove...

change template wf_EventsUpcoming

HTML:
<xen:if is="{$option.events}">
    <xen:require css="EWRatendo.css" />
    <xen:require css="wf_upcoming_events.css" />
    <xen:if is="{$option.showStream}"><xen:require js="js/8wayrun/EWRatendo_ajax.js" /></xen:if>
 
    <div class="section eventList" id="eventsUpcoming">
            <ul id="wf_upcoming">
                <xen:foreach loop="$option.events" value="$event">
                    <xen:include template="EWRatendo_Bit2" />
                </xen:foreach>
            </ul>
    </div>
</xen:if>

in EWRatendo.css add string
Code:
.eventList li .eventInfo2 { margin-left: 4px; padding: 4px; }

create new template EWRatendo_Bit2

HTML:
<li data-service="{$event.service_slug}" data-serviceval="{$event.service_value}" data-serviceval2="{$event.service_value2}">
 
        <xen:if is="{$option.showStream}">
            <div class="eventInfo2">
                <div><a href="{xen:link 'events', $event}"><b>{$event.event_title}</b></a></div>
 
                <div class="eventText">
                    <div class="eventTime">
                        <xen:if is="{$event.event_247}">
                            <b>@ {xen:phrase event_247_hint}</b>
                        <xen:else />
                            <b>@ {$event.formatted_strshort}</b>
                            <span class="muted">({$event.formatted_timezone})</span>
                        </xen:if>
                    </div>
                </div>
            </div>
        <xen:else />
            <div class="eventInfo2">
                <xen:if is="!{$option.hideVenue}"><div class="eventDate"><i>{$event.event_venue}</i></div></xen:if>
 
                <div class="eventName"><a href="{xen:link 'events', $event}"><b>{$event.event_title}</b></a></div>
 
                <div class="eventText">
                    <xen:if is="{$event.event_address}">
                        <i>{$event.event_address}, {$event.event_citystate} {$event.event_zipcode}</i><br />
                    <xen:else/>
                        <i>{$event.event_venue}</i><br />
                    </xen:if>
                    <div class="eventTime">
                        <b><xen:if is="{$option.hideVenue}">@ {$event.formatted_strshort}<xen:else />{$event.formatted_strtime}</xen:if></b>
                        <span class="muted">({$event.formatted_timezone})</span>
                    </div>
                </div>
            </div>
        </xen:if>
 
</li>
 
default image can remove...

change template wf_EventsUpcoming

HTML:
<xen:if is="{$option.events}">
    <xen:require css="EWRatendo.css" />
    <xen:require css="wf_upcoming_events.css" />
    <xen:if is="{$option.showStream}"><xen:require js="js/8wayrun/EWRatendo_ajax.js" /></xen:if>
 
    <div class="section eventList" id="eventsUpcoming">
            <ul id="wf_upcoming">
                <xen:foreach loop="$option.events" value="$event">
                    <xen:include template="EWRatendo_Bit2" />
                </xen:foreach>
            </ul>
    </div>
</xen:if>

in EWRatendo.css add string
Code:
.eventList li .eventInfo2 { margin-left: 4px; padding: 4px; }

create new template EWRatendo_Bit2

HTML:
<li data-service="{$event.service_slug}" data-serviceval="{$event.service_value}" data-serviceval2="{$event.service_value2}">
 
        <xen:if is="{$option.showStream}">
            <div class="eventInfo2">
                <div><a href="{xen:link 'events', $event}"><b>{$event.event_title}</b></a></div>
 
                <div class="eventText">
                    <div class="eventTime">
                        <xen:if is="{$event.event_247}">
                            <b>@ {xen:phrase event_247_hint}</b>
                        <xen:else />
                            <b>@ {$event.formatted_strshort}</b>
                            <span class="muted">({$event.formatted_timezone})</span>
                        </xen:if>
                    </div>
                </div>
            </div>
        <xen:else />
            <div class="eventInfo2">
                <xen:if is="!{$option.hideVenue}"><div class="eventDate"><i>{$event.event_venue}</i></div></xen:if>
 
                <div class="eventName"><a href="{xen:link 'events', $event}"><b>{$event.event_title}</b></a></div>
 
                <div class="eventText">
                    <xen:if is="{$event.event_address}">
                        <i>{$event.event_address}, {$event.event_citystate} {$event.event_zipcode}</i><br />
                    <xen:else/>
                        <i>{$event.event_venue}</i><br />
                    </xen:if>
                    <div class="eventTime">
                        <b><xen:if is="{$option.hideVenue}">@ {$event.formatted_strshort}<xen:else />{$event.formatted_strtime}</xen:if></b>
                        <span class="muted">({$event.formatted_timezone})</span>
                    </div>
                </div>
            </div>
        </xen:if>
 
</li>
A better way would be to show the avatar of the event's creator. Do you know how to do that?
 
anyone knows how to show the smaller version of the avatar to the left of the events like the avatar shows for people you follow when they are online.
Thanks
 
I'm pretty sure it's the s avatar size then shrunk down to 32x32 via css.

HTML:
.sidebar .avatarList .avatar img {
width: 32px;
height: 32px;
}
 
A better way would be to show the avatar of the event's creator. Do you know how to do that?
possibly
Code:
<span class="img s" style="background-image: url('{xen:helper avatar, $event, s}');"></span>
or full version
Code:
<a href="{xen:link 'events', $event}" class="eventIcon avatar Av1s NoOverlay">
            <xen:if is="{$event.event_thumb}">
                <span class="img s" style="background-image: url('{$event.event_thumb}');"></span>
            <xen:else />
                <span class="img s" style="background-image: url('{xen:helper avatar, $event, s}');"></span>
            </xen:if>
        </a>

p.s. see original template EWRatendo_Bit
 
possibly
Code:
<span class="img s" style="background-image: url('{xen:helper avatar, $event, s}');"></span>
or full version
Code:
<a href="{xen:link 'events', $event}" class="eventIcon avatar Av1s NoOverlay">
            <xen:if is="{$event.event_thumb}">
                <span class="img s" style="background-image: url('{$event.event_thumb}');"></span>
            <xen:else />
                <span class="img s" style="background-image: url('{xen:helper avatar, $event, s}');"></span>
            </xen:if>
        </a>

p.s. see original template EWRatendo_Bit
That's what the WERatendo_Bit does but if someone creates an event WITHOUT a thread, it won't show his avatar, but show the default avatar.
 
Version 1.4.6 CHANGELOG

• Fixed an issue where events that wrapped around the end of the month/week/day would appear multiple times, or possibly on days when they were not occurring.

Hey guys :)
Possible occurrence bug in V 1.4.6
This event wrap fix doesn't seem to work correctly.
Upon checking: http://8wayrun.com/events/monthly
See the blank box for September 2nd at the end of August's page. There are events present for September 2nd that don't wrap back to August.
 
I wish to use XenPorta "ewrporta_custom_side" template for the side bar on 'upcoming' events page... but i have no idea how this can be done anyone have any suggestions
 
Hello, I am trying to find where 'Venue' is in the phrases so I can change it's display text to be 'IP Address', but I can't find it. I have gone into AdminCP>Phrases> and filtered the list on 'EWRatendo', but still can't find the specific one to change.

EDIT: Found it by searching phrases.....durgh! :)
 
Receiving this error:

Fatal error: Access level to Waindigo_SelfDelete_ControllerPublic_Abstract::_preDispatch() must be public (as in class EWRatendo_ControllerPublic_Events) in/home/jetcareers/public_html/forums/library/Waindigo/SelfDelete/ControllerPublic/Abstract.php on line 4
 
I have an issue that I clearly have not thought thoroughly thought out.

I want all registered users to be able to create events that will be posted in the event forum, but I do not want users to be able to create new threads in the even forum (except by creating an event).

Currently my users are just posting threads in the event forum which then never gets added to the calendar.

What permission settings do I need to change so user created events get added to the event forum (which they already do) but users can't create additional threads in that forum?
 
How can I disable (or at least move) the tab for this? I looked around in both the regular Xenforo navigation template and in the EWRatendo_Navtabs template and had no luck.
 
How can I disable (or at least move) the tab for this? I looked around in both the regular Xenforo navigation template and in the EWRatendo_Navtabs template and had no luck.
I too need to remove the navigation node that this add-on creates. Can someone tell me how to do that?
 
this is getting irritating now... i've offered money for help and addons and no one seems interested, my website is sat waiting and i cant progress - i've even tried understanding hooks etc myself and its just not happening :(
 
Back
Top Bottom