Archives: Snippets
Untitled Snippet
Add a Blue Dot Indicator for Containers/Widgets that have Custom CSS in the Elementor Navigator
Untitled Snippet
Untitled Snippet
Untitled Snippet
Allow SVG uploads for administrator users.
/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types. * * @return mixed */ add_filter( ‘upload_mimes’, function ( $upload_mimes ) { // By default, only administrator users are allowed to add SVGs. //…Continue reading
Disable the delivery of SEO Email Reports
add_filter( ‘aioseo_report_summary_enable’, ‘__return_false’ );Continue reading
Remove the default ‘aioseo-‘ ID prefix added for the Table of Content block
add_filter( ‘aioseo_toc_hash_prefix’, function( $prefix ) { return ”; } );Continue reading
Use a custom ID prefix in Table of Content block
add_filter( ‘aioseo_toc_hash_prefix’, function( $prefix ) { return ‘mysite-‘; } );Continue reading