AdPlugg Plugin Help
Need help using the adplugg plugin? Use the tabs to the left to find
instructions for installation, use and troubleshooting.
';
$installation_content = '
Installation/Configuration
The AdPlugg WordPress Ad Plugin makes it super easy to put ads on your
WordPress Site.
- Install the plugin.
- Activate the plugin.
- Create an account at adplugg.com and add at least one ad.
- Get your AdPlugg Access Code and add it to the Access Code field on this page.
- Go to the Widgets configuration page and drag the AdPlugg Ad Widget into
a Widget Area.
- Your ad(s) should now be viewable from your blog.
Additional Options
Advanced users can use the following options to customize what ads are served.
-
Optionally add a Zone machine name into the widget to tie the
widget to a Zone. Zones can be set up from your account
at adplugg.com. Zones make
it so that you can load different ads in different areas of the
page.
';
$use_content = '
Using AdPlugg
Once you have AdPlugg set up and working, most things that can be done
from adplugg.com. This includes:
- Creating, modifying and deleting ads
- Activating and deactivating ads
- Scheduling ads
- Tracking your ads and viewing your analytics
- Much more
Access my AdPlugg account
';
$tags_content = '
Ad Tags/Shortcodes
Once you have AdPlugg intalled, you can add AdPlugg Ad Tags to your site
and they will be filled with any ads that you target to them from your
account at adplugg.com
You can add AdPlugg Ad Tags can to Posts, Pages, theme files, etc.
The AdPlugg Widget simply adds an Ad Tag to your Widget Area. You could
insert the same Ad Tag by other means if you wanted (by using a text widget
for example).
Though they work in a similar fashion to Shortcodes, AdPlugg has chosen
to use Ad Tags instead of shortcodes as they are more powerfull, more
flexible, and more familiar to most users. You can read more about Ad Tags
here.
';
$troubleshooting_content = '
Troubleshooting
If ads aren\'t displaying on your site, please check the following:
- Is The AdPlugg plugin installed and activated?
- Have you created an AdPlugg account at www.adplugg.com?
- Do you have at least one active ad in your AdPlugg account?
- Have you added the AdPlugg Ad Widget to a Widget Area? You can do this from the
Widgets configuration page.
Please contact us for additional support.
';
$sidebar_content = '
For more Information:
AdPlugg Help Center
AdPlugg Cookbook
Contact AdPlugg
';
//overview tab
$screen->add_help_tab( array(
'id' => 'adplugg_overview',
'title' => 'Overview',
'content' => $overview_content
) );
//installation tab
$screen->add_help_tab( array(
'id' => 'adplugg_installation',
'title' => 'Installation',
'content' => $installation_content
) );
//use tab
$screen->add_help_tab( array(
'id' => 'adplugg_use',
'title' => 'Using AdPlugg',
'content' => $use_content
) );
//use tab
$screen->add_help_tab( array(
'id' => 'adplugg_tags',
'title' => 'Tags/Shortcodes',
'content' => $tags_content
) );
//installation tab
$screen->add_help_tab( array(
'id' => 'adplugg_troubleshooting',
'title' => 'Troubleshooting',
'content' => $troubleshooting_content
) );
$screen->set_help_sidebar( $sidebar_content );
return $contextual_help;
}