appscreo / easy-social-share-buttons3

The #1 WordPress social media plugin Easy Social Share Buttons https://socialsharingplugin.com
1 stars 0 forks source link

Added new filters to modify the more popup window title and adding custom HTML content above share buttons #393

Closed appscreo closed 1 year ago

appscreo commented 1 year ago
add_filter('essb_morepopup_title', function($title) {
    $title = 'Custom window title';
    return $title;
});

add_filter('essb_morepopup_message', function() {
    return '<p>This is custom <b>message</b> in the window </p>';
});