Hi guys, hope u can help out here, i am a noob when it comes to PHP.
Its a relative simple thing i want to achieve:
Instead of the text “click here to earn points” i want a image.
Would ordinary html work, i mean just replace the text with html image?
The text appears 3 times in the script
Any help would be greatly appreciated.
[php] /
if(strpos($content,’[RewardsWidget]’))
{
if ( is_user_logged_in() )
{
$score = get_user_score($current_user->ID);
$widget_content = ‘Your ‘.CREDITS_NAME.’: ‘.$score.’ |
<a href="#" ‘.get_option(‘onclick_code’,’’).’>Click here to earn points’;
}
else
{
$widget_content = ‘To start earning ‘.CREDITS_NAME.’ and trade them for rewards, you need to be registered.
Already have an account? Log in here.’;
}
}
/ [/php]