Easy PHP Calendar - We really take care of your dates!


Go Back   Easy PHP Calendar > General Discussion > General Support

General Support Questions about using the Easy PHP Calendar. (Not installation or customizations)

Closed Thread
 
Thread Tools Search this Thread Display Modes

Plug-in filter for list mode
Old 03-17-2006, 09:41 PM   #1
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default Plug-in filter for list mode

Is the filter plug-in suppose to work in a list mode calendar? When I include it in my list calendar page and attempt filtering the list it takes me back to the TOC page. Weird.

Mike
 

Old 03-18-2006, 08:23 AM   #2
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

What's the URL to your installation?
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-18-2006, 08:42 AM   #3
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default

http://www.isked.com/index.php?optio...id=14&Itemid=2

Thanks-
 

Old 03-18-2006, 10:33 AM   #4
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

I'm at work at the moment upgrading some servers but I can confirm that there is an issue there...

You'll need to figure out exactly what is the content item for viewing the calendar in TOC mode and then set the (i think) $this_file so that it matches that.

I'll come back to you later.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-18-2006, 01:27 PM   #5
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

If you don't have any objections to giving me access to modify your site, I could fix those pages for you. I guess I can at least do that for a fellow amateur

You can send me the information by clicking the link in my signature.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-19-2006, 08:42 AM   #6
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

I see that you've only linked to other pages instead of integrating the calendar.

So on both pages, before the links and the filter, add this
PHP Code:
// This one for the TOC mode
$thisFile="index.php?option=com_content&task=view&id=12&Itemid=2" 
PHP Code:
// This one for the list mode
$thisFile="index.php?option=com_content&task=view&id=14&Itemid=2" 
Then for the links to choose one mode or the other, you'll do the oposite.
HTML Code:
<--! This is the link for the TOC page -->
<a href="index.php?option=com_content&task=view&id=14&Itemid=2">Table Format</a>
HTML Code:
<--! This is the link for the List page -->
<a href="index.php?option=com_content&task=view&id=12&Itemid=2">Calendar Format</a>
Technically, after this you should be alright, but I found a bug with the Category filter. I'm assuming Brian will release a new point version after it's fixed. By having your pages ready, you'll be able to just update and then it'll work.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-19-2006, 08:47 AM   #7
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default

I'll give that a try but what do you mean by integrating the calendar? Is ther another method for displaying the TOC on the frontpage of joomla?
 

Old 03-19-2006, 10:23 AM   #8
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

Normally, you'd want to integrate it by using php directly in the content item, but Joomla doesn't facilitate this. You have to install other modules so that the PHP is parsed.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-23-2006, 07:23 AM   #9
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default

Actually I do have php in a content item that is being parsed by a mambot (kl_1). It seems to be working except for the links. I'm almost there but ECal will be perfect when I can preset some popup fields and other things Brian is working on for the next release.

Thanks for your help.
 

Old 03-23-2006, 08:18 AM   #10
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default

Quote:
Originally Posted by ve9gra
I see that you've only linked to other pages instead of integrating the calendar.

So on both pages, before the links and the filter, add this
PHP Code:
// This one for the TOC mode
$thisFile="index.php?option=com_content&task=view&id=12&Itemid=2" 
PHP Code:
// This one for the list mode
$thisFile="index.php?option=com_content&task=view&id=14&Itemid=2" 
Then for the links to choose one mode or the other, you'll do the oposite.
HTML Code:
<--! This is the link for the TOC page -->
<a href="index.php?option=com_content&task=view&id=14&Itemid=2">Table Format</a>
HTML Code:
<--! This is the link for the List page -->
<a href="index.php?option=com_content&task=view&id=12&Itemid=2">Calendar Format</a>
Technically, after this you should be alright, but I found a bug with the Category filter. I'm assuming Brian will release a new point version after it's fixed. By having your pages ready, you'll be able to just update and then it'll work.

Do both of the php lines go in each file? And is the $thisFile variable replaced with the name of the file it is in including the extension?

Thanks-
 

Old 03-23-2006, 08:40 PM   #11
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

No, those are the same comments but customized for each page. So the one that says is for the TOC, only put it in the TOC page.

And no, do not modify the $thisFile as I've already set it to what it should be for it to work in your installation.

Let me know if it doesn't work so I can fix it for ya.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 03-24-2006, 07:38 AM   #12
MikeV
Calendar User
 
MikeV is offline
Join Date: Jun 2005
Posts: 33
Default

Seems wherever I place the $thisFile line it gets printed on the calendar. I think I'll need your kindly offered help on this one. Would you like an admin login to the Joomla site or FTP?
 

Old 03-24-2006, 09:18 PM   #13
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,965
Default

I think both will be required. Please send the information using the link in my signature.
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with List and Blog Mode Together gabe General Support 3 12-01-2005 10:14 PM
Any way to make list mode function as "headlines" JamesC Customizations (Themes / Templates) 11 10-08-2005 04:03 PM
Where is the "Advanced Filter screen" dan_cameron General Support 1 09-02-2005 06:33 PM
Cannot switch back to regular mode after clicking trial mode license Kevin Sours General Support 1 05-12-2005 03:24 PM



All times are GMT -4. The time now is 04:31 PM.


vBulletin skins developed by: eXtremepixels
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright 2009 NashTech, Inc.

| Home | Register | Today's Posts | Search | New Posts |