Monday, March 22, 2021

How to Create a Client Portal in WordPress

Do you want to create a client portal in WordPress?

A client portal allows you to create a dedicated area for clients where they can login to access documents, files, support, and more.

In this article, we’ll show you how to easily create a client portal in WordPress.

Creating a client portal in WordPress

Why and Who Needs a Client Portal in WordPress?

A client portal allows you to efficiently manage client resources online. This reduces support requests, allows clients to help themselves, and provides them a better user experience.

For instance, if you run a photography website, then your clients can download or upload files via their client dashboard.

Similarly, if you run a graphic design or web design agency, then you can use a customer portal where clients can access all the files and information they need.

Example of a client area created in WordPress

Any business that needs to communicate with clients online can benefit from creating a client portal in WordPress.

How to Create a Client Portal in WordPress

Each business has different requirements for its client portal. This is why you need a solution that is flexible, works with other WordPress plugins, and can be easily extended to match your business.

For this tutorial, we will be using MemberPress. It is the best WordPress membership plugin on the market and allows you to easily create members only content, create an account page, login, and registration forms, and more.

It comes with powerful display rules, full membership management, and the ability to create different levels of membership plans.

First, you need to install and activate the MemberPress plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit MemberPress » Settings page to enter your license key. You can find this information under your account on the MemberPress website.

MemberPress license key

Next, you need to switch to the ‘Payments’ tab and select a payment method to accept payments for membership subscriptions. You can also create free subscription plans if you want or manually add members by yourself.

MemberPress payment

MemberPress supports PayPal and Stripe. You can also use Authorize.net with their Plus and Pro plans.

After selecting your payment method, you’ll be asked to provide your account details. Once finished, click on the ‘Update Options’ button to save your changes.

Next, you are ready to create a membership plan. This is the subscription plan that you’ll add your clients to.

Simply go to the MemberPress » Memberships page and click on the Add New button.

Add a membership plan

On the next screen, you can give your membership plan a name and set a pricing option. Depending on how you manage your client-contracts, you can choose lifetime, expiring, or fixed expiring plans.

Client subscription plan

Next, you need to create access rules. This allows you to control which parts of your website you want to be protected and available to members-only.

Simply, go to the MemberPress » Rules page and click on the Add New button at the top.

Add new rule

On the next screen, first you need to choose which content you want to restrict under ‘Protected Content’.

MemberPress offers a whole range of options. You can select posts that match certain tags, categories, pages that are under the same parent page, single posts, or any URL.

Set up access rules

For instance, if you use a WordPress knowledge base plugin to manage documentation for clients, then you can restrict those articles to the membership plan. Similarly, you can also restrict any post, page, category, or tag to clients only.

Below that, you need to select who will have access to the protected content. We have chosen the membership plan we created earlier for our clients.

After you have added the access rules, click on the Save Rule button to store your settings.

Creating a Client Account Page in MemberPress

MemberPress allows you to easily create and manage an Account page. This is the page your clients will see when they login to their client account.

First, go to MemberPress » Settings page and switch to the ‘Pages’ tab. From here you can select the page you want to use as the account page.

Set up client account page

By default, MemberPress creates and uses the ‘Account’ page. You can use a different page if you want. After that, simply click on the Edit button to open the page and edit it.

You can edit the page just like you would edit any WordPress page. Any content you add here will be visible to everyone and not just your client.

Editing the Account page in MemberPress

However, you can add custom text here and use the ‘[mepr-account-form]’ shortcode to display the login form anywhere you want.

Account page preview

Customizing Client Account Page in MemberPress

One way to customize the account page in MemberPress is by simply editing it. However, any changes you add here will be visible to everyone and not just your clients.

To add content that is only visible to your clients, you can hide it using MemberPress shortcodes.

For instance, if you only want to show some content to the clients under the VIP membership plan, then you will wrap your content like this:

[mepr-active membership='186']

Client only content goes here

[/mepr-active]

Don’t forget to replace 186 with your own membership ID. You can view membership ID for any plans by visiting MemberPress » Memberships page.

Finding a membership plan ID in MemberPress

Save the changes you made to the Account page and visit your website to see it in action. You’ll need to login with an account with access to the membership plan you created earlier.

Account preview with members only content

Adding Tabs to The Accounts Page in MemberPress

By default, MemberPress will show Home, Subscriptions, Payments, and Logout tabs. If you are comfortable with adding custom code, then you can customize this to add more tabs and show more client-focused content there.

Let’s add a tab with a contact form and another one to list documents clients can access from their dashboard.

Simply add the following code to your theme’s functions.php file or a site-specific plugin.

function mepr_add_some_tabs($user) {
  $support_active = (isset($_GET['action']) && $_GET['action'] == 'premium-support')?'mepr-active-nav-tab':'';
  ?>
    <span class="mepr-nav-item premium-support <?php echo $support_active; ?>">
      <a href="/test4/account/?action=premium-support">Premium Support</a>
    </span>
  <?php
  $documentation_active = (isset($_GET['action']) && $_GET['action'] == 'documentation')?'mepr-active-nav-tab':'';
  ?>
    <span class="mepr-nav-item premium-support <?php echo $documentation_active; ?>">
      <a href="/test4/account/?action=documentation">Documentation</a>
    </span>
  <?php
}
add_action('mepr_account_nav', 'mepr_add_some_tabs');

function mepr_add_tabs_content($action) {
  if($action == 'premium-support'): //Update this 'premium-support' to match what you put above (?action=premium-support)
  ?>
    <div id="custom-support-form">
      // your contact form shortcode here
<?php echo do_shortcode(''); ?> 
    </div>
    
  <?php
  endif;
  if($action == 'documentation'): ?>
  <div id="documentation">
  // shortcode provided by your knowledge base plugin to list articles or manually add content here
<?php echo do_shortcode(' [knowledgebase] '); ?>

  </div>
<?php
 endif; 
}
add_action('mepr_account_nav_content', 'mepr_add_tabs_content');

As you can see we created two tabs, one to display our contact form created with WPForms and the other one to display our knowledge base articles.

We used shortcodes provided by both these plugins inside the code. However, you can also manually add any other content you want here.

Don’t forget to save your changes and preview your account page. This is how it looked on our demo website:

Account page tabs

Adding Custom Content for an Individual Client

MemberPress also allows you to manually modify the Account page for individual members and clients. Simply go to Users » All Users page and click on the ‘Edit’ link below the user you want to change.

Edit user account

Scroll down to the ‘Custom MemberPress Account Message’ and add the content you want to show to that specific client.

Adding content for specific clients

This area works like a regular WYSIWYG editor with formating toolbar at the top. You can also add images, links, shortcodes, galleries, videos, audio, and more.

Don’t forget to click on the ‘Update User’ button to save your changes.

Client specific message on the account page

Adding a Link to Client Area using MemberPress

Now that you’ve created and customized the client area. It is time to make it easily accessible for your clients.

Simply go to the Appearance » Menus page and add the Account page you created earlier to your navigation menu.

Adding the client area link to your navigation menu

You can click on the menu item to change its title. For instance, here we changed it to Client Area.

Don’t forget to click on the Save Menu button to store your settings. You can now visit your website to see your client area in action.

Client area

Clicking on the link will take users to the account page where they can access client shortcuts after log in.

Extending Client Portal with MemberPress

MemberPress is an extremely powerful and highly flexible platform to build your client portal in WordPress.

It allows you to not only easily restrict access to clients only resources. It also helps you easily add any features you want to your client portal.

1. File Downloads

Want to allow your clients to easily download files from your website? MemberPress comes with a File Downloads addon that helps you manage clients only downloads easily.

The download page for the MemberPress file

For step by step details, see our guide on how to manage file downloads in WordPress.

2. Add Learning Courses

MemberPress is also the best WordPress LMS plugin on the market. It allows you to easily create online courses and associate them to your membership plans. This gives your customers easy access to learning resources on your website, while also allowing you to easily manage these resources.

MemberPress Courses Preview

For more details, see our tutorial on how to easily create online courses in WordPress.

3. Add Forms to Clients Area

MemberPress works with WPForms which is the easiest WordPress form builder plugin available.

This allows you to create feedback forms, testimonial forms, run customers surveys, or add support request forms.

Need clients to be able to upload files as well? WPForms allows you easily create file upload forms on your website. You can then embed this form on the account page, or any members-only page on your website.

4. Collect Payments and Upsell Products

As a business owner, you may want to promote other products and services to your existing and past customers.

Using MemberPress as your client portal allows you to integrate with the best email marketing services. This enables you to stay in touch with customers more efficiently and promote other products and services.

MemberPress also works with all popular payment gateways like Stripe and PayPal. This way you can easily collect payments for other services by selling them as a membership plan.

Alternately, you can also add an online store using WooCommerce and sell any products you want on the same website.

We hope this article helped you learn how to create a client portal in WordPress. You may also want to see our comparison of the best business phone services for small business, and best chatbot software to offer better support.

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 Create a Client Portal in WordPress appeared first on WPBeginner.


March 22, 2021 at 03:00PM

Friday, March 19, 2021

6 Best Online Fax Services for Small Business (2021)

Are you looking for the best online fax service for your small business?

Upgrading to an online fax service offers your business more security, speed, and can improve communication across the board.

In this article, we’ve hand-picked some of the best online fax services you can use along with your WordPress website.

Best online fax services for small business

Why You Need an Online Fax Service?

With traditional fax machines you’re limited by the older technology.

However, faxing is still one of the most secure ways to send and receive information. Online fax services combine the power and ease of email with the security of traditional faxing.

Plus, there’s no need to have a physical fax machine or fax modem.

For our business, we often have to send fax when communicating with the government, IRS, and sometimes for high-level bank information.

Online fax services can streamline your faxing process and integrate with the software you’re already using. You can even send faxes directly from your email client of choice.

This means less time spent with your faxing needs, and more time growing your business.

Moving from traditional faxes to an online fax service can help your business in a lot of ways:

  • Can quickly sign documents electronically with a single click
  • Manage, store, and search through faxes in one place
  • Receive and send faxes on the go from your mobile device
  • Save time by filtering out spam and junk faxes
  • Enhance your document storage and security
  • Streamline communication by integrating your faxes with other digital communication

The best part is that online fax is made for remote teams. You don’t need to be in an office to send or receive fax.

That being said, let’s take a look at the best online fax services that you can use to support your small business.

1. Nextiva

Nextiva Fax

Nextiva is the best online fax service for most businesses. It has affordable pricing, flexible plans, and an extensive set of features.

It’s commonly known for its suite of business communication tools and business phone services.

However, Nextiva also offers an excellent online faxing service that’s an excellent fit for most small business owners.

Note: We use the Nextiva business phone service and communication platform on WPBeginner. They service is always reliable, and they have incredible customer support.

What we really like about Nextiva is that it’s perfect for remote teams. You can send and receive fax documents via mobile, desktop, and tablet without being in the office.

If you have a traditional fax machine, Nextiva can also integrate with that as well. They allow you to migrate your existing fax number to their platform.

With that said, a free toll-free number and local phone number are included when you sign up.

If your company is growing and you need additional numbers, you can add numbers from your dashboard with a couple of clicks.

Online storage is automated as well. Nextiva will save all of your incoming and outgoing faxes for 6 months. You can easily download and share your faxes with other members of your team.

Nextiva is used by organizations like Taco Bell, Stanley Steemer, and the Buffalo Bills. However, the plans are well-suited for small businesses as well.

We recommend getting the their unified communication platform that starts at $18.95 per month, and it includes unlimited fax, unlimited voice & video calling, auto-attendant, toll free numbers, and more.

You can also purchase vFax separately starting at $4.95 per month which includes 500 pages, but this plan is limited and doesn’t let you use the full power of Nextiva.

Overall, it’s the best business phone & fax app for growing businesses.

Expert Review: We believe Nextiva is the best online fax service for small business owners. Along with fax, you also get their full business communication platform.

2. RingCentral

RingCentral Fax

RingCentral is another great online fax service for small and growing businesses.

RingCentral is a leader in providing business communication services like phone lines, instant messaging, video conferencing, and of course, online faxes.

RingCentral Fax can work as a standalone service or integrate with the business VoIP and communication platform.

This fax service is best suited for businesses who send a high volume of faxes, like legal offices, or universities. If your company uses outdated physical fax machines, RingCentral can integrate and upgrade your existing fax system.

You’ll also find standard fax features like online cover pages, cloud storage service integration, encryption, and the ability to addon unlimited fax numbers.

There are many integration options available, including Dropbox, Google Drive, Microsoft Outlook, and more.

It’s also a truly mobile solution. You can set up text messages to alert you of incoming faxes. Or use the mobile app to send, receive, view, and store faxes.

There’s even a built in option to block spam faxes and reduce the total number of junk faxes you receive.

With RingCentral, you can get a large number of pages at an affordable price. The Fax 1500 plan is $17.99 per month for 1500 pages, which breaks down to $0.012 per page.

But the best value is their Standard bundled plan for $24.99 per month. This plan lets you fax an unlimited number of pages per month, plus it bundles business phone calls, video meetings, audio conferencing, business text messages, and more.

The only real downside is that their fax storage is limited to the last 200 faxes. You’ll either need to delete existing faxes, or store them externally.

Expert Review: We believe RingCentral Fax is best for companies who need to send a high volume of faxes or want to bundle business communications together.

3. SRFax

SRFax

SRFax is an online fax service that offers the highest levels of security, privacy, and compliance.

The high security standards make it the best choice for healthcare providers. Security is a must when transmitting sensitive information like patient records and medical information.

You’ll be happy to know that SRFax is fully HIPAA compliant for US-based healthcare practitioners and PHIPA compliant for those based in Canada.

Many online fax services offer HIPAA compliance, but usually, these services deliver the bare minimum. The security features that SRFax provides end up exceeding the HIPAA regulations.

For example, you’ll find application security, hardware and organizational safeguards, user authentication, backups, and around the clock physical security.

Plus, faxes are sent using 2048-bit encryption, while the industry standard is 256-bit.

Beyond security, you’ll find standard features like unlimited storage and cross platforms integration.

There are also Windows and Mac-specific clients that let you send and receive faxes from your preferred programs.

The pricing is a little higher, starting with the Lite plan for $7.95 per month for 200 pages. However, if you need strong security the price is worth it.

You can also send international faxes. The international fax rates are based on the country you’re sending or receiving faxes from.

Expert Review: We believe SRFax is the best online fax service for businesses who need the highest levels of security.

4. Fax.Plus

Fax.Plus

Fax.Plus is one of the best online fax services for small teams. It’s simple to use, and the goal of the service is to save you as much time as possible.

If you’re looking for a way to upgrade your existing fax process while keeping things affordable, this is a great option.

You can even keep your existing fax number for free or add new toll free and local fax numbers.

There are dozens of integrations to manage your faxes within the platforms you’re already using. This means no complicated setup process or wasting time learning the ins and outs of new software.

For example, it integrates with platforms like Microsoft Office, Google Chrome, Slack, Google Drive, G Suite apps, and more.

You’ll also find a bundled iOS and Android app, so you can read, download, and send faxes on the go. The mobile app is as easy to use as the web portal.

It lets you scan documents from your phone, add digital signatures, add notes, organize your archives, send faxes, and more.

You can also optimize faxes with a single click, which makes them easier to read and will send faster.

If you have simple needs and only need to send a handful of faxes every month, then there’s a free plan you can use. This plan lets you send up to 10 pages per month. However, you can’t receive faxes, only send.

Although Fax.Plus is well suited for very small businesses, you’ll find a variety of plans to cater to all types of business needs. The Basic plan is $5.99 per month and lets you send up to 100 pages.

If you’re looking for the best deal, the Business plan lets you send 800 pages every month for $19.99.

Expert Review: We believe Fax.Plus is the best online fax solution for small teams.

5. eFax

eFax

eFax is a well-known name in the online fax services space. It’s feature-rich, easy to use, and places a focus on fax archiving and storage.

This makes it a great choice for organizations that need to store faxes for a long time, like financial and legal institutions, universities, real estate offices, accountants, and more.

Although other fax providers offer fax storage and archiving, none go as deep as eFax. This provider offers unlimited storage for your faxes, plus in-depth fax archiving and organization features.

When faxes are saved, additional information is stored, like the transmission time and date, the recipient and sender name, and more. This makes it easy to sort and find the exact information you’re looking for.

Your faxes are stored automatically, plus older faxes won’t be deleted to make room for new incoming faxes.

Basically, with eFax, you’ll never lose a fax, ever again.

The included mobile app is available for both iOS and Android. It lets you archive, search, download, and forward directly from your phone.

Another great mobile feature is the ability to take pictures of documents and send them as a fax, all while you’re away from the office.

You’ll also find standard functionality like support for electronic signatures, multiple users, cloud storage integrations, and the ability to send a fax to up to 20 recipients.

Plus, there’s support for international faxing, and every fax is sent through an encrypted SSL connection.

eFax has some of the highest pricing on this list. But, for companies who need advanced search, storage, and archive features, it’s still a great choice. Plans start at $16.95 per month for 150 inbound and 150 outbound faxes.

The best value plan is the Pro plan which costs $19.95 per month and lets you send 200 fax pages and receive 200 pages every month.

However, there is a one-time $10 setup fee on both paid plans that you’ll want to be aware of.

Expert Review: We believe eFax is a great choice for businesses who need advanced search, storage, and archive features.

6. MyFax

MyFax

MyFax is an excellent online fax service for small businesses and work from home businesses that send and receive a low volume of faxes.

You could use a free fax service to send faxes every once in a while. However, free services can be unprofessional since you can’t change the cover sheet, and you usually can’t receive faxes either.

We recommend using an affordable service like MyFax instead. MyFax is very simple and can also be used to send faxes anywhere in the world.

All plans come with unlimited fax storage, a free fax number, and a library of pre-built cover templates you can customize to match your brand. You can even search through your fax archives.

There’s also an Android and iOS app to take your faxes on the go.

Smaller teams can take advantage of the Home Office plan for $8.33 per month, which lets you send 100 pages and receive 200 pages every month.

There are also more expensive plans if you need to send or receive additional pages. If you go over the page limits, there’s an overage charge of $0.10 per page.

Expert Review: We believe MyFax is the best online fax service for businesses on a budget.

Which is the Best Online Fax Service for You?

After researching all of the top online fax service providers, we believe that Nextiva is the best online fax provider in the market.

You can send a high volume of faxes for a low price. Plus, it comes with powerful features like business phone, video calls, and other collaboration tools.

Those reasons and more are why Nextiva is the best online fax service and business communication platform in the market. This is also why WPBeginner uses Nextiva.

In our research, RingCentral came in a very close second. The online fax service offers a lot of the same features as Nextiva, for a great price. However, you don’t have the same level of flexibility.

You really can’t go wrong with either of these two online fax services.

We also looked at other fax service providers like MetroFax, HelloFax, FaxZero, GotFreeFax, J2 Global, mFax, and more.

However, our goal is to make it easy for you to choose the best online fax provider without causing choice paralysis, so we didn’t review them all here.

Online Fax Services FAQs

After helping hundreds of business owners find the best online fax services for their needs, we’ve come across a lot of questions.

Below are some of the most frequently asked questions we’ve received about online fax service providers.

How does online faxing work?

Online faxing turns your documents into a file format that’s readable by a fax machine and vice versa.

If you’re sending a document to a fax machine, you’ll enter your recipient’s fax number in your online fax dashboard and attach your file.

The online faxing services translate the document into a file type the fax machine can read and sends it to the recipient over a phone line.

The document is then printed and read as a standard fax or viewed with their online fax service provider.

What is the best free online fax service?

We don’t generally recommend using a free fax service provider, especially in a business setting. Free online fax services allow you to send faxes, but you generally can’t receive faxes or customize the cover sheet.

If you only need to send up to 10 pages a month, then we recommend the Fax.Plus free plan.

This also gives you the ability to upgrade if your faxing needs increase.

What is the safest fax app?

All fax apps are incredibly safe and use encryption to ensure your transmissions are protected. Faxing is one of the most secure forms of communication.

However, SRFax has the highest security protocols out of any online fax app. Their primary focus is providing a secure fax service for healthcare professionals, which needs to comply with HIPAA.

SRFax has strong encryption, spam blocking, user authentication, automatic fax deletion, and more.

Can I fax without a fax machine?

Yes, you can fax without a fax machine. Online faxing services like Nextiva and RingCentral allow you to send faxes via the internet, tablets, and even mobile devices.

You can also send online faxes to a traditional fax machine with an online fax service.

We hope that this guide helped you choose the best online fax service for your small business. You may also want to see our comparison of the best email marketing services, and best AI chatbot software for small business.

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 6 Best Online Fax Services for Small Business (2021) appeared first on WPBeginner.


March 19, 2021 at 05:00PM

Thursday, March 18, 2021

How to Control Your RSS Feeds Footer in WordPress

Do you want to customize the RSS feeds footer in WordPress?

This allows you to add custom text, links, or even advertisements below your post content in your RSS feed.

In this article, we’ll show you how to easily control your RSS feed footer in WordPress, so you can display the content you want.

Control RSS feed footer in WordPress

Why Add Content to RSS Feed Footer in WordPress?

RSS feeds offer an easier way for users to read your blog posts in their favorite feed reader apps such as Feedly.

However, RSS feeds can also be used by content scrapers to automatically steal your blog posts as soon as they are published.

Sometimes these content scrapers end up ranking higher than your original post in search engines.

To learn more, see our step by step beginners guide to preventing blog content scraping in WordPress.

Adding additional content to your RSS feed footer allows you to add backlinks to your main site and the original post at the end of each article. This can help you rank higher for your posts even if they are copied by content scrapers.

By manipulating your RSS feed footer, you can also give your readers a way to visit your WordPress blog directly from your RSS feed.

Having said that, let’s take a look at how to easily control your RSS feed footer in WordPress.

Method 1. Add Content to RSS Feed Footer Using All in One SEO

This method is easier and recommended for all WordPress users. It uses the All in One SEO plugin, which is the best WordPress SEO plugin used by over 2 million websites.

First, you need to install and activate the All in One SEO plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit All in One SEO » General Settings page and click on the ‘RSS Content’ tab.

This gives you an overview of your WordPress RSS feed settings, and your WordPress RSS feed URL.

AIOSEO RSS general settings

Under the ‘RSS Content Settings’, the first box allows you to add content before each post. The second box allows you to add content to the post footer.

Next, scroll down to the ‘RSS After Content’ section to edit your RSS feed footer.

AIOSEO default RSS footer

Right away, you’ll notice that AIOSEO automatically adds credit text with backlinks to your website in the RSS feed footer.

You can either use the text as-is, or you can add your own content and tags.

AIOSEO RSS feed footer save

Don’t forget to click ‘Save Changes’ before you exit the screen.

You can now view your RSS feed to see the changes. At the end of each article, you will be able to see content you added to your RSS feed footer.

Footer text in WordPress RSS feed

Method 2: Manually Add Content to RSS Feed Footer in WordPress

This method requires you to add code to your WordPress files. If you haven’t done this before, then check out our guide on how to copy and paste code in WordPress.

You’ll need to copy and paste the following code in your theme’s functions.php file, in a site-specific plugin, or by using the Code snippets plugin.

function wpb_feed_filter($query) {
if ($query->is_feed) {
add_filter('the_content','wpb_feed_content_filter');
add_filter('the_excerpt_rss','wpb_feed_content_filter');
}
return $query;
}
add_filter('pre_get_posts','wpb_feed_filter');
 
function wpb_feed_content_filter($content) {
// Content you want to show goes here 
$content .= '<p>Thanks for reading, check out <a href="'. get_bloginfo('url') .'">'. get_bloginfo('name') .'</a> for more awesome stuff.</p>';
return $content;
}

This code simply checks if the page requested is an RSS feed, and then filters the content to display your message in the RSS feed footer.

We hope this article helped you learn how to control your RSS feed footer in WordPress. You may also want to see our ultimate guide on how to setup All in One SEO for WordPress and our expert pick of the best WordPress RSS feed 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 Control Your RSS Feeds Footer in WordPress appeared first on WPBeginner.


March 18, 2021 at 04:00PM

Wednesday, March 17, 2021

Checklist: 10 Things To Add To Your Footer on WordPress Site

Are you wondering what to add in the footer of your WordPress site?

Footer is the area at the bottom of your website. It is often overlooked by website owners but can be used in significant ways to improve the user experience on your website.

In this checklist, we will share the top things that you should add to the footer of your WordPress website.

Which things to add to the footer of your WordPress website

What is Footer in WordPress?

Footer is generally the area that appears below the content part of your website. It is a common website design feature used by millions of websites.

WPBeginner footer area

Footer may also refer to the footer code area. As you manage your website, third-party services like Google Analytics, Facebook Pixel, and others may ask you to add code to the footer of your website.

This footer code is not visible on the screen but is used to add code snippets needed for website functionality and features.

Many beginners often find it difficult to choose what to add to the footer of their WordPress website. This is a missed opportunity that can help improve your website.

That being said, let’s take a look at some of the things to add to the footer of your WordPress site, and how to make it more useful.

Here are the things we will add, feel free to jump to the items that interest you:

The first thing you would notice that most websites add links to the important pages for their website in the footer area. This usually includes links to their about, contact, team members, press, and other pages.

All popular WordPress themes come with a footer widget area. This is what we will be using to add different widgets and elements to the footer of your website.

To add a set of links, you first need to go to Appearance » Menus page and click on the ‘create new menu’ link.

Create new footer links menu in WordPress

After that, enter a name for your menu and then click on the ‘Create Menu’ button.

Enter a name for your footer menu

After that, select the items you want to add to the menu from the left column and click on the ‘Add to Menu’ button.

Add pages to menu

Once you are finished, click on the Save Menu button to store your changes. For more help, see our article on how to create navigation menus in WordPress.

Now that you have created the menu, let’s display it in the footer area of your website. Simply go to the Appearance » Widgets page and add the Navigation Menu widget to your footer sidebar.

Add navigation menu widget to your footer widget area

After that, select the footer menu you created earlier from the drop down menu and click on the Save button.

You can now visit your website, and you will see the links displayed in the footer widget area of your website.

Footer links in WordPress

2. Adding Code in WordPress Footer

As you manage your WordPress website, you may sometime need to add some code snippet to your WordPress website’s footer area.

One way to add them is by editing your theme files directly and pasting the code in the footer.php template. However, this is a bad approach as your code will disappear when you change the theme or update it.

The best way to add code in the WordPress footer is by using a plugin.

First, you need to install and activate the Insert Headers and Footers plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Settings » Insert Headers and Footers page. From here you can paste your code snippet in the ‘Scripts in Footer’ box.

Add code to the footer area in WordPress

Don’t forget to click on the Save button to store your changes. For more details see our article on how to add header and footer code in WordPress.

In order to comply with the GDPR and privacy-related laws in different countries, website owners are required to add a privacy policy page to their website and link to it from all other pages.

WordPress makes it super easy to create a privacy policy page and then you can add a link to it in your website footer.

First, you need to visit Settings » Privacy page. You’ll notice that WordPress has already created a Privacy Policy page draft for you.

Add a privacy policy page

You can click on the ‘Use This Page’ button to use the default Privacy Policy template or create a new page.

Next, you need to edit that page like you would edit any other page in WordPress. You can add more information about your privacy policy as per your own requirements and publish that page.

Editing privacy policy page

Once you are finished, you can add the privacy policy page to your footer navigation menu (see above).

For more details, see our article on how to add a privacy policy page in WordPress.

4. Adding Copyright Date in WordPress Footer

You may also want to add a copyright date in the WordPress footer area. Now one way to do this is to simply add the text in your theme settings.

Many top WordPress themes allow you to easily add text in the footer area of your website. You can find the option by visiting Appearance » Customize page and looking for footer settings in the left panel.

Footer copyright text

You can make the copyright symbol by adding your text in this format:

&copy; Copyright 2016-2021. All rights reserved.

Don’t forget to publish your theme changes.

However, you will have to change the copyright notice each year to update the date. See our article on how to add dynamic copyright date in WordPress footer for a more elegant solution.

5. Remove Powered by Links from Footer in WordPress

Some free WordPress themes add a link back to WordPress website or their own websites in the footer area of your site.

You are not required to keep these links on your website. As they are outgoing links and affect your website’s SEO score if you have them on every page of your website.

Now many WordPress themes make it super easy to remove those links. You can find the option in Appearance » Customize page. Usually, it is located under footer options panel.

Removing footer credits via customizer

However, some themes may choose to hard-code the links in the theme files with no option to remove it manually. In that case, you can edit the footer.php file in your theme to remove those links.

6. How to Add Instagram Feed in WordPress Footer

If you run a fashion blog or want to promote your Instagram content then the footer of your website could be a nice place to display your recent Instagram photos.

First, you’ll need to install and activate the Smash Balloon Instagram Feed plugin. For more details, see our step by step guide on how to install a WordPress plugin.

After that you need to visit Instagram Feed » Settings page and click on the ‘Connect an Instagram account’ button.

Connect Instagram account

Follow the on-screen instructions to connect your Instagram account to your WordPress website. Once finished, you can go to Appearance » Widgets page and add the Instagram Feed widget to your footer sidebar.

Instagram feed widget

After that, you can visit your website to see your Instagram feed in the footer.

Instagram feed in the footer

Smash Ballon also has plugins to easily embed Facebook, YouTube, and Twitter feeds anywhere on your website.

7. Add a Sticky Footer Bar in WordPress

Want to display special offers or notifications in the footer area? A sticky floating footer bar allows you to display a banner that remains on the footer of the screen as users scroll your website.

For this, you’ll need OptinMonster. It is the best conversion optimization software in the market and allows you to convert abandoning website visitors into customers.

It also comes with powerful display rules which means you can show personalized custom messages to users in the footer of your website.

First, you need to sign up for an OptinMonster account.

After that, install and activate the OptinMonster plugin on your WordPress website.

Upon activation, you need to visit OptinMonster » Settings page and click on the ‘Connect existing account’ button.

Connect OptinMonster account

Once connected, you need to go to the OptinMonster » Campaigns page and click on the ‘Add New’ or ‘Create your first campaign’ button.

Create OM campaign

On the next screen, you need to choose ‘Floating Bar’ as your campaign type and then choose a template.

Choose floating bar campaign

This will take you to OptinMonster’s drag and drop campaign builder. From here you can design your footer bar. Simply point and click on any element to edit it or drag and drop new blocks from the left column.

OptinMonster campaign builder

Once you are finished editing your campaign, simply switch to the Publish tab and make it live.

Publish your OptinMonster campaign

After that click on the close button to exit the campaign builder and return to your WordPress website. From here you need to set the campaign’s output status to ‘Published’.

Campaign output

You can now visit your website to see your floating footer bar campaign live in action.

Footer bar preview

OptinMonster can also be used to create a slide-in footer popup, add countdown timers, and targetted footer notifications to recover abandoned cart sales.

8. Add Social Buttons in WordPress Footer

Another good way to utilize the footer space in your WordPress theme is by adding social media icons there.

Simply, install and activate the Social Icons Widget plugin. Upon activation, go to Appearance » Widgets page and add the Social Icons widget to your footer widget area.

Social Icons widget

The plugin offers a bunch of options to choose colors, icon styles, button types, and more. You can just add the social media icons and replace the URLs with your own social media profiles.

Don’t forget to click on the save button and visit your website to see it in action.

Social icons preview

Bonus: Need more social engagement for your brand? Take a look at these best social media plugins for WordPress to grow your audience.

9. Add a Phone Number in WordPress Footer

If you offer customer support and sales via phone, then adding your phone number in the WordPress footer area would help users easily contact you.

For this you’ll need a business phone number. We recommend using Nextiva, which is the best business phone service for small businesses.

This allows you to make cheaper calls and use advanced features like call forwarding, using the same number on multiple devices and handsets, and managing calls from any device with an internet connection.

Once you got your phone number, there are multiple ways to add it to your website. The easiest one is to install and activate the WP Call Button plugin. Upon activation, go to Settings » WP Call Button page to configure plugin settings.

WP Call Button settings

First, set the ‘Call Now Button Status’ to active. After that, add your phone number and choose where you want to display the button. Once finished, don’t forget to click on the save changes button to store your settings.

Click to call button in action

Don’t want to add the button? See our guide on how to add clickable phone numbers in WordPress for more methods.

10. Add a Contact Form in WordPress Footer

The footer of your WordPress website doesn’t have to be a dead-end. Give your customers a chance to continue the conversation by filling out a contact form.

Simply install and activate the WPForms plugin. It is the best WordPress contact form plugin and allows you to easily add contact form anywhere on your website including the footer.

Upon activation, go to WPForms » Add New page to create your contact form. Enter a name for your form and select the Simple Contact Form template.

Add new form

Next, WPForms will load the form builder with the usual contact form fields. You can click on any field to edit, move or delete it. You can also add new fields from the left column.

Edit form

Once you are done editing, click on the Save button to publish your form and exit the form builder.

Next, you need to visit Appearance » Widgets page and add the WPForms widget to your footer area. After that, select the form you created earlier from the drop-down menu and click on the Save button.

Add form widget to footer area

You can now visit your website and see the contact form in your website footer area.

Footer form preview

We hope this article helped you learn which things to add to your WordPress footer and make it more useful. You may also want to see our guide on how to improve your WordPress website speed and performance, and our expert pick of the best WordPress plugins to use on 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 Checklist: 10 Things To Add To Your Footer on WordPress Site appeared first on WPBeginner.


March 17, 2021 at 05:00PM