plugin shortcode output

If you open the plugin file and find where the function add_shortcode(‘daisy’,’someotherfunction’); is, then you could simply call that function that the shortcode is pointing too.

This code could be placed as follows in a plugin or the functions.php file of your theme:

add_action( 'admin_init', 'daisy_fun' );

function daisy_fun(){
?>
        <script type="text/javascript" defer="defer">
                  jQuery(document).ready(function(){
                        var daisyLink = '<?php echo wp_contact_popup_short_code_handler(); ?>';
                  });
        </script>
<?php
}