• Resolved lukascech

    (@lukascech)


    Hi guys,

    is it possible to turn off loading or dequeue your pa-elements fonts? We only use the Dual Heading widget so they are not needed, but are loaded on every post, and on top of that they are loaded over HTTP, not HTTPS, causing two problems:
    – speed (loading font necessarily)
    – security (Chrome blocks the HTTP request and throws an error)

    Thanks
    Lukas

    The page I need help with: [log in to see the link]

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

    (@leap13)

    Hi @lukascech

    Hope you’re doing well today ??

    Well, I believe this is doable by adding the lines below into your theme functions.php file

    add_action( 'wp_enqueue_scripts', 'deregister_style', 11 );
    function deregister_style() {
        wp_dequeue_style( 'pa-editor' );
    }

    If you still need any further assistance, please let me know.

    Regards

    Thread Starter lukascech

    (@lukascech)

    Hey there, thanks for the info – didn’t get a notification about your post!

    This worked fine, thank you!

    Great, so glad that everything is working just fine with you now.

    If you have any farther questions, please don’t hesitate to feed me back anytime ??

    By the way, it would be great if you could please do us a BIG favor by rating Premium Addons for Elementor on our WordPress page. This really would give us a huge push forward to make things better ???

    Also, you’re most welcome to join our Facebook group and Youtube channel through the links below to get notified about new features, video tutorials and bug fixes.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘dequeue pa-elements.* font’ is closed to new replies.