How to remove post archive posts description/excerpt from wordpress website? - wordpress

How to remove post archive posts description/excerpt from wordpress website?
See the screenshot: http://tinypic.com/r/1zq5zc7/8
I already tried this code, but it did not work for me.
.archive .post-content p {
display: none;
}

Related

Wordpress Soeldad meta info hide

Im working on my blog in WP. Im using soeldad theme. Im trying to hide info about who wrote article (in my situation - by admin [acctualy "przez" admin, przez means by]). I did it in single post but still has it on main page.
Here is site url: https://wycinki.com.pl/
And ss, where I tic what I want to hide.
You can try that in your css:
.grid-post-box-meta span.author-italic {
display: none;
}

In WooCommerce, can I make “shopping cart” appear only in SHOP section and when a customer actually adds an item in cart?

I’m using Nikkon on Wordpress and would like the shopping icon to show only in shop section and after customer has added an item, kind of like how Squarespace does it. Is it possible? I used the following code in CSS edit but it did nothing:
.home .top-login,
.home .top-cart {
display: none;
}

How to delete Last Update date in wordpress' page?

I'm newbie in wordpress. I got website: http://xn--lnepengerprivat-hlb.com/ and on homepage (it's page, not a post!) I've got Last Update date. How to delete it? Please help me
Add this css in your style.css or find in your theme file and remove the php code.
.page-last-modified {
display: none;
}
You could hide the page post date by using CSS, either in a styles.css file or in the custom CSS editor of WP Customizer.
.page-last-modified {
display: none;
}
Another solution would be to delete the whole block in the page template file of your child theme.

Wordpress Category Page (unclickable)

Recently I have been working on my WordPress blog website is French https://www.geekparfait.com/.
I am using FlatNews WordPress theme http://demo.sneeit.com/flatnews/
Everything was going pretty well. But now I am facing this issue on my categories pages https://www.geekparfait.com/category/ios/. Its like I am unable to click the posts on category pages. The same issue is on the category pages sidebar as well.
But on the homepage https://www.geekparfait.com/, everything is working fine. I am able to click and open the posts on the homepage.
Hope I can get some insight from you guys.
Thanks
The issue is with the sidebar and the position attribute of it. Please try out the below code in style.css or theme option panel custom css setion.
.category section.fn-primary > strong {
position: inherit;
}
Hope this will work for you.
Screenshot
The problem is the sidebar is generating that can click in that entire div, try changing that position: relative. with
.category strong {
position: inherit!important;
}

Hiding plugin on pages in wordpress

I am using a button which displays a like/upvote button. There is an error in the plugin which displays the button on every page of the site. It should only show on blog posts and job listings through WP job manager.
Is there any way to remove this on pages only?
My current solution is:
.vortex-container-vote {text-indent: -9999px;}
But this removes the plugin from every page(including blog posts and job listings)
I wonder if anybody has a solution which keeps blog posts and listings?
Many thanks
WordPress includes a post-type identifier class in the body tag. So something like this should do it:
/* Here you hide it everywhere */
.vortex-container-vote {
display: none;
}
/* Then here you only show it on the post-types you want */
.post .vortex-container-vote {
display: block;
}
Note that this only shows it on posts, as I don't know the post-type for your job listings. But if say the post-type is single-job_listing, then change the second part of the css above to this to include the job listings:
.post .vortex-container-vote, .single-job_listing .vortex-container-vote {
display: block;
}

Resources