Connect with us

AFFILIATE MARKETING

3 Best Methods in 2023

Published

on

3 Best Methods in 2023

Can’t seem to hide the featured image in a WordPress post?

No sweat.

This article will explore a few ways to remove and hide featured images if you don’t want them.

The short answer is to look in your theme settings because most themes allow you to disable them with a simple click.

However, some themes don’t allow it or can be tricky to find and use such settings.

Advertisement

Keep reading to discover how to hide featured images in WordPress.

How to Hide the Featured Image in a WordPress Post Using the Theme Settings

The most effective and often easiest way to hide the featured image in a post is in your theme settings.

It’s effective because it makes the best adjustments to the code, keeping things running smoothly.

In this section, I’ll show you how to hide featured images in WordPress posts with a few of the most popular WordPress themes.

Let’s take a look.

Here’s an article’s featured image in a starter template for Blocksy.

Advertisement

If you want to disable the featured images for all of the blog posts, follow these steps.

First, open up the customizer by clicking Customize and look for a setting for Single Post:

1675161220 173 3 Best Methods in 2023

Then, find an option that lets you turn off Featured Image:

1675161220 876 3 Best Methods in 2023

When you toggle this option, you’ll notice the featured image has now disappeared from your blog posts:

1675161220 470 3 Best Methods in 2023

Now, let’s see how it’s done in a different theme.

Here’s what the featured image looks like with one of the starter templates for Neve:

1675161220 209 3 Best Methods in 2023

The setting for this one looks a bit different. I found it under Layout > Single Post > Page Elements:

1675161220 266 3 Best Methods in 2023

Selecting this option will hide the multiple featured images throughout the site.

1675161220 475 3 Best Methods in 2023

Challenger is a minimal WordPress theme that lets you hide the featured image in its settings.

Here’s what it looks like:

1675161220 663 3 Best Methods in 2023

The setting for this one was under Show/Hide Elements > Posts > Show Featured Image:

1675161220 537 3 Best Methods in 2023

And here’s the finishing look.

1675161220 995 3 Best Methods in 2023

The previous section only removed the featured image from single articles.

In this section, I’ll show you how to hide the featured image from the main blog roll, where your recent posts show up.

Again, I’ll use the same themes for my examples, but you’ll notice it’s very similar to the theme you’re using.

Advertisement

Here’s the blog roll in Blocksy.

1675161220 158 3 Best Methods in 2023

To remove the featured images on this page, go to the theme’s customizer.

You’ll see a bunch of settings like this:

1675161220 883 3 Best Methods in 2023

Your settings might look slightly different, but you want to find an option for the Blog Posts settings.

Like this:

1675161220 141 3 Best Methods in 2023

Blocksy has a setting called Cards Options:

1675161220 897 3 Best Methods in 2023

Inside here is the setting to turn off featured images:

1675161220 482 3 Best Methods in 2023

You’ll see on the right that all the featured images have been removed from that page.

Now, let’s see how it’s done in a different theme.

1675161220 754 3 Best Methods in 2023

Here’s what the blog page looks like in Neve:

1675161220 983 3 Best Methods in 2023

To remove the thumbnail image, navigate through the customizer settings to find the blog options:

1675161221 869 3 Best Methods in 2023
1675161221 391 3 Best Methods in 2023

The featured image settings are under Ordering and Content:

1675161221 366 3 Best Methods in 2023

Clicking on the eye icon next to this option will hide all the images on the page.

1675161221 262 3 Best Methods in 2023
1675161221 996 3 Best Methods in 2023

For the Challenger theme, head over to the customizer and select Show/Hide Elements:

1675161221 485 3 Best Methods in 2023

Then Blog & Archives:

1675161221 491 3 Best Methods in 2023

Then, select No under Show the Featured Images.

1675161221 132 3 Best Methods in 2023

All of the featured images will be hidden from the WordPress blog.

1675161221 199 3 Best Methods in 2023

Using the steps in the last two sections works across all your articles. But what if you want to only hide individual featured images?

The easiest way is to not upload a post image in the first place.

The problem with this method is that there won’t be an image displayed on the blog roll or post archives page either.

Advertisement

If that’s okay with you, then you can skip this step.

However, if you want to display images on the blog roll but not on the individual post, then here’s the answer.

Most premium themes, such as Astra or GeneratePress give you the option to switch it off.

Here’s what it looks like in GeneratePress:

1675161221 463 3 Best Methods in 2023

You can toggle this option off in each of your articles individually. This is usually only a feature in premium plugins though.

The workaround for this is to use CSS, which I’ll show you how to do later in this post.

How to Disable Featured Images in a WordPress Post Using a Plugin

What if you’re using a free theme that doesn’t let you hide the featured image in a WordPress post?

Advertisement

The best option would be to upgrade to the premium version of the theme you’re using.

But, if you don’t want to do that or the premium version doesn’t let you, then this method will work.

The best WordPress plugin I found to hide images from a single post is the Hide featured image on all single page/post plugin:

1675161221 201 3 Best Methods in 2023

All you have to do is install and activate it, and it removes all featured images on blog posts.

1675161221 653 3 Best Methods in 2023

There were a couple of problems with this method, though.

It doesn’t remove images from the achieves page, and for some themes, it didn’t work at all.

Let’s look at the last method on how to hide the featured image in a WordPress post by using some CSS code.

If you’ve tried the previous methods and, for whatever reason, they didn’t work, then try this.

Advertisement

First, define the target CSS code by right-clicking an articles featured image and select Inspect:

1675161221 892 3 Best Methods in 2023

This will open up the developer tool in your browser. Hover over the image and click it to highlight the code in the window:

1675161221 693 3 Best Methods in 2023

What we are looking for is the HTML and CSS class that places the image on the page. In the code above, any of these will target the featured image:

  • ct-featured-image
  • ct-image-container
  • wp-post-image

Now open up the theme option tool and navigate to Additional CSS:

1675161221 634 3 Best Methods in 2023

Take one of the CSS classes from your theme that displays the image. I’m targeting the CSS class that is the furthest away from the image.

If you target the image itself, you might be left with styles on the page, leaving things like padding behind.

For example, if I target the code wp-post-image, it leaves me with too much space at the top of the article:

1675161221 386 3 Best Methods in 2023

The code looks like this:

.ct-featured-image {
 display: none;
}

All you have to do is change ct-featured-image with the CSS class you have defined in your own theme.

The display: none; text will hide anything inside the HTML with the class you’ve targeted.

Here’s the result:

Advertisement
1675161221 24 3 Best Methods in 2023

If you want to hide the image on the blog archive page, do the same, but target the correct CSS class for that page.

In my case, it’s this code:

1675161221 468 3 Best Methods in 2023

And when I add the custom CSS code to the customizer, here’s what the blog archives page looks like:

1675161221 55 3 Best Methods in 2023

Just remember that if you’re using a different theme, then your code will be different. Therefore, it might take a bit of trial and error to get it to work if you’re new to editing CSS.

An alternative method is to use the plugin CSS Hero or check out our post on how to edit code in WordPress.

Conclusion

There you have it. If you want to know how to remove the featured image from a WordPress post, these methods are bound to help.

It should be as simple as switching them off in the theme’s customizer. However, you might need the premium version of the theme to do that.

If that’s your case, you can use a plugin or CSS code instead.

To learn more about CSS, check out our post on how to edit CSS in WordPress.

Advertisement



Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address

AFFILIATE MARKETING

How to Control the Way People Think About You

Published

on

How to Control the Way People Think About You

Opinions expressed by Entrepreneur contributors are their own.

In today’s digital age, where personal branding and public perception play a vital role in success, strategic PR efforts have become more important than ever. Ulyses Osuna, the founder of Influencer Press, joined our show to share valuable insights on the significance of PR, the evolving landscape, and the keys to achieving business growth while maintaining a fulfilling personal life.

One of the key takeaways from the conversation was the importance of strategic PR efforts in building a personal brand and shaping public perception. Ulyses emphasized that PR is not just about getting media coverage; it’s about controlling the narrative and shaping how others perceive you. By strategically positioning yourself and your brand through effective PR, you can influence public opinion and establish yourself as an authority in your field. Another crucial aspect discussed was the power of leveraging relationships and connections.

Ulyses highlighted the “Buglight Concept,” which involves utilizing the support and connections of others to achieve success. By building strong relationships and leveraging the networks of influential individuals, you can significantly expand your reach and influence. Ulyses’s own success with Influencer Press is a testament to the power of connections in the PR world. While professional success is undoubtedly important, Ulyses also stressed the significance of balancing personal time and fulfillment. In the pursuit of business growth, it’s easy to neglect personal well-being and relationships. However, Ulyses emphasized that true success lies in finding a balance between professional achievements and personal happiness.

By prioritizing personal time and fulfillment, entrepreneurs can sustain long-term growth and avoid burnout. In the ever-evolving landscape of PR, Ulyses highlighted the need for a clear mission when seeking press coverage. He emphasized the importance of aligning your brand with a cause or purpose that resonates with your target audience. By having a clear mission and purpose, you can attract media attention that aligns with your values and goals, ultimately enhancing your brand’s reputation and reach. Additionally, Ulyses discussed the importance of pricing services correctly and finding the right balance between personal involvement and business scalability.

Advertisement

The conversation also touched upon the dynamics of client relationships and the impact of showcasing external support. Ulyses emphasized the value of building strong relationships with clients and going above and beyond to exceed their expectations. Furthermore, he highlighted the importance of showcasing external support, such as media coverage or endorsements, to establish credibility and attract new clients. Ulyses’s own podcast, The Blacklist, where he shares insights and interviews successful entrepreneurs, was also discussed. He explained that launching the podcast was a way to give back to the entrepreneurial community and share valuable knowledge.

By continuously learning from others and implementing breakthrough ideas, Ulyses emphasized the importance of immediate action and continuous improvement for business growth. In conclusion, strategic PR efforts are essential for building a strong personal brand and controlling the narrative in today’s digital age. By leveraging relationships, finding a balance between personal and professional life, and having a clear mission, entrepreneurs can shape public perception, expand their reach, and achieve long-term success. Ulyses Osuna’s insights serve as a valuable guide for those looking to navigate the ever-changing landscape of PR and personal branding.

About The Jeff Fenster Show

Serial entrepreneur Jeff Fenster embarks on an extraordinary journey every week, delving into the stories of exceptional individuals who have defied the norms and blazed their own trails to achieve extraordinary success.

Subscribe to The Jeff Fenster Show: Entrepreneur | Apple | Spotify | Google | Pandora

Source link

Advertisement
Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

AFFILIATE MARKETING

Set Your Team up for Success and Let Them Browse the Internet Faster

Published

on

Set Your Team up for Success and Let Them Browse the Internet Faster

Disclosure: Our goal is to feature products and services that we think you’ll find interesting and useful. If you purchase them, Entrepreneur may get a small share of the revenue from the sale from our commerce partners.

According to TeamStage, 31 percent of employees waste about a half hour each day, and the top 10 percent of them can waste as much as three hours in a day. Part of that might be attitude, but the other part might be hangups caused by internet speed and advertisements. To nip that lost time in the bud, consider equipping yourself or your team with a tool to help stay on task.

From April 15 through 21, this five-year subscription to Control D Some Control Plan is on sale for just $34.97 (reg. $120). This is the best price for this deal online. This tool is designed to help users browse and use the internet faster while also blocking ads.

Control D is described as a “one-touch solution” for taking control over the productivity of your computer and internet usage. The deal supports use for up to ten devices, and it empowers each user to block advertisements, enjoy faster browsing, and set internet safety rules and restrictions for kids.

Control D’s bandwidth is substantial. It can accommodate up to 10,000 custom rules, block more than 300 servers, support multiple profiles, and unlimited usage. This robust and well-designed tool is a reliable option for any business leader who wants to liberate themselves or team members from distractions online.

Control D is rated a perfect 5/5 stars on Product Hunt.

Advertisement

Remember that from April 15 through 21, this 5-year subscription to Control D Some Control Plan is on sale for just $34.97 (reg. $120)—the best price on the web.

StackSocial prices subject to change.

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

AFFILIATE MARKETING

Grab Microsoft Project Professional 2021 for $20 During This Flash Sale

Published

on

Grab Microsoft Project Professional 2021 for $20 During This Flash Sale

Disclosure: Our goal is to feature products and services that we think you’ll find interesting and useful. If you purchase them, Entrepreneur may get a small share of the revenue from the sale from our commerce partners.

If you’re in charge of a business and you don’t have a clear understanding of how to approach projects in an organized and effective manner, that’s a problem. Like many leaders before you, consider leaning on software that’s designed to streamline the project workflow for companies representing a wide range of industries.

A rate that will only be available from April 19 through 22, you can get Microsoft Professional 2021 for just $19.97 (reg. $249).

This well-reviewed software comes with a range of pre-built templates that you can use to set your project off on the right foot. It supports a number of helpful functions like building complex schedules with varying timelines, auto-populating those schedules in instances where it can, and submitting timesheets that can be distinguished by project work and non-project work.

Some additional features of Microsoft Project Professional that can help entrepreneurs and their teams include what-if scenario generation capabilities. Microsoft Project Professional also allows you to sync projects on your local server with those online, which is massively helpful for remote teams.

Its comprehensive and well-curated offerings are part of why Project Professional is rated an average of 4.7/5 stars on the Entrepreneur Store.

Advertisement



Don’t miss this limited-time opportunity to make a worthwhile investment in your business for the price of a beer at the ball game.

A price that will only last from April 19 through 22, you can get Microsoft Professional 2021 for just $19.97 (reg. $249).

StackSocial prices subject to change.

Source link

Keep an eye on what we are doing
Be the first to get latest updates and exclusive content straight to your email inbox.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
Continue Reading

Trending

Follow by Email
RSS