Sunday 31 January 2021

How to Find Which WordPress Theme a Site is Using

Have you ever come across a great-looking WordPress site and wished you could get the exact same theme?

Often we hear from readers asking us for help finding the name of a theme that they love on someone else’s website.

Luckily, it’s easy and free to check a site’s theme. In this article, we’ll show you how to find which WordPress theme a site is using.

Finding out which WordPress theme a website is using

When you’re creating a website, one of the biggest decisions you’ll face is choosing your theme.

There’s a lot to think about when selecting the perfect WordPress theme for your site. If you come across a site with a layout and features that you love, then that could be a great shortcut to finding the right theme for you.

Some websites use custom themes, which you probably won’t be able to use yourself. However, in many cases, you’ll find that sites are using one of the best free WordPress themes or a popular premium theme.

If so, you can find out the name of the theme and download or buy it yourself.

It’s really easy to find out which WordPress theme a website is using. We’re going to walk you through three different methods.

Video Tutorial

If you prefer written instructions, just keep reading.

Method 1. Use WPBeginner’s WordPress Theme Detector Tool

The easiest way to find which theme any WordPress website is using is by using our WordPress theme detector tool.

It’s completely free to use. All you need to do is enter the website URL and then click the “Analyze Website” button.

Type in the name of the website you want to analyze

Our theme detector will look through the website’s source code and show you the name of the WordPress theme they’re using.

For example, if a website is using the popular Divi theme, then our theme detector will show something like this:

The WordPress Theme Detector in action, detecting the Divi theme

However if it’s a less popular theme or a custom theme, then our tool will show you the name of the theme without the screenshot.

All you have to do then is to copy / paste that theme name in Google search to see if you can find the download link.

If it’s a custom theme, then you will not find it. However if it’s one of the thousands of free / premium WordPress theme, then you’ll be able to download and use it.

Method 2. Use IsItWP to Detect the Site’s WordPress Theme

Another easy way to detect the WordPress theme used by a website is with IsItWP, a website theme detector.

IsItWP is a free online tool that tells you the theme and plugins used by a WordPress website.

Just open up the IsItWP website and enter the URL of the site you want to check.

Checking a website's theme and plugins using IsItWP

IsItWP will first check if the website is using WordPress. If so, IsItWP will detect which WordPress theme the site is using and show you the results:

IsItWP showing details of the theme detected

It’ll also try to detect the WordPress hosting provider and WordPress plugins used by the website. You’ll see a list of these with download links plus links to IsItWP’s reviews of the plugins:

IsItWP's details of plugins being used by the site being examined

Sometimes, you’ll see a result like this for the site’s theme:

IsItWP will give the name of a custom or child theme

IsItWP may not be able to give you details about a custom WordPress theme or a child theme.

It will display the name of the theme, though, so you can search for it online and see if it’s available to download or buy.

Method 3. Manually Detect WordPress Theme Used by a Website

Sometimes website owners change their WordPress theme’s name. This stops tools like our WordPress theme detector or IsItWP from detecting which WordPress theme they are using.

However, you can often use the website’s code to find out which theme it’s using.

Let’s get started.

Every WordPress theme has a style.css file. This file contains a theme header which tells WordPress the name of the theme, theme author, URI, version, and more. It also contains the CSS styles used by the theme.

To find this file, go to the website that you want to examine. Right click anywhere on the screen and select ‘View Page Source’ from the menu.

View page source of a WordPress website

This will open the source code of the page in a new browser tab. Now you need to find a line in the source code that looks something like this:

<link rel='stylesheet' id='themename_style-css'  href='http://example.com/wp-content/themes/theme-name/style.css?ver=1.1.47' type='text/css' media='all' />

You can click on the URL in this line to open the style.css file.

Tip: There will normally be several style.css files linked to from the page source. You need to find the one with /wp-content/themes in the URL.

At the top of the style.css file, you will see the theme header block which contains information about the theme used by the WordPress blog. Typically, it would look something like this:

Theme Name:     Theme Name 
Theme URI:      https://example.com
Author:         ThemeAuthorName
Author URI:     https://example.com
Description:    My Theme is a flexible WordPress theme designed for portfolio websites
Version:        1.1.47
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    hestia
Tags: blog, custom-logo, portfolio, e-commerce, rtl-language-support, post-formats, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

You may be able to find the Theme’s URL or Theme Author’s URL here which will lead you to the theme used by the website.

Finding The Parent Theme

Many WordPress sites use child themes to customize their websites. In that case, their theme header will contain information about the parent theme they are using.

*
Theme Name:   My Child Theme
Description:  Just a child theme
Author:       Peter Smith
Author URL:   Write here the author's blog or website url
Template:     hestia
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  my-child-theme
*/

In the above example, this header block has an extra ‘Template’ parameter in the theme header block. This template is the parent theme used by this website.

You can also find out the parent theme by looking at the website’s source code. You’ll find that there’s another style.css file loaded from another theme.

This other style.css file is the parent theme’s stylesheet and clicking on it will tell you which parent theme a site is using.

That’s all for now, we hope this article helped you learn how to find which WordPress theme a site is using. You may also want to see comparison of the best WordPress page builder plugins to create custom layouts, and our step by step guide on how to create an email newsletter to grow your website traffic.

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 Find Which WordPress Theme a Site is Using appeared first on WPBeginner.



from WPBeginner https://ift.tt/3crvrjN
More links is https://mwktutor.com

Saturday 30 January 2021

How to Disable WordPress Admin Bar for All Users Except Administrators

Do you want to easily disable the admin bar in WordPress?

By default, you can easily disable the WordPress admin bar for any user from the dashboard. But this method can take time if you have a lot of registered users on your site.

In this article, we’ll show you how to disable the WordPress admin bar for all users except administrators.

Disabling WordPress admin bar for all users except administrators

What is WordPress Admin Bar?

By default, WordPress displays an admin bar on the top for all logged-in users. This toolbar is visible in the WordPress admin area as well as all other pages when you are logged in.

WordPress admin bar

The WordPress admin toolbar contains useful shortcuts to different WordPress sections. The shortcuts available in the admin bar change based on a users’ role and permissions in WordPress.

However, when viewing the public pages on the front-end of your website, the admin bar can be a bit distracting. It may also affect your website’s design and user experience.

Luckily, there are multiple ways to easily disable the WordPress admin bar for all users except administrators.

Method 1. Disabling The WordPress Admin Bar for Any User

WordPress allows each user to disable the admin bar by simply editing their user profile. As a site owner, you can also edit other user’s profiles and disable the admin bar for them.

If you want to disable the admin bar for any particular user in WordPress, you’ll need to edit their user profile.

Simply go to the Users » All Users page and then click on the ‘edit’ link for any user you want to disable the admin bar for.

Edit user settings

This will bring you to the user profile editor page. From here, uncheck the box next to the ‘Show toolbar when viewing site’ option.

Disable admin bar

Scroll down and click the ‘Update User’ button to save your changes.

This will disable the admin bar for that particular user when they visit the website.

Site without admin bar

If you have a handful of users, then you can go ahead and manually disable the admin bar for all of them. However, if you run a membership site with a lot of users, then this method wouldn’t work.

Luckily, there are other ways to quickly disable the admin bar for all users except administrators.

Method 2. Disable Admin Bar for All Users Except Admins with a Plugin

This method allows you to quickly disable the WordPress admin for all users.

First, you need to install and activate the Hide Admin Bar Based on User Roles plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, go to the Settings » Hide Admin Bar Settings page. From here, check the boxes next to the user roles where you want to disable the admin bar.

Hide Admin settings with a plugin

Don’t forget to click on the ‘Save Changes’ button to store your settings.

Method 3. Disable Admin Bar for All Users Except Administrators Using Code

This method requires you to add code to your WordPress theme files. If you have not done this before, then check out our guide on how to copy and paste code snippets in WordPress.

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

add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}

This code checks if the current user is not an administrator, and they are not viewing the admin dashboard. If both conditions match, then it will disable the WordPress admin bar.

Don’t forget to save your changes and check your website to make sure everything is working fine.

Method 4. Disable Admin Bar for All Users Including Admins

What if you wanted to disable the admin bar for all users including yourself and any other administrator on your site?

You can do this by modifying the code we showed earlier.

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

/* Disable WordPress Admin Bar for all users */
add_filter( 'show_admin_bar', '__return_false' );

This code will disable the admin bar for all users when viewing the public pages of your website. All users will still be able to see the toolbar inside the WordPress admin dashboard.

We hope this article helped you learn how to disable the WordPress admin bar for all users except administrators. You may also want to see our ultimate WordPress security guide and our comparison of the best WordPress page builder for creating custom page layouts without any code.

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 Disable WordPress Admin Bar for All Users Except Administrators appeared first on WPBeginner.



from WPBeginner https://ift.tt/3af1dhb
More links is https://mwktutor.com

Friday 29 January 2021

7 Best Google Forms Alternatives in 2021 (Better Features + Free)

Are you looking for a Google Forms alternative? Google Forms is one of the most popular free form builders and is part of Google Workspace (G Suite).

However, it doesn’t provide a high level of flexibility when it comes to customization or advanced features to collect data from visitors.

In this article, we’ll share the best Google Forms alternatives, so you can select the best form tool for your business.

best alternatives for google forms

Why Do You Need a Google Forms Alternative?

Google Forms is a popular tool to create online forms. It is a free service by Google and easy to use. Users can create surveys and questionnaires and gather the data in spreadsheets for further analysis.

While Google Forms might be good for basic use, it lacks features that might be beneficial for businesses. For instance, if you’re looking to collect payments for customers through a form, then that is not possible in Google Forms.

Another drawback of using Google Forms is that there is no conditional logic option. This means you can’t automatically show or hide fields based on user responses.

Plus, there’s not a lot of option for customizing the form’s style. The default look of Google Forms may look unprofessional for businesses.

Last but not least, Google Forms also lack advanced security features such as locking forms based on user’s access level, passwords, and more.

That said, there are many other popular online form builders out there that offer better features and integrations. Let’s look at the best Google Forms alternatives.

1. WPForms

wpforms

WPForms is the most beginner-friendly WordPress form plugin and the best Google Forms alternative. It is used by over 4 million websites.

You can use their easy to use drag and drop form builder to create just about any type of form you like without writing any code.

There are over 100 different form templates to choose from. You can create all kinds of forms from a simple contact form to more sophisticated forms like surveys, donation forms, file upload forms, and more.

wpforms templates

What makes WPForms the best Google Forms alternative is its simplicity and feature-rich options.

You can add form fields to accept online payments, allow users to submit posts, sign forms online, add Likert scale, net promote score (NPS), add reCAPTCHA, ratings, enter payment fields, and more.

Each field is further customizable, as users can change the label, add a description, edit field size, mark a field required, and enable conditional logic.

add fields in wpforms

Aside from that, WPForms offers powerful addons to expand it features. Through Form Abandonment addon, you can follow up with people who left your form without completing it, so you can convert them into leads.

The plugin even lets you track the path a user takes before filling out a form with their User Journey addon. WPForms also helps in capturing the geolocation of a visitor and shows a user’s country, city, and state along with form submission.

Geo location tracking for form submissions in WordPress

They have a form landing pages addon that allows you to create Google Form like form pages, and a conversational form addon that boosts form completion.

Another benefit of using the plugin over Google Forms is its integration with payment services like PayPal and Stripe. WPForms also easily integrates email marketing services like Drip, Constant Contact, AWeber, Sendinblue, and more.

Pricing: WPForms offers a free version called WPForms Lite. However, if you’re interested in more powerful features and form field customization options, then go for WPForms Pro ($199.50 per year).

2. Formidable Forms

formidable forms

Formidable Forms is the next Google Forms alternative on our list. It is an advanced WordPress form builder that offers lots of powerful features to create solutions-focused forms.

Using its visual drag and drop builder, it is easy for anyone to create different types of forms like polls and surveys, payment forms, quizzes, contact forms, and more.

Each form design is mobile responsive and users can customize the form using its visual styler. There is even an option to edit the form HTML and add conditional logic to show form fields based on the user’s answers.

The standout feature of Formidable Forms that it allows visitors to perform calculations. For instance, you can create calculators like a percentage calculator, mortgage calculator, or car payment calculator.

The plugin offers different form templates, easily integrates with various email marketing services, offers WooCommerce integration to help you build product forms, and is a perfect alternative for advanced users and developers.

Pricing: Formidable Forms prices start from $46.36 per year with the Basic plan.

3. Typeform

typform

Typeform is a powerful tool to build forms for your website. It’s packed with features and lets users create all types of online forms.

There are numerous form templates to get started and you can select from different categories such as quizzes, surveys, questionnaires, lead generation, polls, giveaways, and others.

Once you’ve selected a template, Typeform will ask the purpose of creating the form and what is it for. It will then show predefined questions, which you can edit as per your needs.

The form builder also offers different options for customization. You can change the layout of each question, edit the design, theme, and set up conditional logic.

Furthermore, Typeform offers additional features that make it a great Google Forms alternative. For instance, it allows you to set a response limit, schedule a close date, show closed messages to visitors, set up email notifications, and more.

Typeform also integrates with Google Sheets, Google Analytics, Google Tag Manager, Salesforce, Freshdesk, HubSpot, Facebook, Slack, Drip, Zoho CRM, and other marketing automation tools.

Pricing: Typeform offers a free plan and its paid version’s prices start from $30 per month billed yearly.

4. Zoho Forms

zoho formsZoho Forms is a popular form builder in the market and offers many features that you won’t find in Google Forms.

You get multiple form templates for different industries and business units. For instance, Zoho offers templates for businesses, construction companies, medical institutions, eCommerce sites, HR, educational institutes, and more.

After selecting a template, there are various options for customization. Simply use the drag and drop builder to add or remove fields in the form, use conditional logic to set rules for each field, or create multipage forms.

Zoho Forms also offers built-in security measures to protect your data and limit access to forms. It shows how your forms are performing with detailed analytics reports.

Another benefit of using Zoho Forms is that you can automate workflows quickly. It lets routes form data to different apps and easily integrates with other Zoho apps.

Pricing: Zoho Forms prices start at $8 per month billed annually.

5. Wufoo

wufoo

Wufoo is an online form builder by SurveyMonkey and is a popular choice among small businesses and large corporations. Like many other tools on our list, Wufoo also offers a drag and drop builder.

It has a user-friendly interface and you can easily create different kinds of forms using a pre-built template. It also lets you start from scratch and adding new fields is simple thanks to the drag and drop builder.

For each field, there are more options for customization. For example, you could rename a field, add ranges, show fields to certain people, add placeholder text, and more.

Other features of Wufoo include Google Analytics form tracking, collection of respondent’s IP addresses, captcha spam protection, and integration with payment services to collect payments.

Pricing: You can try out Wufoo for free and its paid plans start from $169 per year.

6. Microsoft Forms

microsoft forms

Microsoft Forms, as the name suggests, is Microsoft’s version of Google Forms.

It’s an excellent alternative for anyone who has an Office 365 subscription and ties easily with other Microsoft services. You can gather your form entries and view data in Excel.

Microsoft’s form builder is easy to use and resembles a lot like Google Forms. You can add different form fields such as multiple choice questions, text, rating, date, ranking, Likert scale, and NPS.

Each field can be edited and the form can be broken down into different sections.

Microsoft Forms comes with basic pre-built templates to get started. This includes quizzes, surveys for customer feedback, event registration forms, party invitation forms, and more.

However, the form templates are limited and not as extensive as WPForms. Microsoft Forms also lacks a few other features as it doesn’t offer conditional logic or fields to accept payments from customers.

Pricing: Microsoft Forms is free for users that have an Office 365 license.

7. JotForm

jotform

JotForm is the last Google Forms alternative on our list. It offers an online form builder and you can get started for free. The free version lets you create up to 5 forms, record 100 submissions, and offers 100 MB storage space.

However, if you’re looking for more form submissions, storage space, Health Insurance Portability and Accountability Act (HIPAA) compliance, and no JotForm branding, then consider upgrading to one of its paid plans.

What makes JotForm a good alternative to Google Forms is the features it offers.

You get tons of templates to create any type of form, be it a product order form, registration form, contact form, surveys, file upload forms, or membership form.

Each field in the form template is editable and just like other form builders, it also offers a drag and drop builder. You can even collect payments by integrating your forms with PayPal, Square, Stripe, and other services.

There are also multiple options for conditional logic such as show and hide fields, perform complex calculations, skip or hide a page, and more.

Pricing: JotForm is available for free but its premium plans start from $174 per year.

Which is the Best Google Forms Alternative? (Expert Pick)

While all the tools we have mentioned in our list are great Google Forms alternative, we believe that WPForms is the best Google Forms alternative in the market.

It offers a lot of powerful features that you simply won’t find in Google Forms. Plus, it’s very easy to use and lets you create amazing forms using pre-built templates and drag and drop builder.

There is a reason why over 4 million website owners are using WPForms to build smart forms for their business.

The only downside of WPForms is that it requires you to have a WordPress website.

If you’re using other website builders than WordPress, then you may want to look at Typeform or Zoho Forms.

We hope this article helped you find the best Google Forms alternative for your business. You may also want to take a look at our list of best live chat software and must have WordPress plugins to grow your 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 7 Best Google Forms Alternatives in 2021 (Better Features + Free) appeared first on WPBeginner.



from WPBeginner https://ift.tt/3t7AImj
More links is https://mwktutor.com

Thursday 28 January 2021

How to Create and Sell Online Courses with WordPress (Step by Step)

Did you know that you can create a successful online course with WordPress?

Selling online courses is a popular online business idea that you can start with a very small investment and no technical knowledge.

Whether you’re looking to create an online course to sell or simply add an online course for your existing students, this tutorial is for you!

In this guide, we will show you how to easily create an online course using WordPress. We will also show you how to make money from it and make your online course a success.

Easily creating an online course in WordPress

Here are the steps we will cover to help you create an online course with WordPress:

Ready? Let’s get started.

What Do You Need to Create / Sell an Online Course?

You will need the following things to create an online course.

  • A course idea where you can help others learn new skills.
  • A domain name. This will be your website’s address (Example, wpbeginner.com).
  • A WordPress hosting account. This is where your website’s files are stored.
  • An eLearning management add-on (also known as LMS plugin) to create and manage courses.
  • Your undivided attention for the next 45 minutes.

You can build an online course with WordPress in less than an hour, and we’ll walk you through every step of the process.

Let’s get started.

Step 1. Setting up Your WordPress Website

There are plenty of website builders and online course platforms that you can use to build your own website. However, we always recommend WordPress because it offers you the maximum flexibility and freedom.

WordPress powers over 39% of all websites on the internet.

There are two types of WordPress, and beginners often end up confusing them.

First, there is WordPress.com which is a hosting service, and then you have the original WordPress.org also known as self-hosted WordPress. See our guide on the difference between WordPress.com vs WordPress.org.

We recommend using WordPress.org because it gives you access to all the WordPress features that you’ll need.

To start a self-hosted WordPress.org website, you’ll need a domain name ($14.99 / year), WordPress hosting ($7.99 / month), and SSL certificate to accept online payments ($69.99 / year).

This is quite a lot of startup money.

Luckily, Bluehost, an officially recommended WordPress hosting provider, has agreed to offer our users a free domain name, free SSL certificate, and a 60% discount on web hosting. Basically, you can get started for $2.75 per month.

→ Click Here to Claim This Exclusive Bluehost Offer ←

After purchasing hosting, head over to our guide on how to create a WordPress website for step by step set up instructions.

Step 2. Install and Setup MemberPress LMS Plugin

Now that your WordPress website is ready, the next step is to install and setup a Learning Management System add-on. This will allow you to create your online course and add it to your website.

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.

MemberPress is the best LMS plugin for WordPress. It is an all-in-one solution with complete course management, lesson plans, subscriptions, access control, payment management, and more.

Course creators around the world use MemberPress to create profitable courses and earn over $400 million dollars every year.

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

Once you have entered the information, click on the ‘Activate License Key’ button to store your settings.

Next, you need to switch to the ‘Payments’ tab and click on the (+) add button to set up a payment gateway. MemberPress supports PayPal and Stripe (Authorize.net support included in Pro and Plus plans).

MemberPress payments settings

Simply select your payment gateway and then fill in the required information. You can also set up multiple payment methods by clicking on the (+) button again and repeat the process.

Don’t forget to click on the ‘Update Options’ button to save your payment settings.

Step 3. Creating Your First Course

The course creation process in MemberPress makes it super easy to create and manage online courses. It comes with a very easy to use course builder that allows you to create courses, add sections, edit lessons, and more.

First, you need to visit MemberPress » Courses page where you’ll see a button to install and activate the courses addon.

Activate courses addon for MemberPress

Clicking on it will automatically install and activate the MemberPress courses addon, and you’ll be redirected to the courses page.

Add new course in MemberPress courses

Simply click on the ‘Add New’ button at the top to create your first course. This will launch the MemberPress course builder screen.

Creating the course page

First, you’ll see the ‘Course Page’ where you need to provide a course topic, title, and description. MemberPress course builder uses the default WordPress block editor, so you can get creative and make an impressive course page layout.

You can also add ‘Course Categories’ and ‘Course Tags’, set a featured image, and provide a course page excerpt under the course page settings.

Course page settings

Step 4. Adding Sections and Lessons to Your Course

MemberPress also makes it easy to quickly start adding course contents for each course without switching to a different page.

Simply switch to the ‘Curriculum’ tab and click on the Add Section button to create your course outline.

Add course sections in MemberPress

You need to provide a title for a section and then click on the Add Lesson button under the section to add lessons.

Adding lessons in MemberPress courses

After adding a lesson, you can start adding lesson content by clicking on the edit button next to each lesson.

Editing a lesson

You will be asked to save your changes after that your lesson will open up with the familiar block editor screen.

Adding lesson content

You can add your lesson content here with the full advantage of the block editor. This allows you to upload images, embed videos, add text, offer downloadable digital products such as powerpoints, PDF eBooks, actionable worksheets, and other course materials.

Don’t forget to click on the Update button to save your lesson. You can return back to the Course by clicking on the ‘Back’ link at the top of the editor.

Back to the course editor

Repeat the process to add more lessons to your course.

Once you are finished adding course content, don’t forget to click on the ‘Publish’ button to make your course accessible to eligible users.

Step 5. Creating Course Membership Subscriptions

MemberPress allows you to easily sell online courses with subscription plans. You can create as many membership plans as you like, and users can select a plan to pay for your online course.

You can also sell all your courses under single membership, offer free courses, or you can add different courses for each plan. This depends on how you plan to structure your sales funnel.

A lot of people use a combination of free courses and paid courses to build their audience and maximize passive income.

To add a membership, simply go to MemberPress » Memberships page and click on the Add New button.

Create new membership

Next, you will reach the create new membership page. From here, you first need to provide a title for this membership plan and then add some description.

Create membership page

After that, you can enter the membership pricing under ‘Membership Terms’ box on the right. You can also choose the access duration from lifetime, expire (recurring), or fixed expire.

Next, you need to scroll down to the Membership Options section. This where you can configure advanced membership options like sign up button, welcome email, pricing box, and more.

Membership options

Once you are finished, you can click on the Publish button to save your changes.

Repeat the process if you need to create more membership plans.

Step 6. Restrict Course Access to Membership Plans

The best part about using MemberPress is its powerful access control rules. They allow you to decide who gets access to your online course.

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

Create new access rule

This will bring you to the Rule wizard page. First, you need to select the content you want to protect under the ‘Protected’ content section.

Content access rules

For instance, here we have chosen a single course under the protected content.

Below that, you need to select the conditions that need to be matched for users to access that content. For instance, we have chosen our membership plan here.

Don’t forget to click on the ‘Save Rule’ button to save your settings.

MemberPress makes it easy to easily send users to the page where they can register and sign up for your course by purchasing a membership plan.

It automatically generates a link for each membership plan that you can add anywhere on your site.

Simply edit a membership plan and you’ll see the link below the membership title. You can also manually type in your domain name followed by /register/your-membership-title/

Membership sign up link

You can add this link anywhere on your website in a post, page, or navigation menu and it will take users to the registration page.

Registration page preview

You can even share this link in your sales pages, webinars, podcasts, Facebook group, social media, and other traffic channels.

Pro Tip: We recommend using PrettyLinks to create memorable short links to share in podcasts, webinars, and social media.

Step 8. Preview & Customize Your Online Course

MemberPress allows you to use the classroom mode by default, which means your course pages and content will always look good regardless of which WordPress theme you are using.

You can simply go to view a course by visiting:

https://ift.tt/3qXATi5

Don’t forget to replace the example.com with your own domain name.

You’ll see all your courses listed there. You can click on the ‘Preview as’ menu to see how it would look to the logged out users.

Courses page in MemberPress

Clicking on a course will open the course, and you will be able to see course overview, sections, and lessons. It is super easy to navigate and also keeps tracks of user’s progress so that they can continue where they left off.

Course navigation

You can also customize the course page templates by visiting Appearance » Customize page and clicking on the ‘MemberPress Classroom’ tab.

Customizing course view pages

Here, you can upload your brand logo and change colors to match rest of your website.

Don’t forget to click on the Publish button to save your changes.

Step 9. Selling Your Online Course with More Powerful Features

Both MemberPress and WordPress are super flexible. This allows you to use them with any other tools to grow your business and reach more users.

For example, you can create a powerful membership site / community that offers paid content and perks along with courses.

You can also use MemberPress with other LMS plugins like LearnDash. This allows you to use LearnDash for course creation and use MemberPress for powerful subscription, payments, memberships, and other features.

Alternatively, if you want to sell other items like physical goods related to your course, swags, etc, then you can use WooCommerce to manage payments and orders. This will let you build a proper online store for your website.

Step 10. Promoting Your Online Course

The other advantage of WordPress + MemberPress combo is that it also makes it easier for you to promote your online course and make money online.

Let’s take a look at few ways to promote your online course, attract target audience, and make it successful.

1. Create Landing Pages for Your Online Courses

Your WordPress theme would be able to help you create a highly engaging website. However, you may need to quickly create landing pages to describe course details, showcase instructors, highlight special offers, etc.

Custom landing pages and sales pages are proven to increase course sales.

We recommend using SeedProd. It is the best WordPress page builder and allows you to create professional landing page layouts without writing any code.

SeedProd

For detailed instructions, see our guide on how to create a custom page in WordPress.

2. Learn The SEO Basics

Search engines are the #1 traffic source for most websites on the internet. This is why you’ll need to learn how to make your online course website rank higher in search engines.

With the help of WordPress plugins and some basic SEO best practices, you’d be easily able to compete with the big guys.

We now recommend users to use All in One SEO for WordPress plugin.

To learn more, see our complete WordPress SEO guide for beginners with step by step instructions.

3. Track Marketing Data

A lot of beginners develop their marketing strategy based on guesswork. You don’t have to do that when you can get actual data to make informed decisions.

For that, you’ll need MonsterInsights. It helps you install Google Analytics and see human-readable reports inside your WordPress dashboard.

You can see where your visitors are coming from, what they do on your website, your most popular pages, and more. You can then improve your website to improve your conversions and boost sales.

4. Start Building an Email List

After a while, you would notice that most visitors who come to your website don’t sign up for your online course. The problem is that you would not be able to reach out to those users once they leave your website.

To address this, you need to start an email newsletter. This way you would be able to collect email addresses and reach out to those users and bring them back to your website.

We recommend using Constant Contact or ConvertKit for email marketing.

If you’re looking for alternatives, see our comparison of the best email marketing services.

5. Convert Website Visitors into Subscribers and Customers

Most visitors who come to your website will leave without enrolling into your online course. This is why it’s important to convert those abandoning visitors into subscribers or paying customers.

This is called conversion optimization.

The best tool for the job is OptinMonster. It is the best conversion optimization software on the market and helps you grow your business with more leads and sales.

For more details, see our guide on how to convert website visitors into customers.

Need even more tools? See our complete list of the best tools to grow your WordPress website like a total pro.

Frequently Asked Questions about Creating an Online Course (FAQs)

Over the last 10 years, we have helped thousands of entrepreneurs create their own online course. Below are the answers to the most frequently asked questions about creating an online course.

How can I create high-quality videos for my course?

Videos are an important element of online courses. It helps you better demonstrate your subject matter expertise and connect with your audience.

When first starting out, you don’t need to invest in fancy video equipments. A good Ultra HD webcam like Logitech Brio is sufficient for most users.

For screencasts and screen recording, you can use Camtasia or Screenflow for Mac.

Recently, our team has started using Descript online video editing platform, and it can significantly improve your workflow.

Can I use other online learning platforms with WordPress?

There are many online course platforms that you can use to build and sell courses.

This includes Teachable, Thinkific, Kajabi, Udemy, etc.

You can use any of them alongside your WordPress website. Depending on your needs, these platforms may offer an easier online course creation solution.

However they’re generally more expensive and/or take a revenue share from your course sales.

Which is the best webinar platform for course creators?

Nothing beats live webinars when it comes to online education. You can use to boost your audience engagement and improve membership retention.

We have compared the best webinar platforms here.

Most of these solutions will let you create live webinars, automated evergreen webinars, and come with tons of webinar engagement features.

How can I validate my course idea?

Creating online course content takes a lot of time and effort. This is why we always recommend users to validate their course idea before hands.

There are several ways to validate a course idea.

You can run a poll or survey on your website, ask for audience feedback on social media, or look at your most popular blog posts or YouTube videos because often the most popular ones can be turned into courses.

What’s the one “little-known” thing that I can do to make my online course successful?

While there are many tactics that you can use to make your online course idea successful and profitable.

The little-known tactic that works really well is case studies. Unfortunately not enough course creators use them.

A case study allows you to highlight the most successful students in your community. This not only provides encouragement to others, but it can also help those who don’t know how to take maximum advantage of your products.

We use case studies in many of our own businesses for social proof to boost conversions, but also to help our new users find encouragement and motivation.

We hope this article helped you easily create a successful online course in WordPress. You may also want to see our tips on how to add push notifications to connect with visitors after they leave your website, our our comparison of best live chat software for membership sites.

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 and Sell Online Courses with WordPress (Step by Step) appeared first on WPBeginner.



from WPBeginner https://ift.tt/32mWGob
More links is https://mwktutor.com

Where to Get Cheap Domains? 10 Cheapest Domain Registrars in 2021

Online presence is everything. Whether you’re a start-up, freelancer, or creative, eventually you’ll need to level up and purchase a professional domain name to show your customers that you’re legitimate. However, cheap domains can be hard to come by these days, and some of the best names are already taken.

from CodeinWP https://ift.tt/3ahAm4a
More View at https://mwktutor.com

Wednesday 27 January 2021

How to Create a Services Section in WordPress

Do you want to add a services section to your WordPress website?

Many professionals, small companies, and agencies need a way to showcase their services across their website.

In this article, we’ll show you how to easily create a services section in WordPress. We’ll also share how to collect leads from your services section with a contact form.

Creating a services section in WordPress

Why Create a Services Section in WordPress?

Normally, you can create custom pages in WordPress for each service you offer.

After that, you can add links to those pages in your navigation menu at the top or in the page content.

A services section on your homepage lets you quickly highlight the services to potential customers and clients. It is usually a compact area in the layout of your homepage or landing pages.

Here’s an example of how a typical services section could look:

Completed services section, with blue icons and blue links

This helps you provide a quick overview of different services with a call to action where users can get more details or fill out a form.

That being said, let’s take a look at how to easily make a services section in WordPress and then add it to any page on your website.

Create Custom Homepage with Page Builders

If you’re looking for the most customizable way to add a services section to your homepage, then you may want to consider using a custom landing page.

You can use one of the many drag & drop WordPress page builders to create a custom page with services section without writing any code.

For custom landing pages, we recommend SeedProd. It’s used by over 1 million websites and comes with tons of pre-made section templates and landing page templates.

SeedProd Page Builder

If you’re looking for a SeedProd alternative, then you can take a look at Beaver Builder, Divi, or Elementor because they all will let you customize your homepage to add a completely custom services section to your homepage.

If you don’t want to use a page builder, then don’t worry. There are other WordPress plugins that can let you add a services section using Gutenberg.

Creating a Services Section in WordPress using Block Editor

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

Upon activation, go to the Service Box » Add New Service Box page in your WordPress admin to create a services box.

Creating a new set of services boxes in WordPress

Here, you need to enter a title for your services area and choose a design option. There are 2 different designs to choose from in the free version.

Once you’ve done this, simply scroll down the page a little. Here, you will see two sample services, with a title, description, and icon.

Two service boxes with default text have already been created for you

Go ahead and type in a title and description for your services. After that click on the current icon, and then select the one you want to use.

Choose an icon to use for each service that you want to list

It’s also best practice to add a link to a page for further information about the service. This gives you the space to let people know how to book and pay for your service.

Add a link for each service box that goes to to a page with more information

You can also add more service boxes using the ‘Add New Service Box’ button. Simply click on this to create as many boxes as you need.

Add new boxes to your set of service boxes by clicking the button

Once you’ve created your service boxes, click on the Publish button at the top of the page to save your changes. Don’t worry, this won’t add the service section to your site straight away.

Click the publish button to publish your service boxes

You are now ready to add this services section to your home page or any post or page. You can even add it sidebar or footer widget-area.

Adding Your Service Section to a WordPress Page

To add the services section into a page, you’ll need to copy the shortcode generated by the plugin. You can find under the service boxes.

Get the shortcode that lets you add your service boxes into a page, post, or widget area

After copying the shortcode, you can add it to any WordPress post or page. Simply edit the page where you want to display the services section or create a new one.

On the post edit screen, click on the (+) button to add a new block. You need to look for the shortcode block and then click on it to insert it into the content area.

Adding a shortcode block using the WordPress block (Gutenberg) editor

Next, you just need to paste your shortcode into the block settings.

Pasting the service boxes shortcode into the shortcode block

After that you can save or publish your page and preview it. Here’s how the services section looks live on our demo website:

A completed services page with a service section

Styling Your Services Section

The plugin gives you some basic options to easily change the appearance of your services section.

Simply go to Service Box » All Service Box page in your WordPress admin area and then click on the services section you created earlier.

The page showing your service boxes

This will open the services edit screen where you’ll find the styling options in the right column. From here, you can change fonts, colors, show or hide icons, ‘Read more’ link, and more.

Changing the options for your service boxes

Don’t forget to click the ‘Update’ button at the top of the page to save your changes.

Creating Request a Quote Form For your Services

Now that you have added a services section, the next step is to convert those users. Many businesses do this by adding a request for a quote form.

It is basically like any contact form but with a few differences to match your business needs. This allows customers to send you a message, and you can then sell them your service.

The easiest way to do this is by using WPForms, which is the best WordPress forms plugin. It allows you to easily add any type of forms to your website using a simple drag and drop tool.

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

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

Entering your license key for WPForms

Next, you need to visit the WPForms » Addons page and click on the Install button next to the ‘Form Template Pack Addon’.

Adding the form templates pack addon to WPForms

This addon contains several additional templates including one to create a request a quote form.

Now you are ready to create your form.

Simply go to the WPForms » Add New to launch the WPForms form builder. First, you need to type in a name for your form, then select the Request a Quote template.

Selecting the 'Request a Quote' form template in WPForms

WPForms will now load the form editor with all the entries you usually need in a ‘Request for Quote’ form. These include Name, Business/Organization, Email, Phone, and a box where the customer can type their request:

The default Request a Quote template in the WPForms form builder

You can easily add new fields from the left column or edit existing fields by simply clicking on them. You can also move the fields up and down to rearrange them.

Modifying the Request a Quote form

Once you are satisfied with the form simply click on the Save button at the top to save your changes.

You can now add this form to any WordPress post or page. Simply edit the page where you want to add the form and the WPForms block to the content area.

Add a WPForms block to your page in WordPress

From the block settings, you need to select the form you created earlier from the drop-down menu. WPForms will load a preview of the form on screen.

You can now go ahead and save or publish your page to see your form live on your WordPress site.

The Request a Quote form live on the website

Want more help creating your form, setting up notifications, and putting your form on your website? Just check out our step by step tutorial on creating a contact form.

Tip: You can also use WPForms to take bookings and even to accept credit card payments.

We hope this article helped you learn how to create a services section in WordPress. You might also like to check out our article on the best live chat software and best business phone services for small businesses.

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 Services Section in WordPress appeared first on WPBeginner.



from WPBeginner https://ift.tt/36hzVWb
More links is https://mwktutor.com