/*
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
*/

 function rankmath_disable_og_description() {
        remove_all_actions('rank_math/frontend/description');
    }
    add_action('wp_head', 'rankmath_disable_og_description', 1);

 add_filter('rank_math/frontend/description', function($description) {
            return false;
        });