Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author PressTigers

    (@presstigers)

    Hi

    First of all sorry for the inconvenience..! Kindly go to the following file,
    simple-job-board/admin/class-simple-job-board-admin.php

    and comment this line for now.
    wp_enqueue_style($this->simple_job_board . ‘-jqueryui’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css’, array(), $this->version, ‘all’);

    Commenting above mentioned line will not effect any of other SJB functionality. And we will resolve this issue in our next release.

    Thanks & Regards,
    PressTigers

    Thread Starter imj13

    (@imj13)

    Hi,

    Thank you for the quick response.

    Do we have other options to dequeue the style using themes function.php?

    • This reply was modified 9 years, 7 months ago by imj13.
    • This reply was modified 9 years, 7 months ago by imj13.
    Plugin Author PressTigers

    (@presstigers)

    Hello @imj13

    Please write the following code in functions.php:

    
    /**
    * Dequeue jqueryui style
    */
    function sjb_dequeue_styles(){
        wp_dequeue_style('simple-job-board-jqueryui');
    }
    
    add_action( 'admin_enqueue_scripts', 'sjb_dequeue_styles' );
    

    Thank you for using SJB. Let us know if you need our further assistance.

    Regards,
    PressTigers

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

The topic ‘Affecting other plugins page in admin’ is closed to new replies.