MyBB Community Forums

Full Version: Awards page "Request award"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
(2011-12-10, 11:54 PM)Paul H. Wrote: [ -> ]There is no template, the HTML is hardcoded into ./award.php.

Is there a way to add a request award button? Big Grin
Cheers Smile

~ David
Replace

Image</td></tr>
with
Image</td><td class='tcat'>Request Award</td></tr>

and

{$award[image]}'/></td>
with
{$award[image]}'/></td><td>REQUEST CODE HERE</td>
(2011-12-11, 12:03 AM)Paul H. Wrote: [ -> ]Replace

Image</td></tr>
with
Image</td><td class='tcat'>Request Award</td></tr>

and

{$award[image]}'/></td>
with
{$award[image]}'/></td><td>REQUEST CODE HERE</td>

Hiya Paul, just getting this: http://habfab.com/forum/awards.php

Cheers,

~ David
You didn't make the second edit correctly. The edit should be on line 59.
(2011-12-11, 12:21 AM)Paul H. Wrote: [ -> ]You didn't make the second edit correctly. The edit should be on line 59.

On line 59 I just have a {
Cheers,

~ David
The line of code you should be looking for is

$awardContent.="<tr class='trow$i'><td><a href='award.php?act=view&aid={$award[id]}' title='{$award['name']}'>{$award[name]}</a></td><td><img src='images/awards/{$award[image]}'/></td></tr>";
Ah @Paul H. I think it's sorted but how can i add an image like a "request button?"
Cheers,

~ David
Add this link where I had REQUEST CODE HERE

<form><input type="button" value="Request Award" onClick="window.location='{$mybb->settings['boardurl']}/private.php?action=send&subject=I%20would%20like%20to%20request%20the%20{$award['name']}%20award'" /></form>
(2011-12-11, 12:35 AM)Paul H. Wrote: [ -> ]Add this link where I had REQUEST CODE HERE

<form><input type="button" value="Request Award" onClick="window.location='{$mybb->settings['boardurl']}/private.php?action=send&subject=I%20would%20like%20to%20request%20the%20{$award['name']}%20award'" /></form>

Just tried this and i'm getting: Parse error: syntax error, unexpected T_STRING in /home/habfabco/public_html/forum/awards.php on line 55

Cheers,

~ David
Oops, it should be this:

<form><input type=\"button\" value=\"Request Award\" onClick=\"window.location='{$mybb->settings['boardurl']}/private.php?action=send&subject=I%20would%20like%20to%20request%20the%20{$award['name']}%20award'\" /></form>
Pages: 1 2 3 4