Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#289 2005-07-21 15:29:30
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Thanks jakob – worked great!
Offline
#290 2005-07-26 12:56:07
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
I am trying to use the suparchive to list out the categories as many people have asked before since i was getting the http://www.xyz.com/?c=cat probelm with it not staying within the section but I cannot get the plugin to list anything out I am using 1.0rc1 since it was or is stable and the 0.8 version of the plugin.
I am calling the it like this (Normal with the known problem) <pre> <code><h3>Commercial</h3>
<p> A list of some of our past Commmercial projects.</p>
<txp:category_list type=“Image” parent=“Commercial” />
<p />
<p />
<h3>Educational</h3>
<p> A list of some of our past Educational projects.</p>
<txp:category_list type=“Image” parent=“Educational” label=”“ />
<p />
<p />
<h3>Residential</h3>
<p> A list of some of our past Residential projects.</p>
<txp:category_list type=“Image” parent=“Residential” label=”“ />
</code>
</pre>
Suparchive way
<pre>
<code>
<txp:rss_suparchive section=“gallery” categories=“Commercial” showcat=“1” />
<txp:rss_suparchive section=“gallery” categories=“Residential” showcat=“1” />
<txp:rss_suparchive section=“gallery” categories=“Educational” showcat=“1” />
</code>
</pre>
Am I using the wrong syntax or is the plugin wrong ?
Offline
#291 2005-07-26 14:51:13
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Silent7,
As a start, I think that your syntax should specify “category” rather than “categories” and “showcats” rather than “showcat”. You can click on “help” in your admin/plugins page to see the correct syntax.
Nate
Offline
#292 2005-07-26 20:05:19
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Another question:
I just noticed that my instance of rss_suparchive_menu is not working. When I click on a month, it seems to complete some sort of filter, but all of the articles continue to display.
My code is [txp:rss_suparchive_menu section=“article,photocollection,location” limit=“72” /]
Example web site at www.natepaine.com.
Any experience with this?
Thanks,
Nate
Last edited by ndp (2005-07-26 20:05:46)
Offline
#293 2005-07-26 23:49:03
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
I’m not sure it will work the way you think in the sidebar like that. You would normally give the archive it’s own page and section and link to it from the menu by adding the “linktosection” attribute to your tag. The chosen month’s articles would then be listed on the new page which I think would need to contain the rss_suparchive tag.
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline
#294 2005-07-28 03:03:44
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Thanks Stuart – I see what you’re talking about…and I’ve changed how I’m using it.
Nate
Offline
#295 2005-08-10 13:16:30
- infusion
- Member
- Registered: 2005-08-04
- Posts: 19
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Hi, I was wondering how to manipulate the rss_suparchive_bycat plugin such that the category name is not a link by itself. Currently it’s working well only that I don’t want the category name to be linked to any page (coz it doesn’t work for me). It’s something like what I found here
Any help is greatly appreciated
Offline
#296 2005-08-10 13:43:12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
He probably changed the plugin code cause its not possible right now any other way. Just look for these lines in the plugin and remove the HTML that created the link on the category.
<code>if ($showcatsonly && !$form) {
$out[] = ($showcats) ? ‘<li><a href=”’.hu.$linktosection.’?c=’.urlencode($catname).’” title=“View all articles filed under ‘.$catname.’”>’.$catname.’</a>’.$catcnt.’</li>’.n : ‘’;
} else {
$out[] = ($showcats) ? ‘<div id=“c_’.stripSpace($catname).’” class=“rssCcat”><a href=”’.hu.$linktosection.’?c=’.urlencode($catname).’” title=“View all articles filed under ‘.$catname.’”>’.$catname.’</a>’.$catcnt.’</div>’.n : ‘’;
}</code>
Last edited by wilshire (2005-08-10 13:44:20)
Offline
#297 2005-08-10 14:18:46
- infusion
- Member
- Registered: 2005-08-04
- Posts: 19
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
thanks wilshire…. greatly appreciated
Offline
#298 2005-08-11 15:17:48
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Quick request: I am using rss_suparchive_bycat for related links it is using useartcat2 and I have a headerlabel the problem is that the headerlabel still outputs even if there are no matching related links.
I would like it if there were no related links then not output anything. Is this possible or can someone show me how to do it?
Refresh Dallas and other Refreshing Cities.
Offline
#299 2005-08-12 13:34:28
- jpdupont
- Member
- Registered: 2004-10-01
- Posts: 752
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
wilshire,
at this time, any work around to use cat title (not cat name) ?
Offline
#300 2005-08-12 13:52:52
- aesop1
- Archived Plugin Author
- Registered: 2004-09-19
- Posts: 142
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
This would be useful to me as well—using the category title.
Offline