Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from YahyaTec/functions.php
Created July 7, 2025 16:26
Show Gist options
  • Save dexit/240e46840ec279151d4fa164004736b5 to your computer and use it in GitHub Desktop.
Save dexit/240e46840ec279151d4fa164004736b5 to your computer and use it in GitHub Desktop.
add in child theme
if ( ! function_exists( 'electro_premium_templates_path' ) ) {
/**
* emart Elementor Template function
*
* @param string $path elementor template path.
*/
function electro_premium_templates_path( $path ) {
$path = 'https://electro.madrasthemes.com/4x/';
return $path;
}
}
add_filter( 'mas_elementor_premium_templates_path', 'electro_premium_templates_path', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment