'; echo '

'.__("All in One Rich Snippets Dashboard","rich-snippets").'

'; echo '
'; echo '
'.__("Usage Instructions","rich-snippets").'

'.__("Notice that you have a new meta box below the field where you enter content for your post or page.","rich-snippets").'

'.__("Select type of your content.","rich-snippets").'

'.__("Fill in as much data as you can","rich-snippets").'

'.__("And publish! Isn't that simple?").'

'.__("Plugins FAQs","rich-snippets").'
  • '.__("How much time would it take to show up rich snippets for my posts?","rich-snippets").'
  • '.__("Most probably as soon as Google Crawls it.","rich-snippets").'

  • '.__("Where I can see preview of my search results?","rich-snippets").'
  • '.__("Here: http://www.google.com/webmasters/tools/richsnippets","rich-snippets").'

  • '.__("Do I have to fill in all the details?","rich-snippets").'
  • '.__("No. Though some fields are mandatory and required to by Google in order to display rich snippet.","rich-snippets").'

  • '.__("Can I edit CSS?","rich-snippets").'
  • '.__("Of course. CSS file is in the plugin directory which you can edit easily.","rich-snippets").'

'.__("Get in touch with us","rich-snippets").'
'.__("

For any support regarding our plugin, you can give a support request on the pulic forum provided by Wordpress.

","rich-snippets").' '.__("

Click the following button to access the Support Forum.

","rich-snippets").' '.__("

Support Forum

","rich-snippets").' '.__("

Optionally, you can mail us on :

contact@brainstormforce.com

").'
'.__("Configure Breadcrumbs Options","rich-snippets").'
'.wp_nonce_field("rdfa_breadcrumb_option").'
'.__("Prefix", "rich-snippets").'
'.__("Suffix", "rich-snippets").'
'.__("Title", "rich-snippets").'
'.__("Home Title", "rich-snippets").'
'.__("Breadcrumb Seperator", "rich-snippets").'
<?php 
	if(function_exists("bsf_breadcrumb"))
	{
		bsf_breadcrumb();
	}
?>
								
'; echo ''; echo ' '; } if(isset($_POST['submit'])) { check_admin_referer('rdfa_breadcrumb_option'); foreach(array('prefix','suffix','title','home_title','separator') as $option) { if(isset($_POST[$option])) { $args[$option] = $_POST[$option]; } } if(update_option('rdfa_options',$args)) { echo '

' . __('Success! Your changes were successfully saved!', 'rich-snippets') . '

'; } else { echo '

' . __('Sorry, But Your Changes Are Not Saved!', 'rich-snippets') . '

'; } $args = get_option('rdfa_options'); } ?>