Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#13 2005-12-28 18:59:51
- sominty
- Member
- Registered: 2005-12-27
- Posts: 16
Re: [plugin] [ORPHAN] rss_author_info
Yeah, would it?
Offline
#14 2006-01-11 21:37:18
- chumbacca
- New Member
- Registered: 2004-08-25
- Posts: 3
Re: [plugin] [ORPHAN] rss_author_info
I second that. As things are developing in my site, this plugin would save my life.
Offline
Re: [plugin] [ORPHAN] rss_author_info
Ok folks, the plugin should now work with Textpattern 4.0.3
Offline
#16 2006-01-20 07:17:53
- Dawk
- Member
- Registered: 2005-02-22
- Posts: 74
Re: [plugin] [ORPHAN] rss_author_info
Can someone verify its working on 4.0.3? could just be me :)
Thanks for the update, this is just what I needed.
Offline
Re: [plugin] [ORPHAN] rss_author_info
Just installed. Workes great! Thank you so much.
One minor feature request: is it a lot of work to configure the Linklabel for Homepage?
Offline
Re: [plugin] [ORPHAN] rss_author_info
The-Exit: Just use the title attribute of the tag:
<code><txp:rss_author_info_url /></code><br/><br/>
Displays a link to the author’s website.
* title – used for the link text and title. defaults to ‘Website’.Last edited by wilshire (2006-01-23 17:52:22)
Offline
Re: [plugin] [ORPHAN] rss_author_info
Thanks a lot!
Offline
Re: [plugin] [ORPHAN] rss_author_info
Hi Wilshire,
Is there any way to wrap the Name of the author with a link to their website.
So it would appear like:
<a href=“http://www.authorssite.com”>Authors Name</a>
I know you can add a link title in to < txp:rss_author_info_url /> but I want it so the link title automatically uses the authors nick_name.
Really would help me out.
Cheers
Last edited by roan (2006-01-24 17:52:57)
Offline
Re: [plugin] [ORPHAN] rss_author_info
roan – find this in the plugin code:
<code> if(!isset($title)){ $title = “Website”; }</code>
and change it to
<code> if(!isset($title)){ $title = $rss_author_info_hash[$username][“nickname”]; }</code>
Last edited by wilshire (2006-01-28 04:29:03)
Offline
#22 2006-01-29 18:57:59
- Dawk
- Member
- Registered: 2005-02-22
- Posts: 74
Re: [plugin] [ORPHAN] rss_author_info
I tried twice & still can’t get this working?
Is there any step by step documentation in B-I-G L-E-T-T-E-R-S? lol
I think there are some txp tags getting parsed in the admin “help” & not displaying?
Thanks
Last edited by Dawk (2006-01-29 18:59:18)
Offline
Re: [plugin] [ORPHAN] rss_author_info
Rob,
Probably just need some setting straight. I’ve got this loaded locally and have done the following:
Created a form called rss_author_info which looks like this:
<code>
<txp:rss_author_info username=“xxxxxxx” nickname=“matthew” bio=“Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dapibus dignissim elit. Cras feugiat, quam vel vehicula tempor, ipsum arcu consequat neque, at rhoncus leo ante ut nisl. Pellentesque vitae eros.” url=“http://artiswork.org” imageid=“5” email=“matthew@artiswork.org” />
</code>
Then I added the following to my default article form:
<code>
<div>
<txp:rss_author_info_nickname /><br/>
<txp:rss_author_info_bio /><br/>
<txp:rss_author_info_url /><br/>
<txp:rss_author_info_image /><br/>
<txp:rss_author_info_email />
</div>
</code>
Then I added the following to the page where I want this to show up:
<code>
<txp:output_form form=“rss_author_info” />
</code>
The only output I get is the email link “artiswork” which sends an email to the email I have specified in the admin, but not the one I have set up in rss_author_info.
I assume I am doing something incorrectly. Hopefully you can point me in the right direction, or someone else here can.
Thanks,
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline