Viewing 4 replies - 1 through 4 (of 4 total)
  • Anonymous User 10765487

    (@anonymized-10765487)

    That’s because I don’t want my styles to be applied whatever happens.

    add_action('wp_enqueue_scripts', '_use_twitter_ui_for_tweets');
    function _use_twitter_ui_for_tweets(){
        wp_enqueue_style('jm-basic-ltw');
    }

    Some users want to add their own styles.

    This will fix this.

    Thread Starter Fr0zeBud

    (@fr0zebud)

    Thank you for the reply, this might be a dumb question but where do I add this? to my main CSS file?

    Thread Starter Fr0zeBud

    (@fr0zebud)

    Saw this code is already present in my functions.php file but still doesn’t work

    Anonymous User 10765487

    (@anonymized-10765487)

    That’s because the developer is a bad person ?? He keeps styles for himself in admin. Here is the trick :

    if( defined('JM_LTSC_CSS_URL') ){
      wp_enqueue_style( 'jm-basic-ltw', JM_LTSC_CSS_URL.'styles-basic.css' );
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Styles not working after update’ is closed to new replies.