• Resolved bfl

    (@bfl)


    I’m trying to add 3rd party standalone service buttons (Facebook like and Google plus one) without the universal button.
    I have not been able to find a comprehensive list of all AddToAny PHP functions and function parameters, so I
    don’t even know if this is possible. Is it? And if so, how can it be done? I have already looked through the documentation
    and FAQs, but there are only individual examples, no lists of all included functions and parameters.
    If this is not possible, there is one alternative that will work for me: being able to arbitrarily change the position
    of the universal button from the end to somewhere in the middle. For example, I could have one share button, then the
    universal button, then another share button.

    https://wordpress.org/plugins/add-to-any/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author micropat

    (@micropat)

    Use the no_universal_button argument in your template code like:

    <?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
        ADDTOANY_SHARE_SAVE_KIT( array(
            'buttons' => array( 'facebook_like', 'google_plusone', 'google_plus_share' ),
            'no_universal_button' => true,
        ) );
    } ?>

    Thread Starter bfl

    (@bfl)

    Thank you very much. Is there a list of all available functions and parameters?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Add Service Buttons Without Universal Button’ is closed to new replies.