Plugin Author
Vova
(@gn_themes)
Hi EdgeRayner,
try to use shortcode generator to generate this shortcode. There is no parameters called ID. This shortcode accepts video URL.
Ouch…I have about 500 posts with this shortcode :/
Plugin Author
Vova
(@gn_themes)
You can use plugin API to overwrite default URL parameter with your custom.
http://gndev.info/kb/shortcodes-ultimate-api-overview/
Plugin Author
Vova
(@gn_themes)
Also, you can create your custom shortcode with premium addon “Maker” and overwrite default youtube shortcode with it.
Is it possible to remove the Youtube shortcode? If so, how can I do it?
Plugin Author
Vova
(@gn_themes)
What do you mean by “remove”?
Remove or deactivate the Youtube shortcode from the plug-in.
Plugin Author
Vova
(@gn_themes)
Sure. You can do it with API.
I have the same problem, I using WordPress Jetpack and using shortcode:
[youtube=http://youtube…etc…]
and your plugin starts with:
[youtube url=”
Compatibility mode helps with video problem but all previously used shortcodes dont work
Plugin Author
Vova
(@gn_themes)
I’ll help you today, a little later.
Plugin Author
Vova
(@gn_themes)
How to remove shortcode from Shortcodes Ultimate
1. Add this code to your theme’s functions.php file
function su_remove_youtube_shortcode( $shortcodes ) {
unset( $shortcodes['youtube'] );
return $shortcodes;
}
add_action( 'su/data/shortcodes', 'su_remove_youtube_shortcode' );
2. Reactivate the plugin.
Thanks, It works, I dont used this code, but have activated Compatibility mode ang updated to latest version