Manage Sidebar

Title Content
Sidebar Status


Contact Manager

Title Content
Company Name
Address
City
Zip
State
Contact Number
Mobile
Email


Manage Captcha


Title Content
Captcha Status


Manage Mail Messages

Title Content
Success Message
Error Message

Manage Social Media Links

Title Content
Twitter
Facebook
Youtube
Pinterest
Dribbble


Custom CSS

You can add your own custom css frome here.




Manage Maps

Enter Location:

How to use

  1. First enter the location you want to search into the input box (E.g. 15 willson street oakliegh)
  2. After entering the location click on the search button
  3. Now the address would be refected on the map
  4. Click on the update button to save the map
Latitude:
Longitude:
Map Name:
$_POST['txtcompany'], 'address'=>$_POST['txtaddress'], 'city'=>$_POST['txtcity'], 'zip'=>$_POST['txtzip'], 'state'=>$_POST['txtstate'], 'contact_number'=>$_POST['txtphone'], 'mobile'=>$_POST['txtmobile'], 'email'=>$_POST['txtemail'] ); update_option('contact_data', $contact_data); } //mail message if($_POST['txtsuccessmsg']!='') { update_option('mail_success_msg', $_POST['txtsuccessmsg']); } if($_POST['txterrormsg']!='') { update_option('mail_error_msg', $_POST['txterrormsg']); } //captcha status update_option('captcha_status', $_POST['txtcaptchastatus']); //social media links if($_POST['txttwitter']!='') { update_option('twitter_link', $_POST['txttwitter']); } if($_POST['txtfacebook']!='') { update_option('facebook_link', $_POST['txtfacebook']); } if($_POST['txtyoutube']!='') { update_option('youtube_link', $_POST['txtyoutube']); } if($_POST['txtpinterest']!='') { update_option('pinterest_link', $_POST['txtpinterest']); } if($_POST['txtdribbble']!='') { update_option('dribble_link', $_POST['txtdribbble']); } //custom user css update_option('camille_custom_user_css', $_POST['txtcustomcss']); //map if($_POST['txtlat']!='' && $_POST['txtlng']!='' && $_POST['txtmapname']!=''){ update_option('latitude', $_POST['txtlat']); update_option('longitude', $_POST['txtlng']); update_option('map_name', $_POST['txtmapname']); } $url=admin_url()."themes.php?page=camille-mgr"; echo ""; } }//theme option active check ends //theme option disabled check starts if(get_option('camille_theme_options_status')=='disabled') { if(isset($_POST['addthemeoptions'])) { camille_add_theme_options(); update_option('camille_theme_options_status','active'); $url=admin_url()."themes.php?page=camille-mgr"; echo ""; } ?>