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

    (@micropat)

    That’s not a good solution if you’re using the WordPress plugin.

    You should use the plugin’s recommended template code, for example:
    <?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>

    Or for a specific page:

    <?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) {
        ADDTOANY_SHARE_SAVE_KIT( array( 'linkname' => 'Example Page', 'linkurl' => 'https://example.com/page.html' ) );
    } ?>

    More examples are in the AddToAny plugin’s FAQ.

    Thread Starter SFMichael

    (@sfmichael)

    Thanks for the update, Not sure how I missed that template code. I have updated my code to reflect your suggestion. Thanks for the input.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Resolved – Override Counter URL’ is closed to new replies.