adoptables

Forum
Last Post
Threads / Messages

livingingc

Member
Member
Joined
Jan 22, 2009
Messages
36
Points
0
Age
34
Mysidian Dollar
0
For our local Ice Creme store, we thought it would be nice to get advertising done by having users become the advertisers, on their myspaces, blogs, and facebooks. Its not all the way done. I'm waiting to get the new release from Jonathon and fix it up to look the same. Tell me what you think.

http://weathervaneicecreme.com/petarena/
 
That is VERY cool. Very original idea using it for marketing. :)

I like the theme redesign too. :)

Best of luck. It would be really interesting if once you got to max level then you got a coupon for a free small ice creme or something like that where the user could print it out. :)

Very nice. :)
Brandon
 
Wow, I like the idea too. The pets are really cute. Good luck spreading the word. ;)
 
BMR777 said:
Perfect! I didnt think of doing that. How would I incorporate that in the coding?



That is VERY cool. Very original idea using it for marketing. :)

I like the theme redesign too. :)

Best of luck. It would be really interesting if once you got to max level then you got a coupon for a free small ice creme or something like that where the user could print it out. :)

Very nice. :)
Brandon
 
The easiest way would be to incorporate it into the myadoptables.php file so that when an adoptable of the user gets to max level the adoptable gives them a code or coupon. This way too only the owner sees the code.

In myadoptables.php find:

PHP:
if($neededclicks < 0){
$neededclicks = "0 (Max Level)";
}

//Begin our content output...
$article_content=$article_content."<p align='center'><b><u>".$name.":</u></b></p>
<p align='center'><img src='".$imageurl."' border='0'></p>
<b>Current level of ".$name.": ".$currentlevel."<br></b><b>Total clicks on ".$name.": ".$totalclicks."<br></b>
<b>Clicks needed until LevelUP ".$name.": ".$neededclicks."<br></b><br>
<a href='levelup.php?id=".$id."'>Click Here to LevelUP ".$name.".</a>  (You can do this once per day)<br>
<a href='manage.php?id=".$id."&action=bbcode'>Click Here to get BBCODEs for ".$name.".</a> <br>
<a href='manage.php?id=".$id."&action=delete'>Click Here to Delete (Kill) ".$name.".</a> <br>";

I would change to:

PHP:
if($neededclicks < 0){
$neededclicks = "0 (Max Level)";
$coupon = "Your Coupon Code Goes Here, or you can get fancy and use HTML to show an image";
}

//Begin our content output...
$article_content=$article_content."<p align='center'><b><u>".$name.":</u></b></p>
<p align='center'><img src='".$imageurl."' border='0'></p>
<b>Current level of ".$name.": ".$currentlevel."<br></b><b>Total clicks on ".$name.": ".$totalclicks."<br></b>
<b>Clicks needed until LevelUP ".$name.": ".$neededclicks."<br></b><br>
<a href='levelup.php?id=".$id."'>Click Here to LevelUP ".$name.".</a>  (You can do this once per day)<br>
<a href='manage.php?id=".$id."&action=bbcode'>Click Here to get BBCODEs for ".$name.".</a> <br>
<a href='manage.php?id=".$id."&action=delete'>Click Here to Delete (Kill) ".$name.".</a> <br>";

if($coupon != ""){
//If the coupon is not blank, show the coupon
$article_content = $article_content."Free Ice Cream Coupon: ".$coupon."<br>";
}

Basically the above code is very simple and will just output a coupon code to the user. Of course you can get real fancy and generate custom codes for each user or do lots of other fancy things as well, but this will be enough to get you started. :)

Brandon
 

Similar threads

Users who are viewing this thread

  • Forum Contains New Posts
  • Forum Contains No New Posts

Forum statistics

Threads
4,277
Messages
33,118
Members
1,602
Latest member
BerrieMilk
BETA

Latest Threads

Top