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.

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.

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.

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.

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?

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.

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:

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.



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

Cyber Monday 2023: The best extended deals from Amazon, Walmart, Best Buy, Apple and more

Published

on

As a participant in multiple affiliate marketing programs, Localish will earn a commission for certain purchases. See full disclaimer below*

There is still time for Cyber Monday savings. If you didn’t have time to pick stuff up on Cyber Monday, don’t worry as many of your favorite brands still have extended Cyber Monday sales. Here is every major brand’s extended Cyber Monday and Black Friday 2023 sales that you need to know. Check out best Cyber Monday deals under $100 and best Cyber Monday deals on Amazon.

Deals from top retailers

Amazon

Amazon’s Cyber Monday event has ended, but there’s still time for holiday shopping with sales up to 71% on all things tech, household appliances and more.

Cyber Monday 2023 The best extended deals from Amazon Walmart

This is your last chance to get the Apple Airpods 2nd Gen for under $100.

1701217563 216 Cyber Monday 2023 The best extended deals from Amazon Walmart

The most powerful Beats headphones yet, the Studio Pro is on sale for more than 50%.

1701217563 213 Cyber Monday 2023 The best extended deals from Amazon Walmart

Hisense 58-Inch ULED 4K Smart Fire TV

The crisp Hisense TV is on sale for 41% off.

Walmart

Walmart’s Cyber Monday Deals is live until supplies last, with massive sales on items from Dyson, Sony, Apple and more.

PlayStation 5 Disc Console Marvel s Spider Man 2 Bundle 9fc9b318 ba6b 405b b92c bf0721b790f2.c760fb26883b8d4b58035c153ae089cb

PlayStation 5 Spider-Man 2 Bundle

The PS5 bundle comes with the hit Marvel’s Spider-Man 2 disc for 10% off.

Xbox Series S Xbox Wireless Controller Robot White 3 Month Game Pass b1d78fad 0369 42b4 8c24 ba8d60d2bcc4.299fa1cfbfe7b6c32f7965818e9003e7

The Xbox Series S bundle comes with an additional Xbox controller and a 3-month Game Pass subscription.

BISSELL Symphony All in One 1132A Steam Vacuum Cleaner Blue Silver 5d3b22b2 cf21 41c7 8196 5d2cd3e03607.b126797891bf30821ca852c907fabaa2

The fan-favorite Bissell Vac-and-Steam All-in-one is on sale for nearly $100 off.

Home Depot

Home Depot is offering Cyber Monday deals online and in stores now through 11/29, with up to 60% off on home appliances.

Best home products deals

HexClad Cookware

Gordon Ramsay’s favorite cookware brand is offering 50% off their excellent pan and pot sets for Cyber Monday 2023.

HexClad 12-piece Cookware Set

At 40% off, you could have Gordon Ramsey’s favorite 12-piece cookware set for the lowest price ever.

Dyson

Dyson deals are the best, with many of its revolutionary hair products and vacuums now on sale for up to 50%.

1701217563 385 Cyber Monday 2023 The best extended deals from Amazon Walmart

Dyson Supersonic Hair Dryer

Dyson’s revolutionary Supersonic Hair Dryer is on sale for the first time this year – grab this excellent product for 25% off.

West Elm

West Elm is giving 70% off on many of its best luxury furniture for extended Cyber Monday sales.

roar rabbit geo inlay nightstand 24

Roar & Rabbit Geo Inlay Nightstand

This beautiful nightstand is going for 30% off at West Elm.

Solo Stove

Solo Stove is the best fire pit retailer on the market, so get their warmth for up to 40% off.

MESA Stainless Flame On White?io=transform%3Afill%2Cwidth%3A1100%2Cheight%3A1100

Secure some holiday warmth with the table top Mesa fire pit for 22% off.

Tech and entertainment

Hulu

Take advantage of Hulu’s amazing Black Friday deal for a limited time! Subscribe to the Hulu (With Ads) plan for 99 per month for one year, current regular monthly price after. Get this deal now by clicking here. Ends 11/28/23. Eligibility restrictions and terms apply.

Best jewelry, clothing and fashion deals

Crocs

Crocs’ Cyber Week sale are hosting sales up to 50%.

crocs

The Classic Clog is a classic for a reason at 25% off.

UNIQLO

UNIQLO is having its only sale of the year, with amazing Cyber Week deals for your online shopping experience.

Nordstrom

Nordstrom has Cyber Monday deals until midnight tonight, offering up to 82% off across all categories like Nike, UGG, Calvin Klein, Tory Burch and more.

Lululemon

The popular athleisure wear company has a number of great extended Cyber Monday finds, especially in their “We Made Too Much” page for the holiday shopping season.

Best haircare and cosmetics deals

Find deals from Ulta, Sephora and more.

Ulta

Ulta’s Cyber Monday sales are now live and ends Tuesday November 28th, with up to 50% select beauty products.

The Walt Disney Co. is the parent company of Hulu and this ABC station.

* By clicking on the featured links, visitors will leave Localish.com and be directed to third-party e-commerce sites that operate under different terms and privacy policies. Although we are sharing our personal opinions of these products with you, Localish is not endorsing these products. It has not performed product safety testing on any of these products, did not manufacture them, and is not selling, or distributing them and is not making any representations about the safety or caliber of these products. Prices and availability are subject to change from the date of publication.

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

16 Common Blogging Mistakes

Published

on

16 Common Blogging Mistakes
Common blogging mistakes often derail even the most dedicated bloggers. From neglecting SEO strategies to ignoring audience engagement, these errors …

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

How to Make Money with Custom GPTs and ChatGPT

Published

on

Make Money with Custom GPTs

The new GPT store on ChatGPT is expected to be launched by OpenAI in December, there aere a number of other ways that you can make money with Custom GPTs and ChatGPT as well as the new store. In the dynamic and ever-changing digital world we inhabit, the emergence of Generative Pre-trained Transformers (GPTs), such as ChatGPT, signifies a major leap in the field of artificial intelligence. These sophisticated AI models are rapidly transitioning from being mere technological marvels to valuable assets in the business arena.

Entrepreneurs and forward-thinking innovators are now at the forefront, actively seeking out and experimenting with inventive and effective ways to harness the financial potential of these tools. This article aims to explore and elucidate a variety of practical and groundbreaking strategies. These strategies are not only innovative but also highly effective in tapping into the revenue-generating capabilities of custom GPTs and ChatGPT. We aim to provide a deeper understanding and fresh perspectives, moving beyond traditional methods and applications, thereby opening up new avenues for leveraging these advanced AI technologies in the commercial sphere.

1. Merchandise Sales Powered by GPTs

One of the most direct ways to monetize GPTs is through merchandise sales. For instance, imagine a custom GPT named ‘Sticker WHZ’ designed to create unique sticker designs based on user inputs. Such AI-powered creativity can be a game-changer in the custom merchandise sector. By integrating with platforms like Teespring, the entire process from creation to distribution can be streamlined, offering a novel avenue for e-commerce.

2. Tip Jars: A Simple Yet Effective Model

Tip jars represent a straightforward monetization method. A custom GPT, like ‘Grimoire GPT’, aimed at enhancing specific skills such as engineering, can include a feature allowing satisfied users to leave tips. Digital platforms like ‘Buy Me a Coffee’ and Patreon make it easy to set up and manage these donations, providing a steady income stream for creators and developers.

3. Consultation Calls Facilitated by GPTs

GPTs can serve as powerful lead generators for professional services. For example, a ‘GPT Idea Evaluator’ could offer initial assessments or advice, leading interested users to personalized, paid consultation calls. This approach not only monetizes the GPT service but also leverages its capabilities to enhance a consulting business. Scheduling and payment collection can be efficiently managed through tools like Calendly.

4. Affiliate Marketing: GPTs as Product Recommenders

Affiliate marketing, a well-established online revenue model, can be innovatively integrated with GPTs. These AI systems can be programmed to recommend products or services, embedding affiliate links within their responses. This method adapts well to a variety of niches, including physical goods and online courses, and can be a subtle yet effective monetization strategy.

5. Sponsorships Tailored for GPT Content

Similar to traditional digital content monetization, GPTs can feature sponsored links or product mentions in their outputs. This approach mirrors the sponsorship models seen in digital platforms like YouTube or newsletters, providing an opportunity for businesses to reach audiences through AI-generated content.

Summary

The potential of Generative Pre-trained Transformers (GPTs), particularly models like ChatGPT, in the arena of monetization, is both vast and multifaceted, presenting a rich tapestry of opportunities. These advanced AI tools are not just confined to one or two avenues of revenue generation; they open doors to a multitude of possibilities. From the more straightforward approaches like direct sales, where products or services are sold directly to the consumer, to the incorporation of virtual tip jars, where users can express their appreciation in monetary terms, the scope is wide-ranging. Additionally, the realm of affiliate marketing offers a unique opportunity where these AI tools can recommend products or services, embedding affiliate links to track and earn commissions on sales. Sponsorships, too, present a lucrative avenue, where GPTs can seamlessly integrate sponsored content or product mentions into their interactions, akin to sponsorship models in other forms of digital media.

Moreover, by deeply understanding and strategically leveraging the unique capabilities of GPTs, creators, and entrepreneurs can not only tap into existing revenue streams but also innovate and create new ones. This exploration and utilization of GPTs in commerce and digital innovation can lead to the breaking of new ground, pushing the boundaries of what is possible in digital commerce and AI technology. These AI models, thus, serve not just as tools for income but also as catalysts for unprecedented growth and innovation in the digital economy, redefining the way businesses operate and interact with their customers. The potential is limitless, and the opportunities are only bound by the creativity and ingenuity of those who harness the power of these transformative AI technologies.

Here are some more useful article on ChatGPT and custom GPTs:

Filed Under: Guides





Latest Geeky Gadgets Deals

Disclosure: Some of our articles include affiliate links. If you buy something through one of these links, Geeky Gadgets may earn an affiliate commission. Learn about our Disclosure Policy.



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