Home Forums WoodMart support forum Custom blog post

Custom blog post

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #307349

    mymagicstones
    Participant

    Hello,

    I need to custom 3 things on my blog post :

    1) How to hide « posted by … » under the title ? (Circled in purple on « screen1 »)

    2) How to display the post date under the title (because the date is not shown on my post …)

    3) Is it possible to display the featured image under the post title (with php maybe ?) ?

    I also need to change one things on my blog post archive : Is it possible to hide tags and « posted by … » on each post preview (circled in red on « screen2 »)

    I tried to hide the « posted by » with the following css but it doesn’t work :
    .woodmart-entry-meta .meta-author {
    display: none;
    }

    Thank you for your help. Have a nice day.

    #307353

    mymagicstones
    Participant

    You will find attached to this post the 2 screens.

    Attachments:
    You must be logged in to view attached files.
    #307402

    Hello,

    We can hide “Posted by” with the custom CSS.

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .wd-entry-meta .meta-author {
    display:none;
    }

    As for the second and third points, unfortunately, HTML structure does allow customization with CSS. Such modification requires customization not covered by our support.

    Best Regards

    #307407

    mymagicstones
    Participant

    Hello,

    Ok thank you. And how can I hide the date on blog post archive page (but keep it in single blog post) and I also wan’t to hide the tags on the blog post archive page ? – >Circled in red in screen 3.

    I also wan’t to display date on single blog post with this format : DD/MM/YYYY (actually it’s JJ/MM only …)

    Thank you for your help.

    Attachments:
    You must be logged in to view attached files.
    #307429

    Hello,

    The blog post date format is not editable.

    You can try the default WP bakery page builder Post grid or Eelemntor widget, depending on which one you use on the site.

    You can hide the date on the blog page in the grid by this custom CSS:

    .blog-design-masonry.has-post-thumbnail .post-date {
    display:none;
    }

    Best Regards

Viewing 5 posts - 1 through 5 (of 5 total)