How to Easily Add Browser Tab Notification in WordPress

Do you want to add browser tab notifications for your website?

Adding browser tab notifications can be a great way to recapture a user’s attention, can lower the rate of cart abandonment, and increase sales and revenue.

In this article, we will show you how to add browser tab notifications in WordPress.

What is Browser Tab Notification?

A browser tab notification is when you change something on the tab for your website when the user is focusing on a different site in their browser.

By adding a browser tab notification feature on your WordPress website, you can grab the user’s attention the moment they open another tab to leave your page.

For instance, you can change the favicon of your website, animate it, write a custom message, or just flash the tab.

If you have an online store, browser tab notifications can really help you out. These notifications will bring back distracted customers, lower cart abandonment rates, and increase customer engagement.

Using this feature, you can alert your customers about cart abandonment or even offer a discount if they return their attention to your site.

Here is an example of a browser tab notification.

With that being said, we will show you how to add three different types of browser notifications to WordPress.

Install WPCode to Add Browser Tab Notifications

You can easily add browser tab notifications on your site by adding custom code in WordPress. Usually, you have to edit your theme’s functions.php file, but that can break your website with even a small error.

That’s why we recommend using WPCode, the safest and most popular code snippet plugin, used by over 1 million websites.

First, you will need to install and activate the free WPCode plugin. For more details, you can see our step to step guide on how to install a WordPress plugin.

Once you’ve activated the plugin, simply go to Code Snippets » All Snippets in your WordPress admin panel.

Just click on the ‘Add New’ button, which will then bring you to the ‘Add Snippet’ page.

Now, hover over the ‘Add Your Custom Code (New Snippet)’ option and click on the ‘Use Snippet’ button below it.

The plugin will then take you to the ‘Create Custom Snippet’ page.

No matter which type of browser tab notification you use, you will enter the code below using this page.

Type 1. Showing New Updates as a Browser Tab Notification

If you use the code below, your users will be alerted about any new updates that are being posted on your site. A number will appear in the tab to tell them how many new items they are missing.

For example, if you have an online store and you just added some new products to the inventory, the user will see the browser tab notification as a number that indicates how many new products were added.

You can see this in the image below:

Once you’re on the ‘Create Custom Snippet’ page, you need to name your snippet. You can choose anything that helps you identify the code. This is only for you.

Next, you’ll select the ‘Code Type’ from the drop-down menu on the right. This is JavaScript code, so simply click on the ‘JavaScript Snippet’ option.

Then, all you have to do is copy and paste the following code snippet into the ‘Code Preview’ area.

let count = 0;
const title = document.title;
function changeTitle() {
count++;
var newTitle = ‘(‘ + count + ‘) ‘ + title;
document.title = newTitle;
}
function newUpdate() {
const update = setInterval(changeTitle, 2000);
}
document.addEventListener(‘DOMContentLoaded’, newUpdate );

Once you’ve pasted the code, scroll down to the ‘Insertion’ section. You will find two options: ‘Auto Insert’ and ‘Shortcode.’

Simply choose the ‘Auto Insert’ option, and your code will be automatically inserted and executed on your site.

You can use the ‘Shortcode’ method if you only want to show new updates on specific pages where you add the shortcode.

Once you’ve chosen your option, return to the top of the page.

Click the switch from ‘Inactive’ to ‘Active’ in the top right corner, and then simply click the ‘Save Snippet’ button.

With that finished, your custom code snippet will be added to your site and start working.

Type 2. Changing Favicons as a Browser Tab Notification

With this method, you will show a different favicon on your site’s browser tab when users navigate away to another tab.

A favicon is a small image that you see on web browsers. Most businesses will use a smaller version of their logo.

Now, to change favicons on your browser tab, we will be using the WPCode plugin.

First, go to Code Snippets » All Snippets in your WordPress admin panel and then click on the ‘Add New’ button.

Next, simply hover over the ‘Add Your Custom Code (New Snippet)’ option and click on the ‘Use Snippet’ button below it

This will take you to the ‘Create Custom Snippet’ page. You can start by entering a title for your code snippet.

Now simply choose a ‘Code type’ from the dropdown menu at the right. For this code snippet, you need to select the ‘HTML Snippet’ option.

Once you’ve done that, simply copy and paste the following code in the ‘Code Preview.’

<link id=”favicon” rel=”icon” href=”https://example.com/wp-content/uploads/2022/10/favicon.png”/>

<script>var iconNew = ‘https://example.com/wp-content/uploads/2022/10/favicon-notification.png’;

function changeFavicon() {
document.getElementById(‘favicon’).href = iconNew;
}
function faviconUpdate() {
const update = setInterval(changeFavicon, 3000);
setTimeout(function() {
clearInterval( update );
}, 3100);
}

After you’ve pasted the code, simply remove the example favicon links from the code and replace them with your own images.

Remember, the images you choose as favicons should already be uploaded to the media library of your WordPress site.

Otherwise, the code will not work, and your favicon will display as normal.

Once you’ve pasted the links to your new favicons, scroll down to the ‘Insertion’ section. Here, you’ll find two options: ‘Auto Insert’ and ‘Shortcode.’

You can choose the ‘Auto Insert’ option if you want to automatically embed the code on every page.

To change the favicon on only specific pages, select the ‘Shortcode’ option and paste it into any shortcode-enabled area, such as sidebar widgets or at the bottom of the content editor.

Then, simply go to the top of the page and toggle the switch from ‘Inactive’ to ‘Active’ in the top right corner, and then click the ‘Save Snippet’ button.

After that, your favicon will start changing as a browser tab notification.

Type 3. Changing Site Title as a Browser Tab Notification

If you want to change the site title to recapture your visitor’s attention, then you can use this method.

By using this code snippet, your site title will change to show an eye-catching message when users switch to another tab in the browser.

We will be using the WPCode plugin to change your site title as a browser tab notification.

To get to the ‘Create Custom Snippet’ page, go to Code Snippets » All Snippets and simply click on ‘Add New’ button.

Then, simply select the ‘Add Your Custom Code’ option as shown in the examples above.

Now that you’re on the ‘Create Custom Snippet’ page, start by entering a title for your code snippet.

Next, you’ll have to select the ‘Code Type’ from the dropdown menu on the right. As this is JavaScript code, simply click on the ‘JavaScript Snippet’ option.

After that, scroll down to the ‘Location’ option and click on the dropdown menu beside it.

From the dropdown menu, simply click on the ‘Site Wide Footer’ option.

Then, all you have to do is copy and paste the following code snippet in the ‘Code Preview’.

function changeTitleOnBlur() {
var timer = null;
var title = document.title;
var altTitle = ‘Return to this page!’;
window.onblur = function() {
timer = window.setInterval( function() {
document.title = altTitle === document.title ? title : altTitle;
}, 1500 );
}
window.onfocus = function() {
document.title = title;
clearInterval(timer);
}
}

changeTitleOnBlur();

Once you’ve pasted the code, you can now edit it and simply write whatever message you want to display on your browser tab in the code.

To write your desired message, simply go to the var altTitle = ‘Return to this page!’; line and remove the placeholder text with the message for your browser tab notification.

Next, scroll down to the ‘Insertion’ section, where you will find two insertion methods: ‘Auto Insert’ and ‘Shortcode.’

If you click on the ‘Auto Insert’ option, your browser tab notification will be active on every page. However, if you only want your eye-catching message on specific pages, you can choose the ‘Shortcode’ option.

For example, you might only want to add this code on the ‘Add to Cart’ page so that it can lower cart abandonment rates on your website.

If that is the case, you can choose the Shortcode option.

All that’s left after that is to go to the top of the page and toggle the switch from ‘Inactive’ to ‘Active’, then click the ‘Save Snippet’ button.

That’s it! Now, your browser tab notification will alert users who leave your site.

We hope this article helped you learn how to add browser tab notifications in WordPress. You may also want to see our tutorial on how to add web push notifications to your WordPress site and check out our top picks of must-have WordPress plugins to grow your site.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Easily Add Browser Tab Notification in WordPress first appeared on WPBeginner.

13 Best WordPress 404 Error Page Design Examples

Are you looking for the best 404 error page design examples?

The right 404 page will keep visitors on your site for longer and encourage them to convert. By creating an engaging, helpful, and entertaining 404 page, you can give visitors a great experience, even when they see an error.

In this article, we’re sharing some of the best 404 error page designs.

Why You Need to Optimize Your 404 Design

A 404 error happens when the server can’t reach the page someone is trying to visit. Instead of showing them a blank screen, the server displays a 404 page instead.

Most WordPress themes come with a basic 404 template, but these designs are usually basic and simple.

They also won’t show any content from your website, such as popular posts that the visitor may want to read, or your site’s navigation menu.

If you show visitors a boring, unhelpful 404 page then they’re more likely to leave your WordPress website, which will increase your bounce rate and hurt your WordPress SEO.

With that in mind, it’s smart to create a custom 404 page that has your own branding and content. You can also help visitors find what they’re looking for by adding search bars, menus, links, and other helpful content.

The easiest way to create a custom 404 design is by using the SeedProd plugin. It is the most popular drag and drop landing page builder, so you can create a custom 404 page without writing any code.

SeedProd also has lots of professionally-designed 404 templates to help you create a beautiful error page, fast.

Once you’ve installed SeedProd, it’s a good idea to turn to your competitors for inspiration. With that in mind, we’ve collected the best 404 error page designs for you to look at.

1. DFY

Many websites use countdown timers to create a sense of urgency and get more conversions using FOMO. However, DFY had made the unusual decision to add a countdown timer to their 404 page.

This timer counts down the seconds until the visitor is automatically redirected to the homepage. By creating a time limit, DFY immediately makes their 404 page more engaging and pushes visitors to make a decision before time runs out. It’s also an unusual design choice, so it’s guaranteed to grab the visitor’s attention.

The 404 page’s messaging adds to this sense of urgency, making this a very dramatic and compelling page design.

For more information about using time limits on your site, please see our guide on how to add a timer widget in WordPress.

2. OptinMonster

OptinMonster is one of the best email capture plugins for WordPress used by over 1.2 million websites. It has everything you need to turn visitors into subscribers and customers.

Unsurprisingly, OptinMonster uses their 404 page as a lead generation tool with an eye-catching animation and clear call to action.

Even better, their pitch relates to the visitor’s situation.

When someone lands on a 404 page, there’s a big chance they’ll give up and abandon your website, since they can’t find what they’re looking for.

OptinMonster’s pitch plays into this, by asking: ‘Did you know that over 70% of visitors who abandon your website will never return?’

Since the visitor is already thinking about website abandonment, they’re more likely to act on this statistic. The call to action then offers visitors a free ebook that promises to convert abandoning website visitors into subscribers.

Clicking on the ‘Download Now’ button opens a popup where the person can type in their email address and get their free download.

As we can see, OptinMonster uses the 404 error to their advantage by creating a pitch that feels very relevant and timely.

If you want to use your own 404 page for lead generation, then you can collect email addresses using SeedProd’s Giveaway, Contact Form, and Optin Form blocks.

3. Kualo

Many websites use gamification to build customer loyalty and keep people coming back to their site.

Kualo have taken this one step further and gamified their 404 page.

Instead of helping visitors find their way back to the main Kualo website, the 404 page challenges them to a space invaders game.

This turns a frustrating error message into a fun surprise.

Even better, when you run out of lives Kualo gives you an incentive to carry on playing.

The popup offers players a discount on hosting if they manage to score over 1000 points. This is a perfect example of a 404 page that keeps visitors on your website for longer, and adds value to the user experience.

4. TripAdvisor

TripAdvisor’s 404 page is fun and functional, and opens with a joke that’s specific to the travel industry.

When someone lands on your 404 page, they may be frustrated with their experience. Humor can be a great way to re-engage these people.

Even better, the jokes always tie into the TripAdvisor brand.

Branding is one of the major benefits of replacing the standard WordPress 404 page with a custom design, and TripAdvisor’s page shows that branding isn’t just custom logos and images. The words on your 404 page are just as important as the graphics.

The 404 page also highlights all the major areas of the TripAdvisor website, which helps visitors find what they’re looking for.

Since navigation is so important, we recommend looking at SeedProd’s Nav Menu block as it lets you build all kinds of menus directly inside the page editor.

5. Brett Terpstra

At first glance, Brett Terpstra’s 404 page may look basic but the real power lies in its list of suggested posts.

Brett Terpstra’s 404 page shows a list of posts containing keywords related to the link the visitor was trying to access when they got the 404 error.

It’s a simple trick that adds a lot to the visitor experience.

Personalized content can make your site more useful, engaging, and appealing so it makes sense to extend this to your 404 page.

To learn more about targeted content, please see our guide on how to show personalized content to different users in WordPress.

6. Constant Contact

Constant Contact is another 404 page that uses humor to win over frustrated visitors. The email service provider uses informal language to appeal to their target audience, while also giving visitors an easy route back to the homepage.

If you scroll down the page, then you’ll find links to some other important areas of the Constant Contact website.

However, what we really like is the short hover animation that plays every time you move the mouse over one of the blue blocks.

Animation can make a page more engaging, and the multiple hover animations creates a storytelling element as the visitor moves around the 404 page.

There are a few different ways to animate your 404 page, including highlighting and rotating your text using the SeedProd Animated Headline block. For more information, please see our guide on how to add CSS animations in WordPress.

7. IMDB

Most people will encounter your 404 page when looking for something else entirely. Since the 404 error is unexpected, it’s important to reassure visitors that they’re still on your site by maintaining brand familiarity.

IMDB do this in a very subtle and light-hearted way, by showing a famous quote from a movie or TV show.

They also include a link to learn more about the TV show or movie that they’re quoting.

In this way, IMDB’s 404 page reinforces their brand while also giving visitors a fun way to explore their content.

Showing random quotes on your 404 page can be fun and engaging. However, it’s still a good idea to provide links to your site’s most important content, just in case the visitor isn’t interested in the link that you’ve chosen at random.

IMDB shows this doesn’t have to be complicated, by including a link to their homepage.

8. Steve Madden

Steve Madden tries to turn an error message into sales by showing their best selling products on the 404 page.

Even better, they’ve added filters so customers can browse the different products directly from the 404 page.

If you run an online store, then you can easily display your most popular products, products that are on sale, your newest products, and more. Simply add the ‘Best Selling Products’ block to your 404 page and SeedProd will find these products and then add them to your 404 page automatically.

When designing your own 404 page, it’s a good idea to use the same header and footer as the rest of your website. This will reinforce your branding and stop visitors from wondering whether they’re in the right place.

This is exactly what we see with Steve Madden’s 404 page, but we particularly like how much content they manage to fit into these two small areas.

The header and footer helps visitors jump straight to any part of the Steve Madden store, or even third-party sites such as the company’s Twitter and Facebook page.

They even provide access to interactive areas, including a smart product search bar.

9. Apartment Therapy

This 404 design from Apartment Therapy immediately catches the visitor’s attention with a big hero image.

Apartment Therapy also uses this space to reinforce their brand identity, by showing a stylish photo of a kitchen along with a joke about washi tape.

If you want to add a hero image to your design, then SeedProd has lots of ready-made hero sections. These are collections of images, call to actions, and even simple lead collection forms that you can add to your 404 design with a click of a button.

There’s even a section that would look right at home on the Apartment Therapy website.

10. Screaming Frog

Similar to some of the other 404 pages on this list, Screaming Frog uses humor to try and engage with visitors.

However, unlike the other businesses on this list, Screaming Frog creates a tool that helps website owners find and fix broken links. Their 404 page wastes no time pointing out the irony of the Screaming Frog website having a broken URL.

By poking fun at themselves, Screaming Frog delivers a memorable 404 page that doesn’t take itself too seriously.

The animated background also helps this 404 design stand out from the crowd.

Videos and animations are a great way to make your 404 page more engaging. However, they can add to the 404 page’s loading times so we recommend following our tips to speed up WordPress performance, particularly if you’re using lots of large or high-resolution videos in your 404 design.

11. MonsterInsights

MonsterInsights is the best WordPress plugin for Google Analytics. It allows you to easily install Google analytics in WordPress and shows helpful reports in the WordPress dashboard.

The MonsterInsights is a good example of a branded page. As soon as visitors arrive on this page, they’ll see a unique graphic based on the MonsterInsights logo.

This is a fun way to let visitors know that they’re still on the MonsterInsights website, even if they’ve followed a broken link.

This page also explains what a 404 error is and suggests some things the visitor can do to fix the error. Helping people solve the 404 error themselves can improve the visitor experience, so it’s a good idea to include this information on your own 404 page.

Even if you encourage visitors to fix the problem themselves, it’s still important to include links to your site’s most important content. The MonsterInsights 404 page gives people a few options by including links to the support page, the MonsterInsights documentation, and the pricing page.

12. MAD

MAD has created a simple but highly interactive page by using toggles to create a 404 error message. You can remove this message by turning all the toggles off, or even create your own message by activating the toggles.

It’s a very straightforward but enjoyable experience that’s designed to get lots of interaction from visitors. It’s also a very unique 404 page that visitors will remember, and perhaps even share with other people.

This striking design proves that you can build a memorable and entertaining 404 page from a simple idea.

13. Southwest

Southwest’s 404 page tries to help visitors get back on track by explaining what a 404 is and why they may be seeing the error. They even suggest some possible fixes, which might be helpful if your target audience isn’t very familiar with 404 errors.

Where this design really stands out is the sheer number of links it manages to display and how neatly these URLs are organized.

If you scroll to the bottom of the screen, then you’ll notice social media links, contact information, a link to join their email list, and dozens of other links all arranged in clear and user-friendly categories.

The Southwest 404 page is a great example of how much information you can pack into a page without overwhelming the visitor.

Here, the right layout is key and Southwest does a great job of using categories, lists, and different sections to create a 404 page that’s information-packed but still easy to read.

We hope this article has helped you find the best 404 error page design examples. You may also want to check out our guide on the best WordPress page builder plugins and our comparison of best email marketing services to turn potential leads into paying customers.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post 13 Best WordPress 404 Error Page Design Examples first appeared on WPBeginner.

21 Best RTL WordPress Themes (Right to Left Language)

Are you looking for the best WordPress RTL themes?

RTL (Right to Left) themes are designed to work perfectly with languages written in the right to left direction. These include Hebrew, Arabic, Farsi (Persian), Urdu, and more.

In this article, we will show you some of the best RTL WordPress themes that you can try on your website.

Building a WordPress Website in RTL Languages

WordPress is an ideal platform to create a website in any language, including languages written in RTL (right to left) direction.

There are two types of WordPress websites. These are WordPress.com, which is a hosted solution, and WordPress.org, which is a self-hosted platform.

For more details, take a look at our article on the difference between WordPress.org vs WordPress.com.

For your website, you need to use self-hosted WordPress.org. It gives you all the flexibility and features you need to set up an RTL website.

To start a WordPress website, you will need a domain name. This is your website’s address on the internet, like wpbeginner.com. You also need a WordPress hosting account.

We recommend using Bluehost. They are one of the largest web hosting companies and an officially recommended WordPress hosting provider.

For WPBeginner users, Bluehost offers a free domain name, a free SSL certificate, and a BIG discount on web hosting.

After signing up for hosting, use our article on how to install WordPress for full details on setting up WordPress on your site.

Now, let’s take a look at some of the best WordPress RTL themes that you can use.

1. Astra

Astra is one of the most popular WordPress themes on the market. It comes with dozens of starter sites and supports RTL languages to launch your website quickly.

The theme is compatible with WordPress drag and drop page builder plugins such as Elementor for customization. You can also use the WordPress live customizer to make changes to your website.

Astra is a fully responsive WordPress theme, so your site will look great on all devices. You can easily include Adsense ads on your site, too.

2. Divi

Divi is a modern multipurpose WordPress theme designed for any type of website. It’s fully compatible with RTL languages and easily lets you create a website in any right-to-left language.

It features a built-in page builder plugin, color choices, parallax effects, a custom header, and more. Divi is easy to set up without editing any code as it comes with hundreds of starter sites, suitable for all sorts of businesses and non-profit organizations.

Using the Divi theme options, you can add a custom logo, social media icons, and a favicon.

3. OceanWP

OceanWP is a free WordPress theme with premium-like features and options. It’s highly flexible and offers a 1-click demo content importer to get started in just a few clicks.

Inside, you will find RTL language support, eCommerce integration, custom colors, font choices, and powerful extensions.

OceanWP has a fast page load time. This is good for your WordPress site’s SEO (search engine optimization), helping you to rank well in Google and other search engines.

4. Hestia Pro

Hestia Pro is a premium WordPress theme for bloggers and businesses. It is RTL-ready out of the box, and you can also use it on multilingual websites.

It comes with a companion plugin to add client testimonials, services, and a custom homepage section.

Hestia is compatible with page builder plugins, giving you lots of customization options. It also works well with bbPress if you want to add a forum to your website.

5. Ultra

Ultra is a classic WordPress multipurpose theme. It comes with beautiful typography and color choices that make your content pop out.

The theme is translation ready and supports RTL languages. It has multiple widget areas, template choices, and layout options to design your multilingual website easily. You can also add custom CSS using the WordPress live customizer.

6. Parallax

Parallax is a stylish one-page WordPress theme for all business websites. The homepage features a fullscreen background image and stunning parallax effects.

It includes several header styles, a portfolio section, a team members section, animated progress bars, and a separate RTL stylesheet. It has a custom theme options panel to make changes to your website.

7. eCommerce Fashion

eCommerce Fashion is a stunning WordPress theme for business websites and blogs. It comes in dozens of beautiful color schemes and has several navigation menu locations, RTL language support, built-in Google Fonts, and more.

The theme has multiple header and footer layouts to fully customize your theme. It also includes image and carousel sliders to engage your users.

8. Benson

Benson is a beautiful WordPress photography theme. It features a fullscreen homepage layout and works with your favorite translation plugin to create an RTL (right-to-left) website.

Plus, it comes with multiple image layouts, video and slideshow support, custom widgets, and color choices. It integrates with page builders such as Visual Composer for quick setup and customization.

9. Fargo

Fargo is a stylish WordPress wedding photography theme with one-page and multi-page layouts. It comes with interactive homepage elements, parallax scrolling, and support for RTL languages.

It has unlimited color choices, a 1-click demo content importer, custom backgrounds, and mega menus. It makes a great WooCommerce theme to start your online store easily.

You can also add WooCommerce plugins to extend your online store options.

10. Inspiro

Inspiro is an elegant WordPress photography and videography theme. It’s multi-language ready and supports RTL languages to create a website in any language.

The theme features include a sliding sidebar, video embeds, a homepage slideshow, a responsive gallery, and built-in templates. It integrates with Beaver Builder to design your custom page templates without writing any code.

11. Gumbo

Gumbo is a stunning WordPress podcast theme built specifically for podcasts, audio, and video websites. It’s RTL-ready and lets you display your podcasts in multiple languages.

It supports third-party audio sources, layouts, videos, and featured sliders. Gumbo has dozens of page builder settings to add your content and set up a website.

12. Agency

Agency is a great business WordPress theme for companies, agencies, and designers with complete RTL support. It includes a beautiful portfolio section with each item capable of showing a single image or a gallery carousel.

It also comes with sections for testimonials, team members, and highlights. This makes it easy to offer a great user experience. Agency is easy to set up and includes a demo content importer, page builder, and custom theme options page.

13. Writee

Writee is a free WordPress blogging theme suitable for authors, writers, and bloggers. It features a minimalist layout with a featured content slider on the top of your homepage.

Writee has a simple setup process. All theme options can be configured using the WordPress live customizer in your WordPress admin panel.

14. Neve

Neve is an excellent WordPress multipurpose theme designed for all kinds of websites, including one-page websites. It comes with dozens of starter sites and is translation ready to create a multilingual and RTL website easily.

Neve offers drag and drop components to customize your header and footer. Plus, it has built-in optimization for speed and performance. This helps make your website fast and SEO friendly.

15. Noto

Noto is a classic WordPress theme for writers and bloggers. It has a black-and-white layout with light colors, making your content highly readable.

The theme is translation ready and supports RTL languages seamlessly. It comes with a few homepage widget areas, landing pages, a custom header, and more.

16. Credence

Credence is a free WordPress theme with a minimal layout design. It’s well-suited for business and professional websites.

It has a full-width template, custom logo, color choices, and sidebars. With RTL language support, you can easily make a website in any right-to-left language.

17. Fullscreen

Fullscreen is a gorgeous WordPress theme suitable for photographers, artists, and designers. It comes with fullscreen galleries to showcase your work.

It includes custom widgets for featured posts and recent Tweets, a minimalist navigation menu, a blog section, and a contact form page. You also get multiple theme skins and styling options.

18. Balance

Balance is a flexible WordPress eCommerce theme to start an online store. It has multi-language and localization support to translate your website to any language.

Inside, you’ll find built-in pages and a 1-click demo content importer. You just need to replace the content with your own to create your website or online store.

Balance uses responsive design and is retina ready. This means it will look great on all mobile devices.

19. Spencer

Spencer is a beautiful WordPress business theme for startups and entrepreneurs. It comes with a blog page template to start your personal blog quickly.

It has a sticky menu, custom colors, a newsletter signup form, a call-to-action button, and more. The theme integrates with WPML and supports RTL languages out of the box.

20. Gema

Gema can be used as a stylish WordPress magazine theme or personal WordPress blog theme. It has a beautiful layout design with featured content sections on the homepage.

The theme includes an image gallery, custom logo, layout options, color schemes, and crisp typography. It integrates with WordPress translation plugins to let you create an RTL-supported blog easily.

21. Felt

Felt is a WordPress magazine theme built specifically for online publishers, magazine membership sites, and entertainment blogs. It fully supports video embeds to add visual content to your website.

It has a widgetized homepage, a customizable header, and multiple layout options. Felt is fully translation ready and can be used to create RTL websites.

We hope this article helped you find the best WordPress RTL themes for your website. You may also want to check out our guide on the best WordPress plugins to add extra features to your site.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post 21 Best RTL WordPress Themes (Right to Left Language) first appeared on WPBeginner.

How to Hide the Title for Selective WordPress Posts and Pages

Do you want to hide the title for selective WordPress posts and pages?

Titles can be helpful for both search engines and visitors, but not every page needs to display a title depending on its design.

In this article, we will show you how to hide the title for specific WordPress posts and pages.

Why Hide the Title on Specific WordPress Posts or Pages?

When you create a WordPress page or post the first thing you’ll see is an ‘Add title’ field where you will type your title.

Most WordPress themes show this title at the top of the page or post. A descriptive, relevant title can let visitors know they’re in the right place and what to expect from this page.

Titles may be helpful, but not every page or post needs a title. Your website’s homepage is one common example.

At other times you may want to show the page’s title in a different area. For example you might start your landing page with an eye-catching banner, and then show the title further down the page. 

In this guide, we’ll be covering three different methods to hide the post or page title in WordPress. Simply click the links below to jump to the method you prefer.

Method 1: Remove All Post Titles in the Full Site EditorMethod 2. Hide Titles on Specific Posts or Pages Using CSSMethod 3. Hiding Selective WordPress Titles Using a PluginMethod 4. Hiding Selective WordPress Titles in Custom Page Designs

Method 1: Remove Post Title Using Full Site Editor

If you’re using WordPress 5.9 or later, and have a WordPress theme that supports full site editing, then you can use this method to remove the title from all posts or all pages.

Not sure if your theme support full site editing?

If it does, then you’ll see the menu option Appearance » Editor available in your WordPress dashboard.

After clicking on ‘Editor’, the full site editor will launch.

From here, you’ll need to select the template you want to edit by clicking on the dropdown at the top of the page, and then clicking on ‘Browse all templates’.

In this example, we’ll edit the Single Post template so that we can hide all our blog post titles.

To hide the title, first you’ll need to click on the blog post title. Then, simply click on the three dots options menu and select the ‘Remove Post Title’ option at the bottom.

Don’t forget to click the Save button at the top of the screen after you’re done customizing the template.

That’s it, you’ve hidden the title on all your blog posts.

If you’d like a way to hide the title only on specific posts or pages, the next method should work for you.

Method 2: Hiding Selective WordPress Titles Using CSS

You can hide a page or post’s title by adding custom CSS code to the WordPress Customizer. This method simply hides the title from your visitors, but it still loads in the page’s HTML code.

This means that search engines can still use the title to help them understand your page’s contents, which is good for your WordPress website’s SEO and can help you get more traffic.

We’ll show you how to hide the title on specific posts or pages, or on all your posts and pages.

How to Hide the Title on a Specific WordPress Post or Page With CSS

To hide a page or post’s title using CSS, you just need to know its ID.

In your WordPress dashboard, either go to Posts » All Posts, or Pages » All Pages. Then find the page or post where you want to hide the title.

You can now open this post or page for editing.

Now simply take a look at the URL in your browser’s address bar.

You should see a ‘post=’ section followed by a number. For example ‘post=100.’

This is your post’s ID. Make a note of this number, as you’ll be using it in your CSS code.

You can now go to Appearance » Customize.

This launches the WordPress Customizer.

In the sidebar, simply click on Additional CSS.

Now scroll to the bottom of the sidebar. 

You should now see a small text editor. This is where you’ll type your CSS code.

If you want to hide the title for a post, you’ll need to use the following code.

Just make sure you replace the ‘100’ with the post ID you got in the previous step.

.postid-100 .entry-title {
display: none;
}

If you want to hide a page’s title, you’ll need to use some slightly different code.

Once again make sure you replace the ‘100’ with your real page ID.

.page-id-100 .entry-title {
display: none;
}

Next, just scroll to the top of the page.

You can then click on the blue Publish button.

Now if you check this page or post, the title should have disappeared. 

Is the title still there? 

If this method hasn’t worked for you, your WordPress theme may be using a different CSS class. This means your page or post ID will be different from the number shown in its URL. 

To get the correct ID, you’ll need to use your browser’s developer console. 

To start, head over to the page or post on your WordPress website. You can then open your browser’s developer console. 

This step will vary depending on which web browser you’re using. For example, if you have Chrome then you can use the Control+Shift+J keyboard shortcut on Windows, or the Command+Option+J shortcut on Mac.

Chrome users can also Control+click anywhere on the page or post, and then select Inspect. 

If you’re unsure how to open the developer console, you can always check your browser’s website or official documentation for more information.

In the developer console, click on the three dotted icon. You can then select ‘Search.’

You should now see a search bar towards the bottom of the developer console.

In this bar, type <body class, then simply press the Enter key on your keyboard.

If you’re looking at a WordPress page, you should see something similar to the following.

<body class=”page-template-default page page-id-78 logged-in admin-bar
no-customize-support wp-embed-responsive is-light-theme no-js singular”>

In the sample code above, you can see that the ‘page-id’ value is 78.

If you’re inspecting a WordPress post, the console should show something like:

<body class=”post-template-default single single-post postid-100 single-format-standard logged-in admin-bar no-customize-support wp-embed-responsive is-light-theme no-js singular”>

In that example, the ‘postid’ value is 100. You can now use this value with the CSS code we provided in the previous step.

Simply add this code to your website using the WordPress Customizer, following the process described above.

You can now take a look at the page or post. The title should have vanished.

How to Hide the Title on All Posts or Pages with CSS

To hide the titles for all your pages and posts, copy/paste the following into the text editor.

.entry-title {
display: none;
}

Do you want to hide the titles for all your pages, but not your posts? To hide all the page titles, copy/paste the following into the small text editor.

.page .entry-title {
display: none;
}

Another option is hiding the title for all of your posts. You can do this using the following CSS.

.post .entry-title {
display: none;
}

Sometimes you may want to hide the titles for all your posts and pages.

To do that, add the following.

.entry-title {
display: none;
}

Method 3: Hiding Selective WordPress Titles Using a Plugin

You can easily hide the title for selective posts and posts using Hide Page And Post Title. This free plugin lets you hide the title of any page, post, or even custom posts types.

First you’ll need to install and activate the Hide Page And Post Title plugin. If you need help, you can follow our tutorial on how to install a WordPress plugin.

Upon activation, open the page, post or custom post you want to edit.

Now simply scroll to the bottom of the right sidebar.

Here you’ll find a new ‘Hide Page and Post Title’ box.

To hide the title, just click to select the ‘Hide the title’ checkbox. You can then update or publish this post as normal.

That’s it! If you visit the page you’ll notice that the title has disappeared.

At some point you may need to restore this page or post’s title.

This is easy. Just open the page or post for editing. Then click to deselect the same ‘Hide the title’ checkbox. 

Don’t forget to click on the Update button at the top of the screen. Now if you visit this page, the title should have reappeared.

Method 4: Hiding Selective WordPress Titles Using SeedProd

Another option is to hide the title using a page builder plugin.

SeedProd is the best WordPress page builder plugin in the market. You can use this plugin to easily creating custom pages or even create your own WordPress theme.

This means you can easily hide the title on a custom page design or your theme.

SeedProd comes with a template library with over 150+ templates you can use as a starting point for your page designs. Let’s see how easy it is to remove the title from one of these theme templates. 

In your WordPress dashboard go to SeedProd » Template Builder. You can then click on the Themes button.

This launches the SeedProd template library. You can now browse through all of the different designs.

To take a closer look at a template simply hover your mouse over it. Then click on the magnifying glass icon. 

This will open the template in a new tab. 

When you find a template that you want to use, hover your mouse over that template. Then simply click on the checkmark icon.

This adds all of this template’s designs to your WordPress dashboard. 

There are usually different designs for different types of content. 

You can use these templates to hide the title for the different content types. For example, many SeedProd templates have a separate design for the homepage.

To hide the title for your homepage, you would simply need to edit the Homepage template.

To hide the title for all your posts, you’ll typically need to edit the Single Post template. 

Meanwhile if you want to hide the title from your pages you’ll usually edit SeedProd’s Single Page template.

To edit a template hover your mouse over it. 

You can then go ahead and click on the Edit Design link.

This opens this design in the SeedProd drag and drop editor. To hide the title, find either the Post or Page Title. 

Once you spot this title, give it a click. SeedProd’s sidebar will now show all of the settings for the selected area.

At the top of this panel you should see either Post Title or Page Title.

After confirming that you’ve selected the right area, hover over the Post Title or Page Title in the main SeedProd editor.

You should now see a row of controls. 

To remove the title from this design just click on the Trash icon.

SeedProd will ask whether you really want to delete the title. To go ahead and remove it, simply click on ‘Yes, delete it!’

The title will now disappear from your design. 

To see how this will look on your website click on the Preview button.

When you’re happy with your design click on the Publish button.

Depending on how your site is set up, you may need to remove the title from some additional templates. For example you might want to hide the title for all your posts and pages. In this case, you would typically need to edit both the Single Post and Single Page templates. 

If you’re unsure then it may help to review all the designs that make up your theme. To do this simply go to SeedProd » Theme Builder

You should now see a list of all your different designs. You can now edit any of these templates following the same process described above. 

FAQs About Hiding the Title for Selective Pages and Posts

Before hiding your page or post titles, there are some effects you should think about, such as the impact this action will have on your website’s SEO.

That being said, here are some of the most frequently asked questions about hiding the page and post title. 

Why can’t I just leave the ‘Add title’ field blank? 

When it comes to hiding the title there seems like an easy fix. As you’re creating your page, just leave the title field blank. 

At first this does seem to fix the problem. WordPress will display this post to visitors without a title. However, there are a few problems.

Firstly, this page or post will appear as ‘(no title)’ in your WordPress dashboard. This makes it more difficult to keep track of your pages. 

If you create lots of different ‘(no title)’ posts, then how do you know which is your contact us page? And which page is your homepage? 

WordPress also uses the title to create the page’s URL.

If you don’t provide a title, then by default WordPress uses a number instead, such as ‘www.mywebsite/8.’

Visitors often use the URL to help them understand where they are on your WordPress website, so ‘www.mywebsite/8’ isn’t particularly helpful.

This vague URL is not an SEO-friendly permalink, so search engines may have a harder time understanding what your content is about and including it in the relevant search results.

Will hiding the page or post title affect my SEO?

If you prefer to hide a page or post’s title, you’ll want to spend some extra time fine-tuning the rest of your WordPress SEO, including setting an SEO title. This will help ensure that the search engines understand your page’s content, even without the title.

Here you’ll need a good SEO plugin, since WordPress doesn’t let you do this by default.

We recommend using AIOSEO, the best SEO plugin for WordPress in the market. This beginner friendly SEO toolkit is used by over 3 million websites. 

If you need help getting started, then please refer to our guide on how to properly set up All in One SEO in WordPress.

To make sure your titles are optimized, you can see our guide on how to use the headline analyzer in AIOSEO.

We hope this article helped you learn how to hide the title for selective WordPress posts and pages. You can also go through our guide on how to choose the best web design software, and the best WordPress landing page plugins

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Hide the Title for Selective WordPress Posts and Pages first appeared on WPBeginner.

How to Show a Number Count Animation in WordPress

Are you looking for ways to display an animated number counter on your WordPress site?

Showing a number count helps capture your visitors’ attention and allows you to display milestones, satisfied customers, successful projects completed, and other important statistics on your website.

In this article, we’ll show you how to show a number count animation in WordPress.

Why Add a Number Count Animation in WordPress?

Showing a number counter on your WordPress website is a great way to engage users and capture their attention.

You can use it to display important stats on your site, like the number of monthly visitors or the number of articles on a WordPress blog.

Similarly, you can use an animated number count to display completed projects, the number of satisfied customers, the number of clients, milestones achieved by your business, and other crucial information.

For example, OptinMonster uses the number counter to show monthly visitor sessions optimized.

Adding and customizing a number count in WordPress usually requires editing code. This can be tricky for beginners who don’t know how to write code.

That said, let’s see how you can show an animated number counter in WordPress. We’ll cover 2 simple methods using a premium website builder and a free plugin.

You can click the links below to jump ahead to your preferred section.

Method 1: Show a Number Count Animation Using SeedProd

The best way to add an animated number counter in WordPress is by using SeedProd. It is the best WordPress website builder that offers a drag-and-drop page builder and lots of customization options.

For this tutorial, we’ll use the SeedProd Pro version because it includes advanced blocks and allows you to add a counter. There is also a SeedProd Lite version you can try for free.

The first thing you’ll need to do is install and activate SeedProd. If you need help, then please see our guide on how to install a WordPress plugin.

Upon activation, SeedProd will ask you to enter the license key. You can find the license key in your account area and the purchase confirmation email.

Next, you’ll need to head over to SeedProd » Landing Pages from your WordPress admin panel.

SeedProd lets you create professionally designed custom landing pages, including a coming soon page, maintenance mode page, login page, and 404 page.

Go ahead and click the ‘Add New Landing Page’ button.

After that, you can select a template for your landing page and show the animated number counter.

Simply hover over a template and click the orange check button.

A popup window will now open. Simply enter a page name and page URL.

After that, click the ‘Save and Start Editing the Page’ button.

This will launch the SeedProd drag-and-drop builder.

Next, you can edit your page template by adding different blocks or clicking existing elements on the page.

To add an animated number count, simply drag the ‘Counter’ block from the menu on your left and drop it onto the template.

After that, you can select the Counter block to customize it further.

For instance, there are options to change the starting and ending number in the counter, enter a number prefix and suffix, and edit the title.

Next, you can switch to the ‘Advanced’ tab under the Counter block settings on your left.

Here, you’ll find more options to change the style, color, spacing, font, and more for your Counter block.

After that, you can head to the ‘Page Settings’ tab at the top.

Now click the ‘Page Status’ toggle and change it to Publish.

Next, you can click the ‘Save’ button at the top and exit the landing page builder.

To see the animated number counter in action, go ahead and visit your website.

Method 2: Show a Number Count Animation Using Counter Number

Another way you can add number count animation in WordPress is by using the Counter Number plugin.

It is a free WordPress plugin that is easy to use and lets you create simple counter numbers for your site.

First, you’ll need to install and activate the Counter Number plugin. For more details, please see our guide on how to install a WordPress plugin.

Upon activation, you can go to Counter Numbers » All counters from your WordPress dashboard and click the ‘Add New Counter’ button.

After that, you can enter a title for your counter number.

In the free version, you can only select the plain design template. If you want more templates and customization options, then we suggest using SeedProd.

Next, you can add counter number details. There are options to edit the counter title, select an icon, and enter the counter number value.

You can add as many counter numbers as you want by clicking the ‘Add New Counterbox’ button at the bottom.

Besides that, you get more customization options from the panel on your right.

For example, the plugin lets you change the counter title color, number color, icon size, font size, font family, and more.

After making the changes, scroll back to the top and publish your counter.

Next, you can head to Counter Numbers » All counters from your WordPress dashboard.

Go ahead and copy the Counter Shortcode. It will look something like this:[COUNTER_NUMBER id=41]

Afterward, you can place your animated number count anywhere on your website, from posts and pages to sidebars.

Simply add a new post or page or edit an existing one. Once you’re in the content editor, simply click the ‘+’ sign and add a Shortcode block.

Next, you can paste the counter number shortcode in the block.

From here, preview and publish your page or post to see the animated number count in action.

We hope this article helped you learn how to show a number count animation in WordPress. You can also see our ultimate guide to WordPress security and our expert pick of the best WordPress plugins for small business websites.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Show a Number Count Animation in WordPress first appeared on WPBeginner.