Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#517 2007-01-19 17:46:53
- naoj77
- Member
- From: Barcelona, Catalunya
- Registered: 2007-01-19
- Posts: 15
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Hi everybody,
How can I syndicate future post with bit_rss plugin and rss_superarchive??? Is for syndicate and event calendar.
Thanks, and sorry for my bad english
Joan
Offline
#518 2007-01-25 16:01:31
- naiadray
- New Member
- Registered: 2005-03-30
- Posts: 9
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
sorry i am asking a newbie question… but i really wish someone could kindly give me a hint on this…
i’ve just installed textpattern 4.0.3 on my server and installed the plugin rss_suparchive and rss_posted
i haven’t modified any of the default page/section/form/style from textpattern installation
what i want to have is when i type http://www.mysite.com/blog/article/2007/01
it will direct me to a archive page which shows only articles in Jan 2007
i have no idea how to set this…..
anyone can kindly give me a hint or direction on this??
Offline
#519 2007-01-28 22:44:40
- dimfish
- Member
- Registered: 2006-06-01
- Posts: 72
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Does anyone know how I could use rss_suparchive to achieve:
a) a section sensitive list of categories
b) clicking a category reveals a list of articles posted with that category as a nested list within the list of categories
ie
Category
Category
Category
—-article
—-article
—-article
—-article
Category
Category
I currently have this (not yet styled properly) list using:
<txp:rss_suparchive_bycat section="resources" linktosection="resources" showcats=”1” showcatcount=”0” showcatsonly="1"/>
Thanks if you can help.
A.
Offline
#520 2007-01-30 14:22:35
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Apologies if this has been covered already, but is it possible to make suparchive return a combination of Live & Sticky articles?
I tried searchsticky="1"
and status="Live,Sticky"
so far with no success.
any help appreciated :)
Offline
#521 2007-02-22 10:03:20
- jilkovac
- New Member
- Registered: 2007-02-22
- Posts: 2
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Hello, I´m sorry, if someone have been already asking this, but is it possible to use this plug-in on normal article list (used tag <txp:article_custom ), or I have to do article new list by different way, perhaps only with tag <txp:article ?
Simly: I am total beginner in textpattern and in addition I am very simply English speaking :((
Please, help me! :)
Offline
#522 2007-02-22 11:09:48
- jilkovac
- New Member
- Registered: 2007-02-22
- Posts: 2
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Oh, I already comprehended it. I used this:
<txp:rss_suparchive section=”*” dateformat=”%B %Y” showcommentscount=“1” countprefix=” (” countsuffix=”) “ showsubdate=“1” class=“aa” addbreak=“1” limit=”“ />
But i have another question: Is it possible to add page numbers to this article list?
Offline
#523 2007-02-23 15:16:38
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Hello there,
I have a question about archive of articles. In my page I have added this
<code><txp:rss_suparchive_bycat section=“article,dimass-diary”
subdatesep=”»” addbreak=“1” limit=“15” /><txp:older>Older</txp:older> <txp:newer>Newer</txp:newer></code>
It displays list of 15 archive articles, but Older, Newer are not shown there :o(
I want to have a link to the next older 15 articles.
I think I should use form, but I dont know how can I do that. Please help!!
Thank you,
Dimas.
Offline
#524 2007-03-16 15:51:39
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
At www.example.com/chronology/2006 I’m trying to trick Txp into showing both:
- rss_suparchive results
<txp:rss_suparchive form="archive" section="work" dateformat="Y" showsubdate="1" subdateformat="F" class="archive" limit="1000" />
- and an article
<txp:article />
(where section=chronology and title=“2006”) – which is a summary of the year
It seems rss_suparchive usurps the article tag, whatever the order in the page template… because all articles from the chronology section are shown – not just the one that the URL would suggest. Without really understanding the mechanics of this plugin, I’m assuming that when rss_suparchive is active in the page, the 2006 in the URL isn’t actually the article id.
So I’m looking for a way to extract the 2006 from so that I could pass it as the id attribute of the article tag (which would have to be written as php). Something like
<txp:php>
if(!$_GET['id']){
echo "\t<txp:article id=\"".$_GET['id']."\" /> \r\r";
}</txp:php>
Am I making sense? If so what variable should I try to get from the URL?
thanks very much
Stu
Offline
#525 2007-03-19 12:48:02
- xochipilli
- New Member
- Registered: 2007-03-19
- Posts: 1
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Maybe a quick & dirty solution to make the “offset” parameter work before the next release?
Greets & thanks for the best archive plugin!
Michal
Last edited by xochipilli (2007-03-19 19:28:01)
Offline
#526 2007-03-21 01:28:54
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
I’m just trying to get a simple list of categories and the number of articles posted in each to display.
I’m using the tag <txp:rss_suparchive_bycat section="articles" showcatsonly=“1” />
to do so.
It works fine until I click on an actual article and then it displays nothing except an incomplete div tag which cause my page layout to get screwed up as the div tag never closes.
Also, in the menu output, the url is ?c=name, but I’d prefer clean urls /category/name Is that possible?
Offline
#527 2007-03-26 15:10:28
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
At www.example.com/chronology/2006 I’m trying to trick Txp into showing both:
- rss_suparchive results
- and an article
<txp:article />
(where section=chronology and title=“2006”) – which is a summary of the year
Incase anyone else finds it useful, I was shown this method of achieving the above:
<txp:php>
if(!$_GET['id']){
// this takes final value from URL (generated by rss_suaprchive) and uses it to also fetch the article of the same title - so you can have a year summary next to your archive listing
$parts = explode( '/', $GLOBALS['pretext']['request_uri'] );
// Call function which gets article by title
$rs = lookupByTitleSection($parts[2],$parts[1]);
$myid =
$rs[‘ID’];@
echo "\t<txp:article id=\"".$myid."\" /> \r\r";
}//end if
</txp:php>
Offline
#528 2007-04-03 19:56:14
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Sorry for this huge post…bear with me.
I could use some extra brain power.
I’m looking for a way to group articles by year>month>section>posted
Here’s what I’m doing:
In my page:
<txp:rss_suparchive section="!featured-business,!calendar" form="archive" />
Form contents:
<txp:if_different><h6><txp:posted format="%B %Y" gmt="1" /></h6></txp:if_different>
<txp:permlink><txp:title /></h2></txp:permlink>
<h3>By <txp:custom_field name="written_by" /></h3>
Outputs:
MONTH
Article Title
Author
—
Article Title
Author
MONTH
Article Title
Author
—
Article Title
Author
And so on and so on…
However, the articles are sorted by date posted.
I’m looking for a way to sort them by section.
I know there’s a sort by option, but “random” is the only other option.
It looks like this could be done with RSS_SUPARCHIVE_BYCAT
however there are very few articles on this site that have a category set.
I’m just using the category to set Feature articles.
Any ideas?
Thanks
—
Tom
Offline