Custom Button not working
-
Hello –
I was trying to get custom buttons to work but hasn’t worked so far. The regular are working successfully setup up as floating right vertical. But trying to add the custom button does not display the new button. The custom buttons shows in the Setting window and appears correct. I used this code in the functions.php file =
function addtoany_add_services( $services ) {
$services[‘DBL_Contact_US’] = array(
‘name’ => ‘Contact%20Us’,
‘icon_url’ => ‘https://dribanklabs.com/wp-content/uploads/2014/11/ContactUs16x16.png’,
‘icon_width’ => 16,
‘icon_height’ => 16,
‘href’ => ‘https://dribanklabs.com/?page_id=1452’,
);
return $services;
}
add_filter( ‘A2A_SHARE_SAVE_services’, ‘addtoany_add_services’, 10, 1 );IS there someway I can this working?
Thank you
David Sadler
- The topic ‘Custom Button not working’ is closed to new replies.