n Name: AE Social Follow Disabler
* Plugin URI: https://pushentertainment.com
* Description: Disables the [ae-social-follow] shortcode by rendering nothing
* Version: 1.0.0
* Author: P. Fernihough, Push Entertainment
* License: GPL v2 or later
*/
// Prevent direct access
if (!defined('ABSPATH')) {
exit;
}
/**
* Register the shortcode handler that returns empty string
*/
function ae_social_follow_disable_shortcode($atts, $content = null) {
// Return empty string to render nothing
return '';
}
/**
* Register shortcode with conflict detection
*/
function ae_social_follow_register_disabler() {
global $shortcode_tags;
// Check if shortcode already exists
if (isset($shortcode_tags['ae-social-follow'])) {
// Optionally log or notify about conflict
error_log('AE Social Follow Disabler: Overriding existing ae-social-follow shortcode');
}
// Register the shortcode (will override existing one)
add_shortcode('ae-social-follow', 'ae_social_follow_disable_shortcode');
}
// Hook to init to ensure it runs after other plugins
add_action('init', 'ae_social_follow_register_disabler', 999);
grahamnortongrabSML1 - Guy Garvey
Emails will be sent by or on behalf of Universal Music Operations Ltd, 4 Pancras Square, London. N1C 4AG, UK. +44 (0)20 3932 6000. You may withdraw your consent at any time. See Privacy Policy at https://www.umusic.co.uk/privacy.html
By ticking the SMS opt in box and submitting this form, I agree to receive text messages from and about Guy Garvey (including prerecorded and/or by autodialer). Up to 20 messages per month per opt-in. Consent is not a condition of any purchase. Msg & data rates may apply. See Privacy Policy and Terms for further information.