• Resolved Sheila

    (@sheilahoff)


    First time using Divi’s Audio module. I get this error… Audio: please specify correct url. Viewing the source code I just figured out that Shortcodes Ultimate is causing it. When I disable it’s fixed. I’ve used CSS to hide the error message so the block (at bottom of link) now clicks to the audio file. But in Divi it would normally embed the player in that box. I hope you can tell me a setting to remedy the conflict. This is a very old site converted to Divi so the posts use SU throughout. I don’t want to eliminate SU. I just want to resolve this conflict if at all possible. Thanks.

    • This topic was modified 5 years ago by Sheila.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Vova

    (@gn_themes)

    Hi Sheila,

    the following snippet will disable su_audio shortcode, just add it to the end of the functions.php file:

    add_filter( 'su/data/shortcodes', function( $shortcodes ) {
    	unset( $shortcodes['audio'] );
    	return $shortcodes;
    }, 99, 1 );
    Thread Starter Sheila

    (@sheilahoff)

    Great…thanks! Worked perfectly.

    • This reply was modified 5 years ago by Sheila.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Audio shortcode error in Divi’ is closed to new replies.