Thou I need your assistants Please with Effects shop
-----
| Author | Message | |
|---|---|---|
|
caitsdad |
||
| Fri Jan 05, 2007 8:34 pm Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
didnt work for me either thoul
|
||
|
Thoul |
||
| Sat Jan 06, 2007 9:02 pm Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
Hm, I'll have to try to look at the XData code in a couple of days. Some of the effects code in usercp_register.php might need to be moved around to be compatible with it.
|
||
|
caitsdad |
||
| Sat Jan 06, 2007 9:04 pm Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
No problem no hurry here like i said i got a temp fix on mine
|
||
|
goofy26 |
||
| Sun Jan 07, 2007 10:25 am Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
yea i have fix mine 2
but i will wait a proper way to fix the problem |
||
|
caitsdad |
||
| Mon Jan 15, 2007 2:54 pm Post subject: | ||
|
has this been put on hold or something
|
||
|
Thoul |
||
| Mon Jan 15, 2007 6:08 pm Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
Sorry, some stuff came up and then I forgot about it. I'll try to get to it in the next couple of days.
|
||
|
Thoul |
||
| Tue Jan 16, 2007 7:49 pm Post subject: re: Thou I need your assistants Please with Effects shop | ||
|
Ok, I've looked at this a little bit, and I think this will be the best way to handle this. In effects.php, change the line:
Code: $template->assign_block_vars('effects_signature', array());
To (note that effects_signature is after switch_is_signature here): Code: $template->assign_block_vars('xdata.switch_is_signature.effects_signature', array());
Then in the template file, use: Code: <!-- BEGIN switch_is_signature -->
<!-- BEGIN effects_signature --> <tr> <td class="row1"><span class="gen">{L_SIGNATURE}:</span><br /><span class="gensmall">{L_SIGNATURE_EXPLAIN}<br /><br />{HTML_STATUS}<br />{BBCODE_STATUS}<br />{SMILIES_STATUS}</span></td> <td class="row2"> <textarea name="signature"style="width: 300px" rows="6" cols="30" class="post">{SIGNATURE}</textarea> </td> </tr> <!-- END effects_signature --> <!-- END switch_is_signature --> That should work, based on what I see of how Xdata is handling the signature. |
||