• Resolved Austin Ginder

    (@austinginder)


    I’m using the latest v3.1.3. For some reason my buttons to edit and delete my slides are missing. I checked Chrome Console and am not seeing any errors. It looks like the bundled version of font awesome is not loading on my backend (not seeing it when I view source). Here is a short screencast showing what I see: https://vimeo.com/222831258/049ad675ef. FYI, I was previously using Cyclone Slider 2 which was recently merged into this plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have the same problem.
    Turns out cyclone slider uses an old fontawesome version (3.2.1) inside their code which is problably overwritten by the fontawesome version of another plugin.
    The names of the icons inside this stylesheet are not the same, therefore not recognized.

    A quick fix is to change inside (around line 50) in src\CycloneSlider\AssetLoader.php
    change

    
    wp_enqueue_style( 'font-awesome', $this->url.'libs/font-awesome/css/font-awesome.min.css', array(), $this->version );

    To

    
    wp_enqueue_style( 'cycloneslider-font-awesome', $this->url.'libs/font-awesome/css/font-awesome.min.css', array(), $this->version );

    And your icons will re-appear. But this will only last untill the last update.

    • This reply was modified 7 years, 9 months ago by jargovi.
    • This reply was modified 7 years, 9 months ago by jargovi.
    Thread Starter Austin Ginder

    (@austinginder)

    Thanks for the workaround. That works.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Edit and delete buttons missing’ is closed to new replies.