• Resolved mdivk

    (@mdivk)


    Here is the site

    As you can see, there is a calendar icon on every images left bottom corner. In code it is <i class=”fa fa-calendar”></i>.

    I already remove all the occurrence in the front-page.php, but they are still there.

    Can anyone tell me where are they from and how to remove them?

    Thank you very much.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter mdivk

    (@mdivk)

    I also want to remove the link added to the slides and the 4 images beside slider. don’t know which is the right file to change. ??

    Thank you very much.

    By the way, in the settings I set the Reading is Frontpage is set to display a static page.

    Thread Starter mdivk

    (@mdivk)

    This is very odd!

    I made a replica on my local wamp server so it is easier for me to do everything on my local first.

    I checked each php file in the theme’s root folder including front-page.php, index.php, single.php, etc

    I removed all <i class=”fa fa-calendar”></i> in all the files that has it.

    Yet I still see the icon showing up. :(…

    Icons are independently displaying from multiple theme files for which it might been hard for you to find and replace them. Better approach I think would be simply to hide it from Custom CSS for now.

    .post-date i.fa.fa-calendar {
        display: none;
    }

    Regarding your second query try removing anchor tag wrapping line no . 422 of profitmag-functions.php

    Always consider making a Child Theme for all your custom changes to override the parent theme properties.

    Hope this helps!

    Thread Starter mdivk

    (@mdivk)

    Thank you so much for your help. Although your css removes only the images in the four blocks, I was able to borrow your idea and add the following to remove the icon from the slides:

    .slide-date i.fa.fa-calendar {
        display: none;
    }

    That’s cool ! ??

    Theme Author Rigorous Themes

    (@wpgaint)

    Hi mdivk,
    Update theme to latest version to get newly added features and bug fixes of old version.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How do I remove the icons added to the slides?’ is closed to new replies.