WordPress Sharing Customization

Mini Menu Orientation

By default an activated mini menu displays above the button when there is not enough visible space below the button. You can set the mini menu to always appear downward or upward.

var a2a_config = a2a_config || {};
a2a_config.onclick = 1;
a2a_config.orientation = "down";

In Drupal, add the following JavaScript code to your "Additional JavaScript" box in Configuration > Web services > AddToAny > Additional Options.

In WordPress, add the following JavaScript code to your "Additional JavaScript" box in Settings > AddToAny.

a2a_config.onclick = 1;
a2a_config.orientation = "down";
var a2a_config = a2a_config || {};
a2a_config.onclick = 1;
a2a_config.orientation = "up";

In Drupal, add the following JavaScript code to your "Additional JavaScript" box in Configuration > Web services > AddToAny > Additional Options.

In WordPress, add the following JavaScript code to your "Additional JavaScript" box in Settings > AddToAny.

a2a_config.onclick = 1;
a2a_config.orientation = "up";