Backspace parameter or something similar? 
Posted: 31 March 2008 06:39 PM   [ Ignore ]
Newbie
Rank
Total Posts:  20
Joined  2008-03-31

I noticed that the backspace parameter does not work for the user authors tag. Is there something similar or that I am missing?

By {exp:user:authors entry_id="{embed:entry_id}" dynamic="off" backspace="7"}
{encode
="{email}" title="{screen_name}"} &
{/exp:user:authors}

Thanks!

 Signature 

Mike Dupre
TDC Design | Richmond VA

Profile
 
 
Posted: 01 April 2008 08:20 AM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3343
Joined  2006-10-18

Mike,

User Authors functionality runs off of alot of the same functionality as the User Module: Users loop.
The feature is currently not available, although I definately agree it should be.

I’ll put this feature request in queue to be added soon smile

Thank you for your patience

 Signature 
Profile
 
 
Posted: 01 April 2008 09:32 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  20
Joined  2008-03-31

Thanks Pie Man. I’ll see if I can come up with another solution and post here if I do.

 Signature 

Mike Dupre
TDC Design | Richmond VA

Profile
 
 
Posted: 01 April 2008 10:50 AM   [ Ignore ]   [ # 3 ]
Newbie
Rank
Total Posts:  20
Joined  2008-03-31

Here is the solution that I am using until the backspace parameter is added to the User Module:

By
<?php
$entry_authors
=
"{exp:user:authors entry_id="{embed:entry_id}" dynamic="off"}
{encode=\"
{email}\" title=\"{screen_name}\"} &amp;
{/exp:user:authors}"
;

$entry_authors = substr($entry_authors, 0, (strlen($entry_authors)-7));

echo
$entry_authors;
?>

 Signature 

Mike Dupre
TDC Design | Richmond VA

Profile
 
 
Posted: 01 April 2008 10:54 AM   [ Ignore ]   [ # 4 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  3343
Joined  2006-10-18

Thank you smile

 Signature 
Profile