• Resolved mbs1337

    (@mbs1337)


    Hey

    There is a problem suddenly with the “Heart O” and “Heart” icon
    There is just a spinning icon in the backend, the same with alot others.

    Why is this?



    • This topic was modified 9 months, 1 week ago by mbs1337.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hello there,
    we hope you’re doing well!

    I just checked the HTML of our container on your site, and I see that Oxygen is modifying it, using SVG elements to display the elements. Please, I recommend contacting their support to see how to omit this modification in our container.

    Let us know any news.

    Best regards.

    Thread Starter mbs1337

    (@mbs1337)

    Okay I think that is strange. This has worked before, and I have not made any changes to SVG elements.

    I will try to contact Oxygen

    Thread Starter mbs1337

    (@mbs1337)

    Hey again

    I have talked with Oxygen, and like I told before, this is nothing to do with Oxygen – because this is working fine on other pages with Oxygen

    But I found out that this plugin is causing the error: “shipcloud for WooCommerce

    https://www.ads-software.com/plugins/shipcloud-for-woocommerce/

    Plugin Support Pablo Pérez

    (@pperez001)

    Hi there,

    In that case, the best solution will be reaching out this plugin support in order to prevent their scripts affect other plugin. However from our side we can give this code to place our version of FontAwesome in the frontend and our plugin page, using the following code in the functions.php:

    if ( ! function_exists( 'yith_wcwl_add_fontawesome' ) ) {
    	add_action( 'wp_enqueue_scripts', 'yith_wcwl_add_fontawesome', 99 );
    	function yith_wcwl_add_fontawesome() {
    		wp_enqueue_style( 'fontawesome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
    		wp_dequeue_script( 'shipcloud-fa-solid' );
    		
    	}
    }
    
    if ( ! function_exists( 'yith_wcwl_add_fontawesome_admin' ) ) {
    	add_action( 'admin_enqueue_scripts', 'yith_wcwl_add_fontawesome_admin', 99 );
    	function yith_wcwl_add_fontawesome_admin() {
    		if($_GET['page'] === 'yith_wcwl_panel'){
    			wp_enqueue_style( 'fontawesome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' );
    			wp_dequeue_script( 'shipcloud-fa-solid' );
    		}
    		
    		
    	}
    }

    This should fix your issue, here is a screenshot with this code and your other plugin.

    Have a great day.

    Thread Starter mbs1337

    (@mbs1337)

    Okay thanks for this. That is very kind of you. Shipcloud was way to buggy, so we have changed all this. So it’s not neccersary for this fix anyway.

    But thanks alot anyway

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Heart O dosn’t work anymore’ is closed to new replies.