Log in

View Full Version : Edit without Conditional Formatting?


DieselTruck
02-15-2008, 05:48 PM
How can I edit this code with out conditional formating?

<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>

Lynne
02-15-2008, 06:29 PM
I'm not sure what you mean by "without conditional formating". What is the problem you are trying to get rid of? You could get rid of the if condition around that, I think, and it would still work depending on where it is located.

DieselTruck
02-15-2008, 06:38 PM
Installing this for the iTrader mod...
Straight from the Instructions:

Most likely you will want to add the score info to the postbit and/or postbit_legacy template(s), MEMBERINFO, and memberlist_resultsbit template. Actual placement and style is entirely up to you, however here's a sample to get you started. Note that the MEMBERINFO & memberlist_resultsbit templates won't need the conditional around the text since you can't view a "guest" in those cases.

<if condition="$post['userid']"><div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div></if>

Im lost as the last line on removeing it so it will work in the templates..:confused:

Lynne
02-15-2008, 06:51 PM
Removing the conditional = removing the "if" conditional statement. So:

<div>iTrader: (<b><a href="itrader.php?$session[sessionurl]u=$post[userid]">$post[itrader_total]</a></b>)</div>

DieselTruck
02-15-2008, 07:03 PM
Still the same problem

Does the memberinfo template change the profile for all users? Just showing up on the one Administrator still..

--------------- Added 1203110768 at 1203110768 ---------------

Figured it out!

Apperantley I had it placed in the wrong section. Thanks for all your help!