Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#277 2005-07-07 21:49:44
- fancytoy
- New Member
- Registered: 2004-08-11
- Posts: 4
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
hello. i’m not too great at using textpattern in the first place so sorry for this stupid problem but … i installed the plugin and when i try to put it with a template, the archive shows but the whole rest of the site does. i don’t really know what i’m doing …
Offline
#278 2005-07-13 21:15:07
- szac
- Member
- From: Detroit-ish
- Registered: 2004-09-18
- Posts: 50
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
How might I reverse the order of the posts? I can’t seem to get the sortdir to function.
Thanks in advance!!
bump. sorry. still curious.
Last edited by szac (2005-07-13 21:16:55)
Offline
#279 2005-07-15 05:21:24
- nardo
- Member
- From: tuvalahiti
- Registered: 2004-04-22
- Posts: 743
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
yep, would be very handy right now for a site I’m working on – a month-long festival with events grouped by day… but require days listed from the 1st to last of the month
Offline
#280 2005-07-15 12:29:32
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
This line sets the ordering of posts:
$orderby= ($timeframe == “FUTURE”) ? “ ORDER BY posted asc “ : “ ORDER BY posted desc “;
You can change it to this to order by date in ascending order:
$orderby= “ORDER BY posted asc “;
or this to go in descending order
$orderby= “ ORDER BY posted desc “;
Last edited by wilshire (2005-07-15 12:30:32)
Offline
#281 2005-07-17 23:13:34
- nardo
- Member
- From: tuvalahiti
- Registered: 2004-04-22
- Posts: 743
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
many thanks rob
Offline
#282 2005-07-18 01:30:44
- szac
- Member
- From: Detroit-ish
- Registered: 2004-09-18
- Posts: 50
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Thanks!
Offline
#283 2005-07-20 09:46:18
- roelof
- Member
- Registered: 2005-03-27
- Posts: 647
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
hello,
Im my menu i have a choise of “archief(archive)”.
When i click on it nothing happens.
On my page section i use
<code>
<txp:ob1_if_section section=“archivescat”> <!— archivescat section —>
<txp:output_form form=“archivescat_page” />
</tpx_ob1_if-section>
</code>
Section archivescat en the form article exist.
I use now SVN revision 535.
What’s going wrong here ??
Roelof
I did some digging myself and when i change the section archivescat to default it works and when i do archivescat to archive it doesn’t work.
Last edited by roelof (2005-07-20 11:59:58)
Offline
#284 2005-07-20 18:45:25
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Hi all,
I’m not very experienced with css or textpattern…but I’m enjoying it so far.
Question: I have the following function calls in my default page…and they work perfectly!
rss_suparchive_bycat showcatsonly=“1”
rss_suparchive_menu
…but I would like to remove the “disc” bullet.
I’ve tried putting the following line various places in the style sheet.
list-style-type: none;
but the most that happens is that the bullet will turn from a “disc” (solid) to a “circle”. If I change the font size in the style sheet, that works fine…just can’t get the bullets to behave.
Then I tried some in-line stuff and that seemed to act the same.
Any thoughts?
Much appreciated!
Nate
Last edited by ndp (2005-07-20 18:47:04)
Offline
#285 2005-07-20 20:17:09
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
Where’s the site where you’re having this problem?
You cooin’ with my bird?
Offline
#286 2005-07-20 21:00:58
- ndp
- Member
- Registered: 2005-07-20
- Posts: 12
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
http://www.natepaine.com
Last edited by ndp (2005-07-20 21:02:02)
Offline
#287 2005-07-20 21:56:35
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
nate, put this into your CSS:
#rssCatList li,
ul.rssMenu
{
list-style-type: none;
}
TXP Builders – finely-crafted code, design and txp
Offline
#288 2005-07-21 09:07:55
- roelof
- Member
- Registered: 2005-03-27
- Posts: 647
Re: [plugin] [ORPHAN] rss_suparchive - article archive list
My site’s url is : http://msk.knoal.nl
Offline