View Single Post
  #2  
Old 11-29-2015, 01:52 PM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 157,891
Abronsyth is on a distinguished road
Default

1. The icon is called a Favicon, and in order to change it you'll need to make your own (the dimensions are 16x16 pixels), and upload it to your site directory (main directory, not a subfolder). Once you've uploaded it rename it to favicon.ico
It won't change immediately, but in a little while it should.

2. I've noticed this as well but haven't looked into quite yet since I've been working on other things. I'm not sure how to call the setting put in for the cost itself (so far I've only managed to call the name of the currency), but you can manually change it like this:
Go into .../lang/lang_breeding.php and find the line that starts with $lang['money'], and replace it with this:
PHP Code:
$lang['money'] = "You currently have {$mysidia->user->getcash()} {$mysidia->settings->cost}, the cost of breeding is: 1000"
Then just change where it says 1000 to whatever the cost is. If there is no cost then you can simply delete the entire line.

3. Okay, now in the file ../lang/lang_trade.php find this line (around line 40):
PHP Code:
$lang['cash_offered'] = "The Mysidian dollar amount you wish to trade for this adoptable: "
Replace it with:
PHP Code:
$lang['cash_offered'] = "The {$mysidia->settings->cost} amount you wish to trade for this adoptable: "
4. Meta tags are added in the header.tpl file for your theme. Go into this file and under the first <head> tag add:
HTML Code:
<meta name="description" content="DESCRIPTION HERE">
<meta name="keywords" content="word1,word2,etc">
Just change where I indicated with the description and key words you want included.

5. You cannot change currency through the admin control panel, but fear not it is still possible, just a bit more work.
First go to your Host's control panel. Now find "phpMyAdmin," go to adopts_users, and find the user whose currency amount you'd like to change. Click "Edit" beside their username, and scroll down until you see "money" (it's the 2nd to last box), and change the value in the box that has their current amount of currency in it. Once you've changed it, press "go" and you're good to go :)

If you have any questions about any of that then feel free to ask!
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote