This topic has 1 reply, 2 voices, and was last updated 12 years, 6 months ago by Fem.
Viewing 2 posts - 1 through 2 (of 2 total)
Hi!
Are there any other options available for share-link.php? Or is there are way I can add a couple?
There are three options I’d like to include:
a)RSS feed
b)Email (ideally some kind of pop-up form, not open an email client)
c)Itunes (just opening a link to an iTunes preview page URL)
Thanks for any suggestions!
You can customize that in share-link.php file as well as musicband/index.php file in //Shareing Options section.
White adding meta keys we use prefix for theme which returns with ‘atp’ then variable. example as shown below
$options[] = array( 'name' => 'LinkedIn', 'desc' => 'Check this to enable LinkedIn Icon for Post Sharing', 'id' => $shortname.'_linkedIn_enable', 'std' => '', 'type' => 'checkbox', );
As shown in above you see $shortname varialble is concatenated with key _linkedIn_enable. In share-link.php file we call it as shown below
// LinkedIn
if ( get_option('atp_linkedIn_enable') == 'on' ) { ?>

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.