Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #2803761
WPC Fly Cart Icon Issue
Closed

Comments

  • 52Five started the conversation

    Hi WPClever Team,

    I had an issue with the WPC Fly Cart Plugin and am using the Free Version because the free functionality suits my use case. We run a WooCommerce Shop for our customer, and the Icons in the WPC Fly Cart seemed to be missing. 

    The CSS file was not being loaded. Only changing the Name inside the wp_enqueue_style Function solved the issue:

    Changed it from 

    wp_enqueue_style( 'woofc-fonts', WOOFC_URI . 'assets/css/fonts.css' );

    to 

    wp_enqueue_style( 'woofc-fonts-fix', WOOFC_URI . 'assets/css/fonts.css' );

    Do you know how I could resolve this issue without editing your plugin code directly (It would be lost after every update).

    Kind regards,

    Moritz from 52Five

  •  767
    Janilyn replied

    Hi 52Five,

    Thank you for contacting WPClever Support Forum. 

    We’ve received your ticket and assigned one of our developers to help you with that. 

    He’ll be looking into your question and responding with specific instructions as soon as possible. 

    Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.

    Best regards.

    Janilyn T. - WPClever Support Agent

  •  1,226
    Dustin replied

    Hi 52Five,

    Seem to have the custom snippet on your site prevent loading this CSS file with the name "woofc-fonts". That is why it works when changing to "woofc-fonts-fix".

    The code looks like that:

    add_action( 'wp_enqueue_scripts', 'woofc_dequeue_scripts', 99 );
    function woofc_dequeue_scripts() {
        wp_dequeue_style( 'woofc-fonts' );
    }

    Please find this code or an option in another plugin (some optimization plugins) that can cause this issue.

    Best regards,
    Dustin