Your Time:
Our Time:
← Back to discussions

Share Options

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 1 reply, 2 voices, and was last updated 12 years, 6 months ago by Fem.

  • 2014-02-14 at 3:01 am
    Support Expired
    #2914
    MutantSnowCone
    Participant
    • Topics: 5
    • Replies: 5
    • Total posts: 10
    • Post count: 9

    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!

    2014-02-14 at 3:11 pm
    #2924
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    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' ) { ?>
    
  • &title=&summary=">Linkdedin

You must be logged in to reply to this topic.