• I’m running wordpress with a different location for wp-content, and the core of wordpress is also on an alternate location.

    And so it was that the css failed to load, it was trying to download the mdqt_style.css from **WP_SITEURL** instead of **WP_CONTENT_URL**

    So I went and change from
    get_option(‘siteurl’)
    to
    get_option(‘home’)

    on line 43 in markdown-quicktags.php

    And it works with the alternate wordpress installation I have.

    https://www.ads-software.com/extend/plugins/markdown-quicktags/

  • The topic ‘[Plugin: Markdown QuickTags] A Little Fix in the code when using alternate location for wp-content’ is closed to new replies.