DIVI conditional modules display

// This filter will be fired for every Divi section, row, column and module. By the way, internally// for Divi a section is just another module so if we talk about modules below, this also includes// sectios, rows, and columns.add_filter(‘et_module_shortcode_output’, ‘my_custom_et_module_shortcode_output’, 10, 3);function my_custom_et_module_shortcode_output($output, $render_slug, $module){// First we check whether there are any CSS classes […]

Читать дальше… from DIVI conditional modules display