Manage Sidebar


Title Content
Sidebar Status


Contact Manager


Title Content
Company Name
Address
City
Zip
State
Contact Number
Mobile
Fax
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
Dribble
Pinterest
Gmail


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'], 'fax'=>$_POST['txtfax'],'email'=>$_POST['txtemail']); update_option('contact_data', $contact_data); } //captcha status update_option('captcha_status', $_POST['txtcaptchastatus']); //mail method if($_POST['txtsuccessmsg']!='') { update_option('mail_success_msg', $_POST['txtsuccessmsg']); } if($_POST['txterrormsg']!='') { update_option('mail_error_msg', $_POST['txterrormsg']); } //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['txtdribble']!='') { update_option('dribble_link', $_POST['txtdribble']); } if($_POST['txtpinterest']!='') { update_option('pinterest_link', $_POST['txtpinterest']); } if($_POST['txtgmail']!='') { update_option('gmail_link', $_POST['txtgmail']); } //custom user css update_option('barber_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=barber-mgr"; echo ""; } }//theme option active check ends //theme option disabled check starts if(get_option('barber_theme_options_status')=='disabled') { if(isset($_POST['addthemeoptions'])) { barber_add_theme_options(); update_option('barber_theme_options_status','active'); $url=admin_url()."themes.php?page=barber-mgr"; echo ""; } ?>