/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
/**
 * Change embed text on placeholder
 *
 * @param   string $content Exist content.
 * @param   string $label   Label text of particular embed type.
 * @param   string $type    Type slug of embed type.
 * @return  string
 */
/* function my_embed_text( $content, $label, $type ) {
if ( 'gmaps' === $type ) {
return '<strong>My ' . $label . ' video is shown here.  However, to see this you must accept third party embeds from ' . $label . '.</strong>';
	}
return $content;
}
add_filter( 'avada_embeds_consent_text', 'my_embed_text', 20, 3 ); */