• I don’t understand the reasoning behind removing well-implemented functionality in an upgrade. I was using the plugin with a custom CSS file, updated, and was left with a black text on white background layout – with no way of re-implementing my style aside from hard-coding the CSS into the plugin.

    I’m puzzled, and will be looking for another solution.

Viewing 1 replies (of 1 total)
  • Hello,

    If you want to modify the default CSS properties, add your own css style by using ‘wpmm_styles’ filter.

    function new_css_styles($styles) {
        $styles['new-style'] = 'path_to_css_file/style.css'; // replace with the real path :)
    
        return $styles;
    }
    
    add_filter('wpmm_styles', 'new_css_styles');

    Thanks,
    George Jipa

Viewing 1 replies (of 1 total)
  • The topic ‘Why remove functionality?’ is closed to new replies.