Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#421 2007-04-20 12:14:00

wilshire
Plugin Author
From: Akron, Ohio
Registered: 2004-08-27
Posts: 656
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

fuls wrote:

Does anyone know why article count number doesn’t show up in the Article category (admin) list (TXP 4.0.4.)?

Yes, the counts shown on the Categories tab in the admin interface are based on the standard TXP category1 and category2 fields, not the extra table used by this plugin.

Offline

#422 2007-04-24 13:34:34

rohner
New Member
Registered: 2006-11-12
Posts: 7

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

I just replaced my version 2 rss_unlimited_categories plugin with the most recent that’s on the plugin site and I can no longer see the article categories list in the admin. I have reinstalled twice, but the same thing happens every time. Is there a fix for this?

Thanks!

Offline

#423 2007-04-24 15:48:08

wilshire
Plugin Author
From: Akron, Ohio
Registered: 2004-08-27
Posts: 656
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

What version of TXP are you running?

Offline

#424 2007-04-24 23:54:47

rohner
New Member
Registered: 2006-11-12
Posts: 7

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

4.0.3 – But I am reluctant to upgrade because everything (all other plugins, etc.) works just fine in this version. Is there something I can change in the Textpattern files to make this work on 4.0.3?

Offline

#425 2007-04-25 02:32:40

wilshire
Plugin Author
From: Akron, Ohio
Registered: 2004-08-27
Posts: 656
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Yes, that has been answered several times.

Offline

#426 2007-04-29 21:08:32

Haarball
New Member
Registered: 2007-04-29
Posts: 1

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Hey, I’m new to Textpattern and am in process of plug-in-ifying my site to make it as flexible as I need it to be. Stumbled into a bit of a problem here, though. I installed the plug-in, but the categories doesn’t seem to appear in the articles. I am supposed to replace the category1/category2 tags with rss_unlimited_categories_filedunder, am I not?

Sorry if this has been answered before, but 43 pages is just a wee bit too many to bother to browse through.

Offline

#427 2007-05-08 07:03:11

plusonetwo
Member
From: Seattle, WA
Registered: 2006-02-23
Posts: 18
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Hello everyone,

I’ve read through about 27 of the pages of this thread and noted that a lot of people have trouble getting the rss_unlimited_categories_article_list function to work. I’m one of those.

I need some clarification.

Do I need to run the SQL statements mentioned in the plugin help?

I’m using /id/title for the link mode. Is that OK?

What do I need to put in the article form?

What do I need to put on the page template I’ve made to display the categories list?

Lastly, when I activate the plugin, I’m only able to view the front page of my site and section directory pages but not individual articles.

I’ve got 4.04 and v0.7.4 of the plugin.

Thanks!

- Michael

Offline

#428 2007-05-31 20:43:49

ABDC
Member
From: the Netherlands
Registered: 2006-08-14
Posts: 17
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Thanks for a wonderful plugin; working like a charm! It has the most usable front-end amongst the multicat plugins; greatly appreciated!

But ofcourse i want to do something different than your plugin allows and I hope you might be able to help me do it… Sorry if this is addressed anywhere in the 44 pages of this thread. Just say so and i’ll go dig. I directed my attention to other plugins this evening to find a solution to my problem, but unfortunately didn’t find it.

I’m using the categories list as navigation for my upcoming portfolio site; is it possible to highlight the current category in the categorylist? Right now it just spews out a list, so exisiting options for this problem, like glx_hl_current, cannot be used.

An active_class tag like the original txp:category_list has would be nice, but alas is not provided! Anyone know any other solutions?

Thank you,
regards,

- Andre Brocatus

Offline

#429 2007-06-14 22:24:17

dbulli
Member
Registered: 2004-11-22
Posts: 195
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Just a suggestion … if you don’t want to search count why not modify around line 182: to this … don’t bother do the extra query … i have 747 articles and these queries add up to about 7 seconds …

.
$path = hu.$linktosection."/".strtolower($b['name']);
if($showcount)
{
	$aq= "SELECT *, unix_timestamp(Posted) as uPosted FROM ".PFX."textpattern as t LEFT JOIN ".PFX."textpattern_category as c ON t.ID = c.article_id WHERE ".$sections." c.category_id = '".$b['id']."' and t.Status = 4 ".$time." ORDER BY t.title";
	$rsa = getRows($aq);
	if ($rsa) {
		$path = hu.$linktosection."/".strtolower($b['name']);
		$count = ($showcount) ? " (".count($rsa).") " : "";
		$row[]=($countlinked) ?
			tag(htmlspecialchars($b['title'].$count),'a',' href="'.$path.'" title="'.htmlspecialchars($b['title']).'"') :
			tag(htmlspecialchars($b['title']),'a',' href="' . $path . '" title="' . htmlspecialchars($b['title']) . '"') . $count;
	}
}
else {
	$row[]= tag(htmlspecialchars($b['title']),'a',' href="' . $path . '" title="' . htmlspecialchars($b['title']) . '"');
}

nuff-respec ::: dannyb

Offline

#430 2007-06-18 07:55:41

ABDC
Member
From: the Netherlands
Registered: 2006-08-14
Posts: 17
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Hi dbulli; I cannot tell what this code is supposed to do (I don’t know PHP that well); so if you replied to my message please elaborate on what the above code should accomplish? I’m afraid otherwise your effort was wasted. Thanks!

Offline

#431 2007-06-18 13:36:05

dbulli
Member
Registered: 2004-11-22
Posts: 195
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

Sorry ABDC … was meant for mr. sable himself …


nuff-respec ::: dannyb

Offline

#432 2007-06-18 13:37:40

ABDC
Member
From: the Netherlands
Registered: 2006-08-14
Posts: 17
Website

Re: [plugin] [ORPHAN] rss_unlimited_categories - Unltd. Article Categories

too bad ;-)

Offline

Board footer

Powered by FluxBB