Category Archives: WordPress Plugins

WooCoinbase Review: Add Coinbase Commerce Gateway To WooCommerce

At this point, I’ve already stuck my foot in my mouth when it comes to quoting the price of cryptocurrencies here at WPLift. Suffice it to say, there are all kinds of reasons you might want to accept cryptocurrency payments at your WooCommerce store – you probably know most of them already if you’re reading ... Read moreWooCoinbase Review: Add Coinbase Commerce Gateway To WooCommerce

The post WooCoinbase Review: Add Coinbase Commerce Gateway To WooCommerce appeared first on Learn WordPress with WPLift.

10 Best Calculator Plugins for Your WordPress Site

Are you looking for a calculator plugin for your WordPress blog? There are many types of WordPress plugins to calculate prices, measurements, dates, form fields, and more. In this article, we have hand-picked some of the best calculator plugins for WordPress.

Best WordPress calculator plugins

1. Calculated Fields Form

Calculated Fields Form

Calculated Fields Form allows you to create forms and do mathematical calculations among form fields. It comes with a form and logic builder which you can use to add fields, assign values to those fields, and define mathematical operators to run.

It is quite flexible and can be used for a wide range of use cases. The plugin’s user interface may look a little rough around the edges, but don’t let it stop you from trying the powerful features packed inside.

2. CT Mortgage Calculator

CT Mortgage Calculator

CT Mortgage Calculator allows you to easily add a simple mortgage calculator to your website. It runs well with other popular WordPress real estate plugins and comes with an easy to use widget that you can add to your sidebar. You can enter a title for the widget and enter a currency name or symbol.

It uses JavaScript to do the calculations and allows users to enter the mortgage amount, interest rate, installments, and down payment options to calculate their monthly payment.

3. Responsive Mortgage Calculator

Responsive Mortgage Calculator

Responsive Mortgage Calculator is another easy to use mortgage calculator for real estate websites. It comes with a sidebar widget and shortcode that you can use inside your WordPress posts, pages, and below your listings.

It also comes with light and dark color schemes however you can disable plugin styling and use your theme’s colors or add custom CSS to style the calculator.

4. Measurement Price Calculator

Measurement Price Calculator

If you are running an online store with WooCommerce that has items available in flexible measurement sizes, then this is the plugin you will need. It allows you to add item pricing based on measurement selected by the customer.

It comes with quantity-based calculation method which automatically calculates pricing from user’s selected quantity. The other method is user-defined which allows customers to select different measurements to calculate pricing and shipping. It is tested to work well with other top WooCommerce plugins and addons.

5. WooCommerce Product Options and Price Calculation Formulas

WooCommerce Product Options and Price Calculation Formulas

This plugin provides additional WooCommerce product options and pricing calculation formulas. It comes with custom product layout builder which allows you to add and display more product options for each item.

It includes conditional logic and formulas to calculate pricing based on selection. You can use it to show, hide, or completely change product pricing based on customer selection. You can also use mathematical formulas to calculate product pricing and other display options.

6. WooCommerce Price Based on Country

WooCommerce Price Based on Country

WooCommerce Price Based on Country does exactly what it says. The plugin uses WooCommerce’s geolocation feature to guess customer’s location and then displays pricing in the local currency.

It can automatically calculate pricing by the exchange rate, or you can also manually set it for each currency. It also includes a country switcher widget which enables users to change country and currency on their own. This plugin works well with multilingual WordPress sites.

7. TimeZone Calculator

TimeZone Calculator

TimeZoneCalculator allows you to calculate time difference among different timezones. You can select the timezones that you want to display and then add it to your WordPress sidebar using a sidebar widget.

The plugin also comes with shortcodes which enables you to display time with timezone calculator on any page or post.

8. Date Calculator

Date Calculator

Date Calculator is a simple plugin that allows you to calculate dates and display them using shortcodes. You can calculate dates by adding or subtracting days. You can also use a simple shortcode to display today’s date.

The shortcode also works with contact form plugins like Contact Form 7.

9. Repayment Calculator and Loan Application Form

Loan Calculator

Repayment Calculator and Loan Application form is a flexible WordPress plugin that can be used for a number of businesses. It allows users to select a loan amount, term, and calculate their monthly payments.

It comes with a number of styles with borders, colors, and backgrounds. It can be used with any currency and comes with the loan application form as well.

10. CC BMI Calculator

CC BMI Calculator

The CC BMI Calculator is a simple body mass index calculator that can be used on health and fitness websites. It allows users to enter their height and weight information to see their body mass index score.

The plugin allows you to choose different styles by changing colors however using this feature requires you to add a link to the plugin author website. It is available in both imperial and metric systems, so you can also choose which unit will be used as the default option.

We hope this article helped you discover the best calculator plugins for WordPress. You may also want to see our list of must have WordPress plugins for business websites.

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

The post 10 Best Calculator Plugins for Your WordPress Site appeared first on WPBeginner.

WordPress Plugin vs Functions.php file (Which is better?)

We are often asked by users whether they should install a WordPress plugin or add code to their theme’s functions.php file? Some users believe that adding code is always the better method for performance, but that’s actually not true. In this article, we will explain the pros and cons of WordPress plugin vs functions.php file and which method is better.

WordPress plugin vs functions file

Installing WordPress Plugins vs Custom Code in Functions.php File

You will often find two solutions to add something to your WordPress site. You can either install a WordPress plugin or add a code snippet to your theme’s functions.php file.

Both methods will do the same thing, and they are both correct. However, many users want to know which one is better for WordPress speed and performance.

Some users feel concerned about installing too many plugins, and how it may affect their website speed and WordPress security. Others worry that adding custom code can break their website, and they may not be able to easily fix it.

Let’s compare both solutions to figure out which one is better for WordPress performance.

Pros and Cons of functions.php File

WordPress functions.php file

Functions file in WordPress allows theme developers to define custom functionality for their theme. This file acts like a giant WordPress plugin and can be used to add any other custom code snippets you may want to add to your website.

Here are the advantages of adding custom code to your theme’s functions.php file.

Pros

  • You can easily use built-in theme editor in admin area to edit functions.php file
  • You can copy and paste all code snippets in one file
  • You get a chance to study the code and learn how it works

However, there are also some disadvantages of using functions.php file to save all your custom functionality.

Cons

  • Your custom code will not work if you switch themes
  • Unless you are using a child theme, updating your theme will overwrite functions.php file
  • It becomes harder to understand where theme code ends and where your custom code begins
  • Some code snippets can be too large and need additional scripts and styles

Understanding Limitations of WordPress Functions File

There are many handy tricks for the WordPress functions file which make it very tempting. However, it is not a replacement for proper WordPress plugins.

Adding code snippets to your functions.php file will have the exact same impact on performance, that a WordPress plugin with the same code would have otherwise.

Not all functionality and features you need can be added to the functions.php file. For example, a custom code may need additional scripts and stylesheets to work properly.

We believe that the theme’s functions.php file should be used for what it’s intended purpose was: theme based functionality added by developers.

Pros and Cons of Installing WordPress Plugins

WordPress plugins

WordPress plugins are like apps for your WordPress website. They contain code that hooks itself to the core WordPress software to provide more features and functionality.

See our article on what are WordPress plugins and how do they work.

Here are some advantages of using a WordPress plugin instead of adding code to your functions file.

Pros

  • A WordPress plugin doesn’t depend on your theme
  • If it is the same code, then it would have the same performance impact as functions file
  • It is easier to disable, update, or reinstall as needed
  • Easier to manage as you know what each plugin does from its description

Now, we are not saying that installing all WordPress plugins is good. There are some disadvantages as well.

Cons

  • You will have to install updates for another plugin
  • Plugin author could abandon the plugin in the future specially if it’s free
  • You wouldn’t get to practice with the code

WordPress Plugin vs Functions File – Which One is Better?

If there is a WordPress plugin with the same code, then we believe that using a plugin is a better choice.

In terms of performance, it does not matter where the code runs. Whether it loads from functions.php file or as a separate plugin, if it is the same code, then it will have the same performance impact.

Managing separate plugins is much easier than editing a single large functions file. Adding random code snippets in the same file even when they are not related or dependant on each other makes things complicated.

If you choose a plugin, then you can benefit from future updates which may improve performance, fix bug, or patch security vulnerability.

When Should I Add Code to Functions.php File?

If the functionality you are trying to add is not available as a plugin and the code snippet is really simple, then you can add it to your theme’s functions file.

Another possible scenario is when you are adding functionality that is related to your WordPress theme or child theme. For example, creating new image sizes, showing dates, adding custom code before or after content, and more.

If you often add custom code snippets to your website, then there are even better ways to do that. You can save them in a site-specific WordPress plugin or use Code Snippets plugin to organize all your custom code.

We hope this article helped you understand WordPress plugin vs functions.php file and which one is better. You may also want to see our beginner’s guide on how to choose the best WordPress plugins for your website.

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 WordPress Plugin vs Functions.php file (Which is better?) appeared first on WPBeginner.

WP Media Folder Review: Organize Your WordPress Media Library With Folders

When you have hundreds, or even thousands, of files in your WordPress media library, it’s mindbogglingly difficult to find individual files. I have a site that's almost ten years old - it's dang near impossible to find something I uploaded that long ago if I don't remember the exact file name. WP Media Folder fixes this by letting you create folders inside your media library.

The post WP Media Folder Review: Organize Your WordPress Media Library With Folders appeared first on Learn WordPress with WPLift.

MailOptin Review: Flexible Opt-in Forms To Build Your Email List On WordPress

If you want to build a long-term asset for your blog or website, you should build an email list. And if you want to do that, you need a way to display opt-in forms on your WordPress site to actually convince visitors to subscribe. MailOptin helps you do that without leaving your WordPress dashboard. And ... Read moreMailOptin Review: Flexible Opt-in Forms To Build Your Email List On WordPress

The post MailOptin Review: Flexible Opt-in Forms To Build Your Email List On WordPress appeared first on Learn WordPress with WPLift.

Metorik Review: Awesome WooCommerce Analytics And Reports

If you run an eCommerce store, you need data. It tells you who your most valuable customers are, what products perform the best, how your vital signs are doing, and lots more. More than needing data, you need that data to be in a format that you can quickly access and actually apply to making ... Read moreMetorik Review: Awesome WooCommerce Analytics And Reports

The post Metorik Review: Awesome WooCommerce Analytics And Reports appeared first on Learn WordPress with WPLift.

(Really) Marvellous Metrics Review: Analytics Made Easy

In this (Really) Marvellous Metrics review we’ll be taking a look at this new WordPress plugin that has been created to help you easily track and understand your page web analytics. Whether you run a humble blog, an expanding eCommerce store, or a multinational business site, (Really) Marvellous Metrics could be just what you need ... Read more(Really) Marvellous Metrics Review: Analytics Made Easy

The post (Really) Marvellous Metrics Review: Analytics Made Easy appeared first on Learn WordPress with WPLift.

How to Easily Import and Export WordPress Users

Do you want to import and export WordPress users from one website to another? This could be really helpful when you are merging multiple sites and want to automatically shift all users from existing websites. In this article, we will share how you can easily import and export users in WordPress.

Import and Export Users in WordPress

Why or When You May Need to Import and Export Users in WordPress?

While there are several use-cases for importing and exporting WordPress users, the most common scenarios when you need to import and export users are:

  • When you purchase a website and want to merge the content and user base.
  • When you want to consolidate two sites and merge their content and user base.
  • When you want to import all users into an email list or your CRM.

On large multi-author sites or a membership site in WordPress, each user profile has tons of useful data (like profile photo, bio information, social links, and more).

While you can surely ask them to recreate their profile, it’s inconvenient and not an ideal user experience.

Let’s take a look at how you can easily import and export users from one WordPress site to another.

Exporting Users in WordPress

First thing you need to do is install and activate the Import Export WordPress Users plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Users » User Import Export page and scroll down to the export section.

User Export

On this page, you need to select a user role to export from your website, select fields that you want to export with the user, and more.

By default, all user fields will be exported. If you don’t want to export a specific item, then you can simply uncheck it from the columns section.

After selecting the settings, you need to click on the Export button. It will save a CSV export file in your computer.

You can use this file to import users into another WordPress site.

Importing Users in WordPress

This step will also require the same Import Export WordPress Users plugin that we used above to export users. Make sure that you have this plugin installed and activated on the site where you want to import users.

Next, you need to visit Users » User Import Export page and click on the Import Users button.

Import Users

On this page, first you need to click on the Browse button and then select the CSV file you want to import. After selecting the CSV file, you need to click the Upload file and import button.

Upload File

Once done, you will see a success message with details on how many users imported, status message, and more details on the process.

User Import

The plugin will not only import users, it will also automatically assign them correct user role and fill in other profile settings.

We hope this article helped you learn how to easily import and export WordPress users. You may also want to see our guide on how to track user engagement in WordPress.

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

The post How to Easily Import and Export WordPress Users appeared first on WPBeginner.

9 Best WordPress Facebook Plugins to Grow Your Blog

Ae you looking for the best Facebook plugins for WordPress? Facebook is the world’s largest social media platform with more than 1 billion active users. In this article, we have hand-picked the best WordPress Facebook plugins to help you grow your blog and get more traffic.

Best Facebook plugins for WordPress

1. Shared Counts

Shared Counts

Shared Counts is one of the best social media plugins for WordPress. It allows you to easily add social sharing buttons to your WordPress posts including the Facebook share button.

It is highly optimized for speed and performance and can accurately show shares count for Facebook, Twitter, LinkedIn, and more. It comes with multiple button styles which allows you to choose the one that looks best on your site.

2. Custom Facebook Feed

Custom Facebook Feed

Custom Facebook Feed allows you to display your posts from a Facebook page on your WordPress website. This custom Facebook feed is responsive, SEO friendly, and customizable. You can even fetch multiple feeds from different Facebook pages and display them anywhere on your website using a shortcode.

You can create a new page for your Facebook feed or display it in your blog’s sidebar. The plugin is optimized for speed and makes it super easy to change colors / style of your feeds from the WordPress admin area. For detailed instructions, see our article on how to create a custom Facebook feed in WordPress.

3. Pixel Cat – Facebook Pixel

Pixel Cat - Facebook Pixel

Pixel Cat Facebook Pixel plugin allows you to add your Facebook retargeting pixel to your WordPress site. This pixel allows you to show customized ads to Facebook users who have visited your website. To learn more, see our article on how to install Facebook retargeting pixel in WordPress.

Aside from making it easy to install the Facebook pixel in WordPress, this plugin also helps you track WooCommerce customers and show them better ads in their Facebook feeds.

4. Facebook Reviews

Facebook Reviews

Facebook Reviews plugin allows you to display Facebook page reviews on your WordPress website. It comes with an easy to use widget that allows you to connect your website to your Facebook page and display Facebook users reviews.

This helps you add social proof to your website and build trust in your brand. The free version works fine, but you will need the pro version to display reviews in Schema.org rich snippets format.

5. Facebook Widget

Facebook Widget

Facebook Widget plugin allows you to easily add a Facebook page plugin to your blog’s sidebar. It is extremely easy to use and comes with a shortcode that you can use to display the Facebook Like box anywhere on your website.

It comes with the same customization options as the default Facebook page plugin. You can show or hide profile pics, page cover, customize width / height, and select language.

6. Nextend Social Connect

Nextend Social Login

Nextend Social Connect plugin allows users to register and login on your website using their social profiles. It supports login with Facebook, Google, and Twitter.

It works seamlessly with the default WordPress login and registration forms, so users have the option to use Facebook or use the default signup method. Once registered, users can disconnect their social account at any time by visiting their user profile page inside the admin area.

7. AccessPress Facebook Auto Post

As the name suggests, AccessPress Facebook Auto post allows you to automatically share new articles on your Facebook page or profile. Upon activation, you will need to connect to your profile and authorize your website.

It allows you to choose which content you want to share: posts, pages, and custom post types. You can even disable sharing for a single item before publishing it. For detailed setup instructions, see our article on how to automatically post to Facebook from WordPress.

8. WP Embed Facebook

WP Embed Facebook

WP Embed Facebook plugin makes it easier to embed Facebook events, pages, profiles, and Facebook videos on your WordPress website.

You can also use it to add a Facebook like or share button. The plugin comes with a handy shortcode that you can use to embed different items anywhere on your site. It also comes with really good documentation to help you make the most out of it.

9. Yoast SEO

Yoast SEO

Yoast SEO is the complete WordPress SEO plugin on the market. Apart from adding SEO meta tags, it does so many other things to improve your website including social features.

You can use it to fix incorrect Facebook thumbnail issue and automatically add Facebook Open Graph meta tags to every page on your website. You can also let search engines discover social media profiles associated with your website.

That’s all, we hope this article helped you discover the best WordPress Facebook plugins to grow your blog. You may also want to see these actionable tips to drive traffic to your WordPress 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 9 Best WordPress Facebook Plugins to Grow Your Blog appeared first on WPBeginner.

WooCommerce Order Form: Increase Your Conversion Rates

When your default layout doesn’t fit with how your customers browse and buy products, a WooCommerce order form could be exactly what you need. For many online stores, adding a WooCommerce bulk order form is one of the most efficient ways to improve the customer experience, increase conversion rates and boost sales. Shops with large product ... Read moreWooCommerce Order Form: Increase Your Conversion Rates

The post WooCommerce Order Form: Increase Your Conversion Rates appeared first on Learn WordPress with WPLift.