Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#217 2008-10-31 03:18:00
- fbox
- Member
- From: Melbourne
- Registered: 2006-02-18
- Posts: 42
Re: [plugin] [ORPHAN] jmc_event_manager
Love this plugin every time I use it!
But does anyone know if there is an easy way of opening a jmc_event on its own page (from a link) other than passing the event_id via the URL?
Currently using the clumsy workaround:
<a href="/events/?eid=<txp:jmc_event_id />">details</a>
which passes to new page:
<txp:asy_wondertag><txp:jmc_events form="inc_event_details" future="1" past="1" event_id="<txp:php>$eid = $_GET['eid']; echo strip_tags($eid);</txp:php>" /></txp:asy_wondertag>
@jufemaiz: Are there any plans for individual pages in the next release? (unless I’ve missed it in what we’ve already got!)
Cheers,
- L.
Offline
#218 2008-11-01 02:14:41
Re: [plugin] [ORPHAN] jmc_event_manager
@fbox: Glad you love it! Part of the problem with what you’ve described is that it needs to fit into the htaccess file for clean uris. I think it is completely possible and will be trying to build it in. Most likely it will have a GET parameter with syntax:
jmc_event_id
jmc_event_category_id
jmc_venue_id
jmc_venue_category_id
If you have any other ideas hit me up – preferably at the lighthouse tracking page:
jufemaiz.lighthouseapp.com/projects/18041-txpjmc_event_manager/
BE + MEngSc = engineer with a side dish of frustrated designer/developer with a penchant for photography outside
Offline
#219 2009-01-31 04:31:00
- muthu22
- New Member
- Registered: 2009-01-31
- Posts: 1
Re: [plugin] [ORPHAN] jmc_event_manager
I really appreciate with your new version (0.3.1). Its really very nice to work. its a great deletion bugs. Both frond and back ends are very wonderful to work. thanks for your goal.
———————
Muthu
New Jobs
Offline
#220 2009-02-06 19:41:34
Re: [plugin] [ORPHAN] jmc_event_manager
I’m having trouble getting the venue information.
the code i’m calling is listed below.
called from a form the jmc_event generates output but the jmc_venue stuff does not.
http://www.ckcmotorsports.com/race-dates/
the venue information looks just fine in the admin and each event is linked to the proper venue, but the venue stuff doesn’t print.
<code>
<div>
<h3><txp:jmc_event_name /></h3>
<p><txp:jmc_event_time php_date=“F j, l” /> from <txp:jmc_event_time start=‘1’ php_date=“g:ia” /> – <txp:jmc_event_time start=“0” php_date=“g:ia” /><br />
<br />
<br />
Cost of event: <txp:jmc_event_price /><br />
Event Name <txp:jmc_event_name /><br />
Event ID <txp:jmc_event_id /><br />
Event Price <txp:jmc_event_price /><br />
Other Bands <txp:jmc_event_otherbands /><br />
Other Infor <txp:jmc_event_otherinfo /><br />
<br /><br />
Venue Name <txp:jmc_venue_name /><br />
Venue ID <txp:jmc_venue_id /><br />
Venue Address 1 <txp:jmc_venue_address1 /><br />
Venue Address 2 <txp:jmc_venue_address2 /><br />
Venue Suburb <txp:jmc_venue_suburb /><br />
Venue State <txp:jmc_venue_state /><br />
Venue Country <txp:jmc_venue_country /><br />
Venue Postcode <txp:jmc_venue_postcode /><br />
Venue Phone <txp:jmc_venue_phone /><br />
Venue URL <txp:jmc_venue_url /><br />
Venue Email <txp:jmc_venue_email /><br />
Venue Other Information <txp:jmc_venue_otherinfo />
<br /></p>
</div>
</code>
Offline