• Resolved karibumusic

    (@karibumusic)


    Could you teach me how to hide the date in the Slider/Featured Blocks on Top page? I used a plug in but it did not disappear.. Please help!

Viewing 15 replies - 1 through 15 (of 15 total)
  • Hey there karibumusic,

    How are you doing today?

    This should be possible to remove with some custom CSS. Since the theme that you’re using have custom CSS tab which is located in Appearance >> Theme Options >> Tools >> Custom CSS you can try adding this code there:

    .slider-section .slide-date {
    visibility: hidden;
    }
    
    .besides-block .beside-caption .post-date {
    display: none;
    }

    This should remove the the date from the slider and the features blocks next to it. The reason I didn’t use display: none for the slider is because it affects the layout of the description part. Effect is the same ??

    If this doesn’t work could you please post link to your site so I can take a look?

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter karibumusic

    (@karibumusic)

    Thank you so much Bojan, it worked very well as you instructed.

    Here I would like to hide the dates for other featured blocks too.
    Could you help me to hide date for all Featured Blocks (Featured Block One to Five and POPULAR BLOCK), if possible?

    Here is the link to my website. Please take a look for your reference.
    https://karibumusic.org/

    Thank you & Warm regards,
    Saori

    Hey there Saori,

    I’m not really familiar with the theme and the names of the layout blocks so lets do it like this to avoid any confusion.

    To remove these https://screencast.com/t/zgfoKpxQ5 and these https://screencast.com/t/skmYL9LsCk6z please add the following:

    .feature-main-date {
    display: none;
    }

    And to remove ones in the popular block https://screencast.com/t/2bjvjgz7Mo please try adding the following:

    .home-featured-block .post-date {
    display: none;
    }

    This should remove the dates on your home page.

    Hope this helps ??

    Best regards,
    Bojan

    Thread Starter karibumusic

    (@karibumusic)

    Bojan,

    We really appreciate you for your advice.
    It perfectly solved our problems.
    Again, thank you so much for your help.

    Warm regards,
    Saori

    Hey Saori,

    Glad I could help ??

    Cheers,
    Bojan

    Springgg

    (@springgg)

    Could you maybe tell me how to replace the date in the slider with a text? (I don’t want to remove the image next to the date)
    I managed to do it in the section beside the slider but can’t find it for the slider…

    MJPMJPMJP

    (@mjpmjpmjp)

    Search in the file profitmag-functions.php for // Home page slider

    In the function profitmag_slider_fu() change the following line in the if and in the else section from:

    <div class="slide-date">
      <i class="fa fa-calendar"></i><?php echo get_the_date( 'F d, Y') ; ?>
    </div>

    to

    <div class="slide-date">
      <i class="fa fa-calendar"></i> YOUR TEXT
    </div>
    Springgg

    (@springgg)

    Thank you so so much!!! ??

    Wow This post helped me a lot
    but now i want to hide the date of the sidebar posts
    how can i do that?

    Hey there marioace,

    Glad you find this helpful ??

    I’m not really sure what you mean by that, would you mind posting link to your site where you have that and possibly screenshot of what you want to remove and I’ll be happy to take a look. Generally this should be possible to remove with some custom CSS.

    Best regards,
    Bojan

    Hey there Bojan

    Thanks for the quick reply
    Here’s a screenshoot of waht i meant of Sidebar

    https://www.screencast.com/t/6hHqrGmkGi

    and here’s the link to my Website

    https://www.madboxpc.com/

    Regards

    Hey again marioace,

    Thanks for the link and the screenshot ??

    Please try adding the following as described above:

    .widget-area.sidebar .post-date {
      display: none;
    }

    This should remove those dates from your sidebar.

    Hope this helps ??

    Cheers,
    Bojan

    Thanks A LOT! Bojan
    It Worked!!

    btw, you are giving more support to the this theme, than the Theme Developers ??

    Best Regards

    Hey marioace,

    Glad I could help! Have a great day ??

    Cheers,
    Bojan

    Hi Bojan, Can you help me.

    I want to display, Category name of the post in homepage “Slider” in place of date.

    Can you tell me how to do that.

    My site Link: mydownloaduniverse.com

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘How to hide date in Top page (In the Slider and Featured box)’ is closed to new replies.