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

    (@micropat)

    For an actual WordPress Widget, it’s up to your theme to support placement in posts. Look for the “AddToAny Share” widget if you your theme supports widgets in posts.

    Instead of a sharing widget, most publishers keep the Standard sharing “Placement” options enabled in Settings > AddToAny, so that the buttons are automatically placed in posts.

    Thread Starter booke022

    (@booke022)

    Thank you for your reply.
    But the problem is that when I leave the standard setting addtoany when someone tries to go to facebook they can only update on their facebook account. What I am looking for them to update write to my facebook account. Via the widget it woks on pages and not on posts.

    https://www.bookman.org.uk

    https://bookman.org.uk/wordpress/thanks/ – widget

    https://bookman.org.uk/wordpress/the-short-stories/

    thank you again for your help

    T.

    Plugin Author micropat

    (@micropat)

    You’re referring to a “Follow” widget, which doesn’t automatically appear in posts like the share buttons do.

    If your WordPress theme doesn’t have a “widget area” for posts, you might request that feature from your theme’s author. Otherwise, in your theme file(s) you can manually place the PHP code for your AddToAny follow buttons like:

    <?php if ( function_exists( 'ADDTOANY_FOLLOW_KIT' ) ) {
    	ADDTOANY_FOLLOW_KIT( array(
    		'buttons' => array(
    			'facebook' => array( 'id' => 'YOUR_FACEBOOK_PAGE_ID_HERE' ),
    		),
    	) );
    } ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘widget to work on posts’ is closed to new replies.