• I see a bunch of posts on the Sideposts widget. I’m going insane over here because I’m trying to make the style work. How can I disable the style sheet?

    I saw somewhere possibly make a plugin to disable it, how would I do that?

    thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The easy way: detele the style.css file on the widget folder.

    If you’re interested on doing it by a plugin, you need to hook into the ‘ak_sideposts_style_url’ and return an empty string:

    function disable_sideposts_styles( $url )
    {
    	return '';
    }
    add_filer('ak_sideposts_style_url', 'disable_sidepost_styles');

    Forgot that:

    Another way to disable the styles is to create a file named ‘alkivia.ini’ in the wp-content folder with this content:

    [sideposts]
    disable-module-styles = On
    Thread Starter ashley3ee

    (@ashley3ee)

    thank you, that file alkivia.ini works perfect!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Sideposts CSS’ is closed to new replies.