• Resolved InHouse

    (@inhouse)


    Today I noticed that CSS from the plugin is affecting other plugin pages and posts in the admin. Consider only enqueueing CSS on the Mass Pages/Posts Creator settings pages.

    Specifically, “.view” CSS is affecting Advanced Custom Fields functionality.

    
    .acf-image-uploader .view { /* ACF */
        float: left;
        position: relative;
        max-width: 100%;
    }
    .view { /* Mass Pages/Posts Creator */
        display: block !important;
    }
    .show-if-value { /* ACF */
        display: none; /* This is being overridden */
    }
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Dotstore

    (@dots)

    Hello @inhouse,

    Hope you are doing well!

    Thanks for your contribution.When post creates view table show data this time this CSS apply also we have updated using parent class so now not affect to another plugin.

    .toplevel_page_mass-pages-posts-creator .view{display:block !important;}

    Please do let me, if we can assist you further.

    Thank you,
    Multidots

    Thread Starter InHouse

    (@inhouse)

    You should just limit the CSS include to your plugin pages only so they’re not being called on every single admin page.

    Plugin Author Dotstore

    (@dots)

    Hello @inhouse,

    Hope you are doing well!

    sure we can update all CSS on our next version.

    Please do let me, if we can assist you further.

    Thank you,
    Multidots

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove CSS from non-plugin pages’ is closed to new replies.