Wordpress Soeldad meta info hide - wordpress

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;
}

Related

How do i remove gravatar completely from wordpress?

Hi I'm trying to to remove gravatar completely for my website. I've already disabled gravatar on the discussion page setting of wordpress. However, I'm using a paywall plugin which uses gravatar (called memberful) and its account popup always shows the profile avatar regardless if its disabled or not on the discussion page.
Example:
I think the profile-window is actually an iframe...
To here: https://dylogue.memberful.com/account/subscriptions
Do you have access to this endpoint, or is it created by a script? Changing the general CSS wont help you if you do not have access to inserting css into this endpoint.
The stylesheets are in weird places:
https://d1zgk03a9fsd43.cloudfront.net/assets/reach/style-4556bac86321e164130eb81bc9c1bd3e8ad4f00e3a7f1b803ef1e7e272baf184.css
https://d1zgk03a9fsd43.cloudfront.net/packs/member-bafbfb186fc0b252fb994416a369b793.css
I didn't see the link to create an account and test this, but does this CSS work?
.memberful-account-header img {
display: none;
}
.memberful-account-header hgroup * {
margin-left: 0 !important;
}

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;
}

Hide comment count from wordpress website

Hello I am trying to get rid of the 'leave a comment' or 'n comments' tag which is shown on my wordpress website recent posts without getting rid of Date and Author
Any solution?
First, have a look if your theme 'wordstar' has a configuration option for this meta-data. If not, you could hide what you do not need using custom CSS:
.entry-meta .comment,
.entry-meta .cat-links,
.entry-meta .tag-links {
display: none;
}
Just add whatever you want to hide.
To hide the comments count from your WordPress blog, add a CSS rule to hide the .comments-count class. To do so, go to /wp-admin > Appearance > Customize > Additional CSS and place the following CSS rule:
.comments-count {
display: none;
}
Disable comments. Go to WP Admin -> Settings -> Discussion ->, uncheck Allow people to post comments on new articles checkbox and click Save button.

How to create a landing page with the child theme

I have purchased MasterStudy theme for my website and It doesn't have a template with no header or footer to create a landing page. My question is: how can I create a page with such template via its child theme and use visual composer to add the content? Is this possible?
Not sure if I completely understood your situation, but I'll try to help anyway.
Have you checked all the Theme Options? Sometimes you can easily delete the footer and header through the Theme Options. In case you have and there's not an option to do so, the smart move would be to create a custom page to fit your needs. You'll find some information about how to do so right here http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/
Remember that the visual composer only edits the content of the webpage per se, meaning, it can't modify the template structure (footer and header in this case).
Hope it helps!
Actually, the solution is much more simple than I thought. I resolved it by adding custom CSS to hide the header and the footer of the page by mentioning Its ID. Here is the Code I used >>
.page-id-2114 #header {
display: none;
}
.page-id-2114 footer {
display: none;
}

wordpress footer moves to the top of main content when using custom pages

I've just started using wordpress for CMS and I've built a test website - however on the pages when I've added a custom page template the footer moves up to the very top of the main content area. I've tried searching the web and used some fixes mentioned in tutorials clear: both; etc.. and nothing has corrected the problem . Any help to fix this issue would be greatly appreciated.
the static home page is working fine:
http://creative-media.info/wp/
however on the following custom page below - you'll be able to see the footer error.
http://creative-media.info/wp/gallery-lightbox/
kind regards
Paul
The problem seems to be <div id="whiteboxfaz"> </div>
Remove in that id position: absolute;

Resources