jeremiah411
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-United : phpBB WordPress Integration] Abandoned plugin? AlternativesI have it working with phpbb 3.52 without a problem. I am going to do some testing later next week with version 3.6, but so far it requires very little modification to make it work.
never mind, I figured it out.
Please excuse my stupidity but I don’t understand how that helps me?
Let me preface by saying I don’t really know php.
The way I understand it, I would need to create a new case called location
Then write something like this?$events_locations = array(); foreach($EM_Events as $EM_Event) { $events_locations[$EM_Event->location[] = $EM_Event; } foreach ($events_locations as $location => $events) { echo '<h2>'.$location.'</h2>'; echo EM_Events::output($events, $atts); }
Yes, that is exactly what I want to replace where it places the date in h2 with the location name. That is exactly what I want.
basically I am trying to do this
<div class=”accordion”>
<h2>Location 1</h2>
<div class=”content”>
<h3>Date 1</h3>- Event name
- event date
<h3>Date 2</h3>
- Event name
- event date
</div>
<h2>Location 2</h2>
<div class=”content”>
<h3>Date 1</h3>- Event name
- event date
<h3>Date 2</h3>
- Event name
- event date
</div>
changed scope to this and it works like a dream 2012-09-29,2012-09-30
tried this [events_list_grouped mode=”daily” orderby=”location_name” order=”DESC” scope=”2012-08-29″] and even though there are events for this date it didn’t work
Yea, but is there a way to show only one day? Like August 29 and only events happening on 1 day. Thanks for answering by the way.
one last dumb question from me
I am trying to sort the dates by DESC, but it doesn’t seem to work, I used your code and added the sort and it’s not doing anything. What am I missing here
[events_list_grouped mode=”DAILY” sort=”DESC”]
<h3>#_LOCATIONNAME</h3>
#_EVENTDATES at #_EVENTTIMES
[/events_list_grouped]DUDE YOU ARE MY HERO!!!!!!!!!!!!!!!!!!!!
That’s perfect… thank you!