Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page

Quote Reply
Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page In reply to
Hi,

Not really played with editor stuff much, but I'm guessing it would be something like:

<%load_editor_details($Username)%>

..then a global, called load_editor_details, with the following:

Code:
sub {
my $user = $DB->table('Users')->select( { Username => $_[0] } )->fetchrow_hashref;
return $user;
}

You should then have access to the value of the Editors profile (from glinks_Users).

If that doesn't work, you may need to use this:

Code:
return { %$user };

..instead of:

Code:
return $user;

Hope that helps/works Smile

.

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Help: How to Display Editors Profile Info on Category Page VishalT 9286 Apr 8, 2007, 12:51 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8865 Apr 9, 2007, 3:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8916 Apr 9, 2007, 5:34 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8895 Apr 10, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8846 Apr 10, 2007, 8:08 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8914 Apr 10, 2007, 8:14 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8880 Apr 10, 2007, 8:30 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8905 Apr 12, 2007, 8:00 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8853 Apr 12, 2007, 11:10 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8874 Apr 13, 2007, 1:11 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8803 Apr 13, 2007, 1:36 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8811 Apr 14, 2007, 1:30 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8797 Apr 14, 2007, 1:58 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8790 Apr 14, 2007, 2:04 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8769 Apr 14, 2007, 4:46 PM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8732 Apr 15, 2007, 2:51 AM
Thread Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8765 Apr 15, 2007, 7:47 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
VishalT 8730 Apr 15, 2007, 10:09 AM
Thread Re: [SWDevil.Com] Help: How to Display Editors Profile Info on Category Page
Andy 8752 Apr 16, 2007, 12:07 AM
Post Re: [Andy] Help: How to Display Editors Profile Info on Category Page
VishalT 8752 Apr 17, 2007, 7:17 AM