Tag: wordpress

  • How to Use Bootstrap in WordPress: A Beginner’s Guide

    WordPress and Bootstrap are both popular platforms for web design that aren’t often considered as compatible. Bootstrap has grown to be a favorite CSS platform for developers because it makes it easy to build responsive websites. In fact, more than 70% of websites on the internet are designed with it. You can code anything you’d like into its responsive framework to create a unique website that’s mobile friendly, right out of the box. With more than half of all users accessing the internet via a mobile device, it’s crucial to have a responsive site.

    What if we told you that you can use Bootstrap and WordPress together? Well, you can. There are a few ways to use Bootstrap in WordPress, including WordPress Bootstrap plugins which can add Bootstraps blocks to the WordPress Editor. We’re going to cover all the ways to use Bootstrap in WordPress and show you how.

    What is Bootstrap?

    Bootstrap was created by two Twitter experts, Marc Otto and Jacob Thornton. With so many people accessing the internet by phone, they wanted to design a framework that would put mobile users first. Because of this, Bootstrap is widely popular with web developers. To accomplish mobile-first design, Bootstrap uses a grid system, or column structure, that adjusts page designs at certain breakpoints or screen resolution.

    WordPress Bootstrap

    Bootstrap is made up of HTML, CSS & Javascript. It’s a free and open source framework, which allows users to add in any HTML or Javascript component that they wish. In fact, there are many Bootstrap developers who create components and sell them in several marketplaces to assist beginners in developing their own websites. Like WordPress, Bootstrap is very popular and allows for some beautiful designs.

    The Advantages of Using Bootstrap

    In addition to being geared towards mobile devices, Bootstrap is fast. It is a CSS Framework which is different from a CMS. So there isn’t any bloat like you will find on some CMS’s to slow your site down. Another advantage is browser capability. It works right out of the gate with Chrome, Safari, Firefox, and others. There isn’t any need to use webkit CSS rules to make Bootstrap work — making it a excellent choice for cross-browser compatibility. Also, the framework is easy to use. Anyone who has knowledge of CSS and HTML can work with Bootstrap. Lastly, there is a large community surrounding Bootstrap. Users are quick to share knowledge about features, coding, or any other related issue a new developer may need help with.

    Ways to Use Bootstrap in WordPress

    There are a few options if you want to use Bootstrap in your WordPress site. You can install the script manually, but you’ll need to do most of the coding on your own to bring it to life. Secondly, you can use a pre-made Bootstrap theme for WordPress. There are several out there to choose from, but by choosing this option, you are stuck with your site looking exactly like the theme. There won’t be many options to make it look less cookie-cutter unless you code your own page templates to change things up. And, lastly, you can use a WordPress plugin to build your site using Boostrap.

    In recent years, WordPress developers have started releasing Bootstrap plugins that can be used within WordPress. These plugins are beginning to take hold, especially since the release of Gutenberg Blocks. By using a WordPress Bootstrap plugin, you can bring the best of both platforms together. Before we delve deeper into what you can do with these plugins, let’s expand a bit on the other option available to you to bring your Bootstrap project to life in WordPress.

    Installing Bootstrap Manually

    If you don’t want to use a plugin, you can always build your site with Boostrap manually. To do this, you’ll need to add a link reference to Bootstrap in the head of your WordPress site. You may need to add a code snippets plugin to do this depending on what theme you are running.

    A CDN link to Bootstrap’s external stylesheet in your site’s header will look something like this:

    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
    

    Make sure to check Bootstrap’s website to ensure you are using the latest script so that you can benefit from the latest release available to you. Keep in mind that you can build your own WordPress theme that incorporates Bootstrap, but it will take quite a bit of work on your part. This would involve modifying core pages — index.php, wp-admin.php, and others. For this tutorial, we’re going to use a Bootstap plugin since it is a much easier approach for most.

    Using a Bootstrap WordPress Theme

    There are quite a few free Bootstrap WordPress themes available in the WordPress repository. Each one is fully responsive, and built completely using Bootstrap. Let’s take a look at some of the more popular choices.

    Shapely

    Shapely Bootstrap theme

    Shapely is the most popular Boostrap WordPress theme available. It’s a one page design that comes with Bootsrap fully integrated. There are several homepage widgets, and support for major WordPress plugins such as WooCommerce, Jetpack, Gravity Forms, Yoast SEO, and more. Thanks to the Boostrap integration, Shapely is 100% responsive.

    Illdy

    Illdy Bootstrap theme

    Illdy is a multi-purpose Bootstrap WordPress theme that utilizes a front-end visual editor. Like all Bootstrap based themes, Illdy is fully responsive. It’s suited for creative businesses because of it’s built-in portfolio functionality.

    Activello

    Activello Boostrap theme

    Activello features a full-screen slider on the homepage, which provides a stunning look when you first click on the page. It’s well-suited for bloggers and comes with support for most popular WordPress plugins. Additionally, Activello is compatible with Schema, which makes this theme very SEO friendly.

    Using a WordPress Bootstrap Plugin

    For the purpose of this tutorial, we’ll be using a plugin to build our Bootstrap page in WordPress. Both the plugins we’ll talk about enable the use of Bootstrap with Gutenberg blocks, but one offers an easier path than the other.

    Bootstrap Blocks

    bootstrap blocks plugin

    Bootstrap Blocks is a WordPress plugin that add Boostrap Gutenberg blocks to the WordPress editor. The plugin requires quite a bit of customization to fully integrate with WordPress. It doesn’t include the Bootstrap library into the plugin. If you want to have that functionality, you’ll need to manually add code to your functions.php file. This plugin is suited more for the WordPress developer with a good amount of programming knowledge. If you already have familiarity with how core WordPress files work, and have a good concept of Bootstrap, this might be the way to go. However, there’s one thing you should keep in mind about this plugin. You’ll only gain access to a few components — containers, rows, columns, and buttons. If you want a more robust option without a lot of hassle, you’ll likely want to consider a different approach.

    All Bootstrap Blocks

    all bootstrap blocks plugin

    The All Bootstrap Blocks plugin has some really nice features. Not only does it incorporate the Bootstrap framework into WordPress for you, it gives you 37 very cool blocks to use alongside Gutenberg blocks. You’ll get features like columns and rows — which are the foundation blocks of Bootstrap. Additionally, there are modals, accordions, content cards, icons, and so much more. It’s almost like having a fully functional theme just by installing a plugin. There is a bit of a learning curve to get things to look just right, especially if you are used to a drag and drop visual builder. However, if you’ve been coding by hand with divs and columns, this will be a breath of fresh air.

    How to Use Bootstrap in WordPress to Design a Page (Step by Step)

    For this tutorial, we’re going to build a page in WordPress using the Twenty Seventeen theme and All Boostrap Blocks. We’re going to model our page after the camera product page available with an Elegant Themes subscription.

    1. Modify the Twenty Seventeen Theme CSS for Bootstrap

    Now, if you know anything about Twenty Seventeen, you’ll see that by default, there is a big header image, followed by a two column layout. For our page layout, this simply won’t do. We’re going to need to make some changes in order to get our page to look like the camera product page.

    Twenty Seventeen Theme Layout

    The first thing we’ll need to do is remove the header image that comes standard on the theme. To do this, navigate to customizer in the black admin bar.

    Customize the WordPress Bootstrap site

    When the screen refreshes, click on the additional css section.

    boostrap Additional CSS

    Finally, add in the following css:

    /*Make page full width */
    @media screen and (min-width: 1200px) {
        .wrap {
            max-width:100%!important;
            padding:0;
        }
    }
    
    @media screen and (min-width: 1200px) {
    #primary .entry-content {
      width: 100% !important;
    		}
    }
    
    .site-content {
    	margin:0!important;
    	padding:0!important;
    }
    
    /* Hide Menu Bar */
    
    .site-branding {
        display:none;
    }
    
    /* Hide Page Title */
    .page .panel-content .entry-title, .page-title, body.page .entry-title {
        display:none;
    }
    
    /*Hide Site Footer */
        .site-footer {
            display: none;
        }
    }
    
    

    This will do a few things. First, it will make the width of the content fill the full width of the page. Secondly, it will remove any margin and padding on the page. Don’t worry, Bootstrap will control those. Additionally, it will remove the header and footer area of your site. Lastly, it will remove the page name from our soon-to-be masterpiece.

    Note: If you want to create footer for your page, you can omit the site-footer css rule above.

    Once you click publish, your page should look like this:

    Blank Page Template

    2. Install and Setup the Plugin

    Now that we have our theme’s page all ready to go, you’ll need to install the All Bootstrap Blocks plugin. Once installed and activated, there are quite a bit of customization options to choose from. You can adjust colors, typography, links, and a lot more. To get started, head over to Boostrap > Customize. You’ll find tabs for customizing your layout, content, creating forms, and components.

    Customizing WordPress Bootstrap Plugin

    3. Create a Page Layout With All Bootstrap Blocks

    To get started, create a new page. Once your page is created, start with a strip block for the first block on the page. This will create a section that adds a container, row, and column.

    Click on the + and click browse all. This will bring up a sidebar with the available modules.
    Under bootstrap layout, choose strip.

    Add Strip

    When the content is added, you’ll see that a container, row, and column are visible inside the strip. Next, you’ll choose a heading and set it to H4.

    Add a Heading

    Click the + to add another heading under the h4 tag. Set it to H1, then set the size to 7em.

    Set the H1 Tag

    Next, add a Bootstrap button by clicking the +. Type button in the search bar. Set the button’s text. Next, set the style to dark, the size to medium, and leave text wrap as default.

    Add a WordPress Bootstrap Button

    For the last item in the section, choose an image by clicking +. Add any image you like, but you can also right click on the Divi layout example and save the large camera image to use in your layout. Click upload to insert the image.

    Add an Image

    You’ll see that the image is directly underneath the button, but there’s not enough space between the two. To fix this, add a spacer. Click into the column underneath the image to bring up the +. Search for spacer. Add the spacer and give it 30px height. Next, click the up arrow to move it above the image.

    Add a Spacer

    4. Making Adjustments to the Container

    After saving the page, open it in a new tab. You’ll notice that we still need to set the background color for the section and give it a bit of padding to bump it down from the top of the page.

    Head back over to the back end and click inside the container. You can either do this by selecting the menu near the top of the page, or by clicking inside the container itself on the page builder. Next, slide the display background toggle on. Set the horizontal align to center, then set the color to #c6e8ff.

    Set the Background Color

    Next, set the container to container-fluid. This will make the container span the full width of the page.

    WordPress Bootstrap Fluid Container

    Finally, we’ll need to add some padding to the row. Click the dropdown menu on display. Set the padding to 50px top and bottom.

    Add Padding

    5. Create the Next Section

    Next, we’ll create a section with icons and text. To get started, add another strip beneath the first one by clicking the +. The next step is to insert an icon into the layout. Click the +, then type icon into the search bar.

    Insert an icon

    Select the icon module. Click the settings dropdown menu to reveal the icon choices. Choose dark as the style, then set the size to medium. Leave the default icon bi-activity as the icon selection.

    WordPress Bootstrap Icon Settings

    Under the icon settings, set the horizontal align to start. This will align the icon to the left to match the rest of the column.

    Icon Alignment

    Add an H4 and type your headline. Next, set the text alignment to left, color to dark, and leave the size at default. Finally, choose medium for the appearance.

    Icon Headline Settings

    Click + to add paragraph text. Set the alignment to left, color to dark, and leave the size at default. Use the text of your choice.

    Set the Icon Text

    Save the page and view it in a new tab. You’ll notice that there isn’t any spacing above the icon. To fix this, click into the row settings to add 50px padding to the top and bottom.

    WordPress Bootstrap padding

    Lastly, under settings XXL, set the horizontal align to center. This will center the content to the middle of the page in all screen sizes.

    Center Content

    The next step is to duplicate the columns. This is a big time saver. You’ll only need to swap out the icon and text. To do this, click the settings of the columns, then click duplicate. Repeat this step once more to have a total of three columns.

    Duplicate columns

    Now there are three columns that are centered in the page with a left alignment on the icon and text. Next, change the icon in the middle column. Click into the icon and choose bi-lightbulb-fill. For the icon in the third row, choose bi-zoom-in.

    Choosing a Different Icon

    Next, change the headlines in the second and third columns.

    Change Column Headings

    Duplicate the First Row

    Now the first row of icons is complete, duplicate the row to create the second row of icon boxes.

    Duplicate the Icon Box Row

    Repeat the steps above to change the headlines in all three columns, as well as the icons. For the icon in the first column, use bi-wind. The icon for the second column is bi-brightness-lo-fill, and the third icon to bi-person-fill. The last step of this row is to change the headlines.

    Second Row Icons

    6. Create the Last Section

    Start with adding a new strip. Under the settings, change the background color to #f0f0f0.

    Add the Last Strip

    In the container settings, set the width to container-fluid. Also, add 50px top and bottom padding to the row.

    Container Fluid

    Duplicate the single column to make one more column. Next, adjust the column width on each column to adjust for the size requirements of the layout. For the first column, make it a width of 5.

    Adjusting column widths

    For the second column, leave the column width as is. Next, add a H2 heading, followed by an H4 heading. Set both to align left.

    Add the Headings

    Add an image to the right column. Refer to our Divi layout to snag the image to import. Set the image to align to the center.

    Add the Image

    For the next step, insert two columns under the headings in the left column. Add the row module.

    Add the Row Module

    Duplicate the column within the newly created row.

    Duplicate the Columns

    Click into the first column on the left and set the size to 3.

    Set the Column Width

    Now that we have our column structure in place, we can add an icon. Choose the bi-arrows-fullscreen icon and set the size to large. Set the style to dark. Be sure to align the icon to the left by setting the horizontal align to start.

    Large Icon Settings

    For the right column, we’ll add a H4 heading, followed by a paragraph. Make sure to set the color to dark, then left align each. Add a spacer underneath the H4 heading and give it a height of 30px.

    Add the right column content

    Next, we’ll duplicate the interior row we created two times.

    Duplicate the Rows

    The final step is to change the icons in the second and third rows. For the first, choose the bi-card-image icon. The second icon will be bi-camera-fill.

    7. Optimize Page for Mobile Devices

    One of the best things about Bootstrap is the ability to make your design responsive with ease. The page is complete, but there are a few steps left to to make it ready for mobile devices. First, we’ll need to tell Bootstrap how many columns our sections should take up on smaller screens.

    The first strip is already set to one column, so we don’t need to worry about that one. For the second strip, there are a small adjustment to make.

    WordPress Bootstrap 2nd strip

    Scroll down to the settings (XS) section and set the columns to 1.

    XS Settings

    Next, switch over to XXL and set the columns to 3. This will tell Bootstrap to place all content in the row to display in one column on mobile, and three columns on larger screens.

    XXL Settings

    You can tweak the other screen sizes to your liking, but these settings will make your layout look good on both larger and smaller screens.

    Final Result

    Bootstrap responsive view

    What About Using Bootstrap with Divi?

    Divi by Elegant Themes

    While Bootstrap is a good option when working in generic WordPress themes, it’s generally not the best option if you plan to use Divi. With Divi, you have the ability to design fully responsive, beautiful websites without the need for any Bootstrap integration. Divi comes standard with more than 40 modules, which allows for endless design possibilities. Additionally, Divi includes more than 200 full website packs with over 2,000 pre-made website layouts available to you.

    If you plan to create your own look, Divi’s built-in Visual Builder makes it easy. You can see changes in real time as you design your site on the front end. You can create and customize your pages effortlessly using modules, then edit colors, text, add background effects, and more. Divi allows you to save and manage your designs, as well as set global elements and styles.

    WordPress Bootstrap Plugins Make it Easy to Use Bootstrap

    While WordPress isn’t made to work with Bootstrap natively, they do work well together with a little help. If you are the hands-on type, you can bring Bootstrap into your WordPress site by creating custom page templates, but you’ll need to do a lot of coding. That being said, with the plugins available in the WordPress repository, integrating the two is a less daunting task. With the All Bootstrap Blocks plugin, you can take an ordinary plain Jane theme and create a WordPress site without all the time needed to code things manually. If you are looking for an easy way to integrate Bootstrap with WordPress, you should definitely look into using a WordPress Bootstrap plugin.

    Have you incorporated Bootstrap into your WordPress builds? If so, sound off in the comment section below.

    The post How to Use Bootstrap in WordPress: A Beginner’s Guide appeared first on Elegant Themes Blog.

    Go to source

  • 5 Best IDX Plugins for WordPress in 2023

    If you’re in the real estate business, you’re probably familiar with Multiple Listing Service (MLS) portals and Internet Data Exchange (IDX) software. Furthermore, if you have a real estate website built on WordPress, being able to pull listings using IDX software will make your work a lot easier.

    In this article, we will talk about what IDX software is. Then we’ll introduce you to the best IDX plugins for WordPress and discuss their key features, pricing, and who should consider using them. Let’s get to it!

    What Are IDX Plugins?

    To understand what IDX plugins are, we need to talk about the software itself. IDX is software that enables users to look through real estate listings in a specific area. The software pulls those listings from MLS platforms.

    IDX homepage

    In turn, MLS platforms are local portals where realtors can share information about their listings. Realtors must keep that information up to date, making MLS listings much more comprehensive than what you might find on platforms such as Zillow or Redfin.

    However, MLS portals are for realtors only. IDX software enables you to pull information about listings from those portals and display it on your website. In other words, you can use IDX to start your own listing site.

    IDX plugins for WordPress allow you to display listings from MLS portals and manage them directly within WordPress. IDX plugins are similar to other popular real estate plugins for WordPress. However, this family of plugins focuses solely on IDX integration.

    5 Best IDX Plugins for WordPress

    In this section, we’re going to look at some of the best IDX plugins for WordPress that will allow IDX integration for your real estate website.

    1. Realtyna WPL

    Realtyna Organic IDX

    Realtyna WPL is developed by Realtyna and is one of the most popular and powerful real estate plugins for WordPress. With this tool, you get to use a listings system on your website and the ability to upload new properties manually. And the free version comes with many powerful features to add and customize listings to build a real estate website.

    Realtyna WPL can pull information that includes listing features, appliances, address maps, neighborhood details, images, videos, and more.

    If you pay for their pro version and their Organic MLS Integration add-on, you’ll be able to host all the MLS/IDX data on your own server. This is great for real estate agents or agencies that want an independent solution with complete ownership of MLS data on their websites. This type of control is also great for Search Engine Optimization (SEO).

    Divi Integration

    The plugin integrates with the Divi Builder making it easy to add listings using custom Divi Modules.

    realtyna wpl divi integration

    For more, check out how to add real estate listings with Divi.

    Key Features for WPL Real Estate:

    • Supports organic MLS/IDX integration for WordPress
    • Pull data from the MLS provider of your choice
    • Tons of add-ons for more flexibility
    • Publish imported listings or pull them organically
    • A property/listing management system within WordPress

    Adding IDX properties using Realtyna

    After importing properties using IDX, you can edit their information with the WPL property manager. This manager enables you to add any missing information and edit property descriptions using a simple interface.

    Realtyna WPL is for you if…

    • You want more control and ownership of property listings on your site.
    • You want Divi integration and custom modules to add and customize listings on your site.
    • You want to be able to customize the listings that you import using IDX
    • You want options for organic MLS/IDX integration
    • You are a real estate agent or agency that wants an independent listing website.

    Pricing: IDX integration is available with WPL Pro, starting at $199 | Learn More About WPL Real Estate

    2. Showcase IDX

    Showcase IDX

    Showcase IDX is a comprehensive solution for publishing listings, importing MLS data, and developing client relationships. On top of enabling you to use IDX, the plugin also doubles as a Customer Relationship Management (CRM) solution.

    With Showcase IDX, you can enable user registration (that supports social login) and encourage it using pop-ups. The plugin lets you keep track of what properties each user is looking at, and configure follow-up messages to encourage them to keep searching.

    Although Showcase IDX integrates with most real estate themes, the plugin enables you to configure the style of your listings and search using internal settings. Plus, its listings are responsive right out of the box.

    Key Features for Showcase IDX:

    • Set up a listings solution for your website
    • Import MLS listings
    • Enable and encourage user registration
    • Monitor user searches and configure follow-up messages
    • Configure the style of your listings

    Importing MLS properties using Showcase IDX

    When you import a batch of MLS properties, Showcase IDX enables you to create custom shortcodes to display them on your website. You get to configure unique styles for each batch of properties.

    Showcase IDX is for you if…

    • You want an all-in-one real estate and IDX solution
    • You want to get access to built-in CRM tools

    Pricing: There’s a free version of this plugin, while Showcase IDX plans start at $59.95 per month | Learn More About Showcase IDX

    3. Estatik Real Estate

    Estatik Real Estate

    Estatik Real Estate is a plugin that adds a listing system to WordPress. With this plugin, you can create listings manually, including a broad range of information about each property.

    Listings that you create can use over 50 unique shortcodes, and they can include image slideshows. That’s all available with the free version of the plugin. However, if you want IDX integration for Estatik, you’ll need to pay for a premium license.

    Key Features for Estatik Real Estate:

    • Add a property listings system to WordPress
    • Use shortcodes to customize the style of your listings
    • Include image slideshows alongside listings
    • Import MLS listings with the premium version of the plugin
    • A powerful fields builder for organizing your listings
    • 4+ Themes to jumpstart your listings website
    • Multi-lingual support

    Estatik property manager

    The Estatik property editor is fairly intuitive, and it integrates with the WordPress Classic Editor. You can also use the editor to update the information for any properties that you import using IDX.

    Estatik Real Estate is for you if…

    • You want a full-featured listing solution that includes IDX integration from multiple MLS providers
    • You want access to premade themes
    • You are a real estate agency that doesn’t want to spend extra money on web design

    Pricing: The Estatik Real Estate premium pack supports MLS/IDX imports for $489 | Learn More About Estatik Real Estate

    4. MLS Import

    MLS Import

    MLS Import integrates with the most popular real estate themes for WordPress. This plugin enables you to connect with an MLS platform and run batch imports for properties that fit the criteria you want.

    One standout aspect of this plugin is that it syncs properties automatically, and you can configure it to import new properties periodically. MLS Import also offers a custom Content Delivery Network (CDN) for serving images, which means that you save on server space.

    Key Features for MLS Import:

    • Connect to your MLS platform of choice
    • Import properties in batches and sync their information
    • Configure the plugin to import new property data periodically

    Configuring the MLS Import plugin

    MLS Import can pull data for large numbers of properties in a single batch as long as your server can handle it. If you’re using a not-so-capable hosting plan, we recommend importing properties in smaller batches.

    MLS Import is for you if…

    • You want to use a dedicated IDX plugin and not an extension to another tool
    • You don’t mind paying for a monthly or yearly license

    Pricing: MLS Import plans start at $49 per month | Learn More About MLS Import

    5. SimplyRETS

    SimplyRETS logo

    SimplyRETS is a powerful real estate platform that provides property listings, MLS data access, and other real estate information. The platform is designed to make the process of accessing real estate information easier, faster, and more efficient, giving real estate professionals a one-stop solution for all their data needs.

    In fact, it takes about five minutes to have an IDX search integration with your MLS set up. The plugin allows for the display of your real estate listings with a scalable catalog that adjusts to the device being used.

    Key Features for SimplyRETS:

    • Access to MLS data and property listings
    • Easy-to-use API and data access tools
    • Flexible and scalable pricing options

    SimplyRETS

    With SimplyRETS, you can access MLS data and property listings from multiple sources, making it easier to find the information you need. The search options for your users include filters so they can quickly find properties that meet their criteria. Plus, the interface is customizable to match the theme of your website.

    SimplyRETS is for you if…

    • You’re a real estate professional looking for a one-stop solution for your data needs
    • You need easy access to MLS data and property listings
    • You’re looking for a cost-effective and flexible solution

    Pricing: SimplyRETS plans start at $49 per month | Learn More About SimplyRETS

    Final Thoughts on IDX Plugins for WordPress

    There are a lot of amazing real estate plugins for WordPress. However, not all of them offer IDX support. Without this feature, you won’t be able to import MLS listings into your website, and you’ll need to add properties to it manually. If you have access to an MLS portal, not using an IDX plugin, it’s a missed opportunity.

    If you’re looking for real estate plugins that offer IDX support, here are our top two picks:

    1. Realtyna WPL: This is one of the most popular real estate plugins for WordPress and Divi, and its premium version offers IDX support.
    2. Showcase IDX: This IDX plugin also offers CRM functionality, and it can help you follow up with buyer leads.

    Do you have any questions about IDX plugins for WordPress? Let’s talk about them in the comments section below!

    The post 5 Best IDX Plugins for WordPress in 2023 appeared first on Elegant Themes Blog.

    Go to source

  • WordPress vs Web.com

    WordPress and Web.com both offer viable platforms for building a website. WordPress is the most popular content management system (CMS) for building websites and has been for long time. Web.com is a popular website builder that provides an all-in-one website solution. Similiar to Squarespace and Bluehost, site builders like Web.com usually offer less customization options in order to keep things more streamlined and secure for users. A CMS like WordPres may not be as easy to get things up and running initially, but it offers a attractive balance of simplicity and extendability.

    Both WordPress and Web.com have unique platforms for building a website. In this post, we’ll walk through a WordPress vs Web.com comparison to help you decide which platform will work best for your needs. We’ll discuss important comparisons including ease of use, customization, security, built-in features, and more.

    WordPress vs Web.com Who are They For?

    When comparing WordPress vs Web.com, it is helpful know the difference between a CMS vs a Website Builder. Both can get you a website, but they are different usually when it comes to complexity and features.

    WordPress CMS

    WordPress is highly customizable, which makes it great building all types of websites using premade themes, plugins, and integrations. Additionally, WordPress is great for developers who like to code their own templates and themes. Those who are comfortable with CSS, HTML, and PHP will be right at home with WordPress. That being said, building websites with the WordPress Editor is relatively easy, so beginners won’t have issues learning the platform. WordPress has been around for nearly two decades, so there are plenty of resources and WordPress articles for new and seasoned users to fall back on when they can’t figure something out. What started out as a blogging software has quickly evolved into a multi-featured platform where users can build a website that has its own unique look and feel.

    Web.com builder

    Web.com got its start in 1999 as a domain provider. Over the years, they expanded their offerings from domains to include hosting and an online website builder. Like WordPress, they offer the ability to customize your website with ease, and offer templates to build upon. That being said, if you want more functionality, be prepared to pay. They charge additional fees for offerings such as security and additional domains. Web.com wants to attract all businesses — large or small. They target individuals who seek an easy way to customize their site without the need for coding. One of the best things about them is they give their customers a pretty nice drag and drop builder. The builder takes little time to learn, making it a solid choice for beginners.

    WordPress vs Web.com Ease of Use

    Having a simple interface is a huge factor when considering a CMS. WordPress and Web.com both have a different learning curve. Let’s see how they compare.

    WordPress

    One of the best things about WordPress is how easy it can be to build a website. Beginners can pick up the ins and outs of WordPress in a short period of time. The tools are laid out in the dashboard in a simplistic way. Posts, pages, plugins, and media are all easily accessible and identifiable with labels.

    WordPress dashboard

    The WordPress community is huge. Thousands of sources are available, making learning WordPress a snap. Additionally, with the release of WordPress 5.0, users were introduced to the Gutenberg block editor. Blocks enhances WordPress by enabling users to build responsive pages and posts with columns, then add content with more than 25 additional blocks. Plus, WordPress 5.8 introduced full site editing which has given users even more control over there entire website design.

    WordPress block editor

    Web.com

    One of Web.com’s main selling points is being user friendly. The interface is simple, and signing up is easy. Users can opt for an advanced SSL certificate for an additional $99 per year. Otherwise, your total cost to get started is a paltry $1.95 per month, which is billed monthly. There are no contracts, so you can cancel at any time.

    Once you start a plan, you’re automatically forwarded to the dashboard. You’ll be able to choose from over 150 templates to jumpstart your site design. Once you choose, editing is stunningly simple. Web.com uses a drag and drop website builder, so making changes to the template you choose is also a breeze.

    Editing

    WordPress vs Web.com: Customization

    Both WordPress and Web.com are customizable, but there are limitations.

    WordPress

    WordPress is well known for its customization capabilities. Depending on the amount of effort put in, users can create a one-of-a-kind website that can compete with any platform on the internet. Users can change themes, add plugins, or write custom code to make WordPress what they want it to be.

    When users want to change the functionality of their website, they can choose from tens of thousands of plugins on the WordPress repository. Plugins such as Yoast SEO, WooCommerce, Gravity Forms, Divi Page Builder, and other useful plugins allow WordPress to excel in the customization realm.

    WordPress vs Web.com customizations

    Web.com

    Since Web.com is an all-in-one platform, there aren’t any plugins. That being said, there are still plenty of customization options. In the site editor, there are options for adding blocks such as text, icons, social media, and galleries, amongst others. Additionally, they’ve made it easy to integrate google analytics, SEO, and custom scripts.

    Site editor

    Under advanced options, you can turn on the block editor, which gives you the capability to customize the template you choose at signup. By doing this, you expand on the already highly functional site editor. Users can add galleries, testimonials, banners, and much more.

    Advanced editor

    WordPress vs Web.com: Themes and Templates

    Both WordPress and Web.com have free templates to choose from. Let’s explore the options on each platform.

    WordPress

    WordPress is clearly the winner when it comes to choice of templates. With over 59,000 templates, WordPress is hard to beat. WordPress offers free themes as well. Users won’t have any problems finding a template to suit their needs. In addition, there are many premium themes available, such as our own Divi. Customization and choices are abundant should you choose to go the WordPress route.

    WordPress vs Web.com templates

    It’s important to note that some premium themes don’t just enhance the look of your site. They can enhance the functionality as well. Premium themes such as Divi offer much more than a pretty face. The modules available In Divi are geared towards improving the capability of WordPress, and integrate with other software such as learning management system (LMS) software, and Toolset, which allows you to create custom post types, taxonomies, and field groups.

    Web.com

    Web.com doesn’t have thousands of templates, but they do have solid choices. With over 150 templates to choose from, it’s likely you’ll find the right look for your website. The templates are more business-centric, which seems to be Web.com’s target audience. After you choose a template, you have the ability to add additional blocks and modules to customize it to suit your needs.

    Web.com templates

    Web.com categories its templates based on business type. You’ll find options for business, blog, services, personal, health, beauty, restaurants, and portfolios. Once you pick a template, you can feasibly have your site up in a few minutes — that is if you only want to change out text modules.

    WordPress vs Web.com: Ecommerce

    Both WordPress and Web.com have eCommerce options. Let’s dive into both platforms to get a better idea of how each platform works.

    WordPress

    WordPress integrates quite well with several ecommerce platforms including WooCommerce which is comparable to Shopify. This allows you to build out a full-featured online store with unlimited products, reporting, and shipping options. That being said, WooCommerce is pretty bland out of the box. If you require the ability for advanced reporting, tax and shipping calculations, or subscription based products, you’ll need to purchase add-ons from the WooCommerce store. Although WooCommerce is a free plugin, it’s only intended for the most basic shop setup.

    WooCommerce

    Web.com

    Web.com offers its users the ability to host an online store, but it is sold separately from the business site builder. The concept is the same, with the builder resembling the business site builder, only with product capability. Monthly plans begin at $1.95 for the most basic online shop. You’ll get the ability to create products, get reporting, easy shipping tools, and purchase order options. In addition to that, you can easily sell your products by integrating with Amazon, eBay, and Etsy marketplaces.

    Web.com eCommerce

    WordPress vs Web.com: Publishing Tools

    Publishing tools are at the forefront of any content management system. Both WordPress and Web.com have these options standard, and they are quite similar.

    WordPress

    WordPress began primarily as a blogger’s best friend. Publishing pages and posts is basically the meat of WordPress. There are two ways to insert content into the editor – either with the classic editor or Gutenberg blocks. The classic editor functions very much like Microsoft Word, Google Docs, or Apple pages. Creating a post with the classic editor is simple, and can be accomplished in only a few minutes.

    Classic editor

    The WordPress Block editor steps things up a notch. It functions the same as the classic editor, but gives users added functionality. Images, social media links, videos, and more are easily added as blocks of content in blocks.

    Gutenberg editor

    Web.com

    In order to publish posts, Web.com requires you to enable the blog. The process is easily done with the click of a button.

    Enable blog

    From there, users can add their first post. The post editor looks a lot like Gutenberg’s editor. You can simply start typing. You can add images, links, and text, just like in any other post editor. Publishing is easy, too. Pushing your content out to the world is one button click away.

    Web.com publishing

    WordPress vs Web.com: Security

    Website security is one of the most important issues one must consider when creating a website. In recent years, cyber crimes have increased exponentially. With ransomeware, malware, bot intrusion, and denial of service attacks (DDoS) rampart, you’re setting yourself up for major problems if your site and customers aren’t protected. Thankfully, both WordPress and Web.com are capable of fending off such attacks.

    WordPress

    As previously mentioned, WordPress is highly customizable. And depending on your themes and plugins, your website can be vulnerable to security threats. That’s why it is important to understand WordPress security beforehand. There are a number of free security plugins available to WordPress users that help protect their website. Plugins such as WordFence and Sucuri are good options. Plus, all hosting providers offer security features that help to protect WordPress sites. Some hosts, such as Divi Hosting by Cloudways, offer bot protection, a dedicated firewall, SSL certificates, and malware protection in their hosting plans. In addition to that, most WordPress hosting providers have bumped up their TLS security by making versions 1.2 and 1.3 standard practice.

    Cloudways Divi Hosting

    Web.com Security Options

    Web.com gives its customers an SSL certificate with every plan. Unlike WordPress, Web.com doesn’t offer free security plugins that you can add on to your website. If you require additional security, and most people will, you’ll need to upgrade your Web.com plan with their security add-on service. For $4.99 per month, Web.com will scan your site for any problems that may arise. Additionally, users will give their customers peace of mind with identity theft protection, and a built-in VPN client. Plus, there are product updates and training resources available to help you get the most of your security package.

    WordPress vs Web.com security

    Web.com WordPress Hosting

    Web.com does offer WordPress Hosting for those who want to host, manage, and design a WordPress site on Web.com. This might be a good option for those who need more customization capabilities that come with WordPress plugins, but also enjoy using the Web.com platform.

    Conclusion

    Now that we’ve explored some of the features of both WordPress and Web.com, one thing is clear. They are very different products. While Web.com does offer a very nice site builder, their customization options are pretty limited. On the security front, both WordPress and Web.com have good options to ensure your site is protected. However, with so many WordPress hosting companies to choose from, you’ll have plenty of research to do on who to choose and how much you should pay, should you decide to go with WordPress. If you’re looking for a WordPress hosting provider, we suggest taking a look at Cloudways or SiteGround. Both offer excellent features that will give you all of the security features that you need.

    In regards to publishing tools, options are comparable when we look at WordPress vs Web.com. Both are easy to use, and only take a few minutes to send your content out into the world. When choosing between WordPress and Web.com, it all depends on what your needs are. Beginners will be right at home with either platform, although the learning curve is a bit steeper with WordPress.

    Have you used Web.com? How do you feel it stacks up against WordPress? Let us know in the comments section below.

    The post WordPress vs Web.com appeared first on Elegant Themes Blog.

    Go to source

  • The Ultimate Guide to WordPress Form Security

    WordPress websites are often targeted by hackers seeking to exploit security vulnerabilities. Web forms are one of the avenues that hackers use to gain entry into a site and steal sensitive information. In this post, we’ll show you how to secure your WordPress forms and ensure the safety of your website and data.

    The post “The Ultimate Guide to WordPress Form Security” first appeared on WP Mayor.

    Go to source

  • 5 Best WordPress VR and Metaverse Plugins

    Virtual Reality (VR) has become increasingly popular in recent years. It enables users to enjoy immersive experiences from the comfort of their own homes. Furthermore, adding this feature to your website can help make your content more interactive, which may lead to more conversions. Fortunately, there are several WordPress VR plugins you can use.

    In this post, we’ll closely examine WordPress VR plugins and how they work. Then, we’ll review some of the best options on the market. Let’s get started!

    What Are WordPress VR Plugins?

    When we talk about Virtual Reality (VR), we refer to features that mimic real-life experiences. You may also hear about “the metaverse“, which is an online connected network of VR and augmented reality. This simulated environment can take many forms.

    For example, during the COVID-19 pandemic, many attractions around the world created immersive 360° tours on their websites:

    The Smithsonian Virtual Tour

    These virtual tours are also offered by other businesses, including real estate agents and online shops:

    A virtual tour of a property

    If you use WooCommerce or run an online store, a WordPress VR plugin can help you improve the User Experience (UX). It gives users a clearer idea of what an item looks like in real life, whether people are shopping for jewelry, glasses, or furniture. This interactivity can help them make more informed decisions, which may lead to more conversions.

    You might also use a WordPress VR plugin to offer virtual tours of your premises. Alternatively, you can take site visitors on a virtual trip to different destinations if you work in the travel industry. These interactive experiences can help increase user engagement and draw more visitors to your physical site.

    5 Best WordPress VR and Metaverse Plugins

    As we have seen, different types of businesses can benefit from using a VR plugin. Now let’s look at some of the best options for WordPress sites. We’ve selected tools that receive frequent updates and have a substantial number of positive reviews, making them reliable plugins for your website.

    1. Flat 360° Panoramic Image Viewer

    Flat 360° Panoramic Image Viewer

    Flat 360° Panoramic Image Viewer turns your static panoramic photos into an immersive viewing experience. It gives users a 360° view of a particular location, with navigation features that enable them to proceed at their own pace.

    Key Features for Flat 360° Panoramic Image Viewer:

    • An auto-scroll feature with sliding controls
    • Mobile and touchpad support
    • Can be added to any post, page, or widget using a shortcode
    • Support for multi-site configurations

    Using Flat 360° Panoramic Image Viewer in WordPress

    With this plugin, you can give users a realistic view of a room, shop, or outdoor location. Additionally, you can enable different sliding effects for a more interactive experience.

    Flat 360° Panoramic Image Viewer is for you if…

    • You rent a place or run a B&B and want to give users an immersive view of your rooms.
    • You have a travel website with panoramic photos.

    Flat 360° Panoramic Image Viewer Pricing: $20. | Learn More About Flat 360° Panoramic Image Viewer.

    2. 360° Photo Viewer

    360 Photo Viewer

    360° Photo Viewer is another WordPress VR plugin that enables you to turn panoramic images into virtual tours. You can use it for rooms, buildings, shops, and more. Additionally, you can add markers to your content and display information about different objects.

    Key Features for 360° Photo Viewer:

    • Show unlimited locations and add as many markers as you want.
    • Configure different controls, animations, and more.
    • Use the plugin with WooCommerce.

    The 360 Photo Viewer for WooCommerce

    You can use this plugin to create an immersive shopping experience in your online store. For example, you can offer a virtual tour of your store and display informative markers for different products.

    360° Photo Viewer is for you if…

    • You want a WordPress VR plugin for your WooCommerce store.
    • You run a museum website or a similar attraction and want to offer educational tours.

    360° Photo Viewer Pricing: $32. | Learn More About 360° Photo Viewer.

    3. Modern Video Player for WordPress

    Modern Video Player

    Modern Video Player is a video and audio player that supports a wide range of media formats, including 360° virtual reality videos. It enables you to display subtitles in multiple languages, control playback speed, create password-protected content, and more.

    Key Features for Modern Video Player:

    • Publish self-hosted virtual reality videos.
    • Embed videos from YouTube and Vimeo.
    • Use AdSense integrations to monetize your content.

    A 360 degree video on Modern Video Player

    With Modern Video Player, you can share 360° virtual reality videos and panoramic images. Moreover, you can create unlimited playlists with as many videos as you like.

    Modern Video Player is for you if…

    • You publish video content on your site.
    • You have an international audience and want to offer VR experiences in different languages.

    Modern Video Player Pricing: $49. | Learn More About Modern Video Player.

    4. WPVR

    WPVR plugin

    WPVR lets you create virtual tours on your WordPress site. It has an easy-to-use interface that enables you to turn panoramic images into a realistic experience.

    Key Features for WPVR:

    • Use engaging hotspots, such as images and buttons, to display content on-click or on-hover.
    • Embed 360° videos from YouTube and Vimeo.
    • Use an auto-resize feature for mobile phones to make your content responsive.
    • Utilize dedicated Gutenberg blocks and widgets to embed your tours more easily.

    The WPVR interface

    WPVR gives you a live tour preview on the back end. This way, you can see what your content looks like as you’re creating it. Additionally, you can add a variety of features to your videos, including mouse drag control, auto rotation with speed control, scene fade animation, and more.

    WPVR is for you if…

    • You want to create responsive virtual tours of your property, showroom, or store.
    • You have a travel blog and want to create customized 360° videos of your trips.

    WPVR Pricing: Free, with a premium version that starts at $79.99 per year. | Learn More About WPVR.

    5. iPanorama 360

    iPanorama plugin

    Another WordPress VR plugin you can use is iPanorama 360. This tool enables you to create virtual tours of rooms and buildings. You can use elements such as text, images, and videos for a more interactive experience.

    Key Features for iPanorama 360:

    • Utilize an easy-to-use virtual tour builder to preview your work before publishing it.
    • Create markers, tooltips, and popups.
    • Control user permissions for authors and editors on your site.
    • Use a responsive design with two types of themes: light and dark.

    The iPanorama 360 tour builder

    The iPanorama 360 tour builder comes with a broad range of options. For instance, you can enable autorotate, insert markers, add an audio track, and more.

    iPanorama 360 WPVR is for you if…

    • You’re looking for a WordPress VR plugin that facilitates team collaboration.
    • You want to create educational tours for museums, galleries, and more.

    iPanorama Pricing: Free, with a premium version that starts at $39. | Learn More About iPanorama 360.

    Final Thoughts on WordPress VR plugins

    Virtual Reality (VR) enables users to explore a place from their couches. Furthermore, it gives business owners the opportunity to create more immersive experiences on their sites. For instance, you can use a WordPress VR plugin to offer virtual tours of your property and store.

    If you have a WooCommerce shop, you can use 360° Photo Viewer to create a real-life shopping experience. Meanwhile, if you have a travel website, WPVR and Flat 360° Panoramic Image Viewer enable you to turn your panoramic photos into immersive tours.

    Do you have any questions about the WordPress VR plugins featured in this post? Let us know in the comments section below!

    Featured image via Visual Generation / shutterstock.com

    The post 5 Best WordPress VR and Metaverse Plugins appeared first on Elegant Themes Blog.

    Go to source

  • 17 Best Elementor Addons & Plugins in 2022 – Free & Premium

    If you’re looking for the Best Elementor Addons for your WordPress website, then you’ve landed at the right place.Addons cover the slack in the area where Elementor lacks and enhance the functionality of the page builder. I have compiled a list of the 17 popular addons for Elementor, highlighting their customization abilities, pricing, unique features, …

    17 Best Elementor Addons & Plugins in 2022 – Free & Premium Read More »

    17 Best Elementor Addons & Plugins in 2022 – Free & Premium is a post from ShoutMeLoud – Shouters Who Inspires

    Go to source

  • How to Create a Survey on WordPress

    Surveys are an essential tool for marketers to gain valuable information about their customer base. Posing questions to customers is a great way to determine what is important to them, and is a valuable way to learn why they choose certain products. After all, knowledge is power. Marketers can take the information they gather from consumers to help them develop new marketing strategies that will increase sales. In this post, we’ll show you how to create a survey on WordPress using the Formidable Forms plugin. Let’s get started.

    Finding the Right Survey Plugin for WordPress

    Without question, the easiest way to create a survey form for your WordPress website is using a plugin. Thankfully, there are quite a few WordPress survey plugins to choose from that will allow you to build an effective survey form in WordPress. Choosing the best one for your needs depends on a few key factors including quality, cost, and ease of use. For this post, we’re going to use Formidable Forms.

    The Formidable Forms WordPress plugin.

    Formidable Forms is one of the most popular contact form plugins available today that allows you to create surveys for FREE using an easy-to-use form builder. With both free and pro options, you can create any type of form including surveys. It boasts a simple drag and drop interface, so it’s easy for users with any skill level to create all types of forms. The free version includes 14 basic fields that can be used to create surveys, contact forms, and more.

    The premium version is more robust, with over two dozen more choices to build forms and surveys including star rating, likert scale rating, NPS rating fields, and more premade templates. That being said, you don’t really need those to successfully build a survey form.

    How to Use Formidable Forms in WordPress to Create a Survey

    For this post, we’re going to use the free version of Formidable Forms to show you how simple it is to create a survey form.

    Installing the Plugin

    The first step is to install Formidable Forms. Simply log in to your WordPress site, then navigate to Plugins > Add New in your WordPress dashboard. Next, search for Formidable Forms in the search field. Finally, click the activate button to install Formidable Forms.

    create a WordPress survey install plugin

    Create a New Form

    Next, you’ll create a new form. Click on Formidable > Forms (lite). Then click the Add New button.

    Create a new form

    Next, select blank form and give your form a name. Finally, click the create button.

    Add Fields to the WordPress Survey Form

    The next step is to add fields to your form. Add a dropdown field to your form.

    dropdown field

    Dropdown Field Settings

    Click into the dropdown field to begin adding options to it. Give your field a field label. Type Which upcoming product are you most interested in? into the field. Next, with the first option selected, type Choose one. In the next option field, type Tablet Case. Next, click the Add Option button to add another option.

    create a WordPress survey field options

    Add three more options by clicking the Add Option button with the following field information: Laptop Case, Smartphone Case, and Mouse Pad.

    Add another dropdown field with the following information. Field label: What is most important to you? Dropdown options: Choose one, Cost, Quality, and Color options.

    Next, you’ll add a radio buttons field.

    radio buttons field

    Radio Buttons Field Options

    Leave the display format set to simple. Then, add the following two options: Natural and Vegan.

    radio buttons options

    Add the Final Dropdown Field

    Finally, add another dropdown field to the form. Give the field the following label: How often do you purchase leather goods? For the dropdown options, enter Choose one, Once a month, Once every six months, Once a year, and Hardly ever. Finally, click the update button to save your form.

    With all fields populated, your form should look like this:

    WordPress survey form fields

    Set Email Notifications for the WordPress Survey

    The next step is to tell WordPress the email address where entries should be sent. Navigate to the form settings tab. Next, click on Actions & Notifications. Then, toggle Send Email to on. Click the dropdown arrow next to the toggle to expand it. You’ll fill in an Action Name, then either leave the to field set to admin email, or enter an email address. Add in a subject line of Leather Goods Survey. Finally, click the update button once more.

    WordPress survey email settings

    Embed the WordPress Survey Into a Page or Post

    The final step is to embed your survey. The easiest way to embed a Formidable survey form in WordPress is using the Formidable Form Block. When editing a page or post in WordPress using the block editor, simply click to add a new block and search for the Formidable Form block.

    embed survey form

    Then choose the form you want to embed from the drop down.

    select the form

    That’s it!

    survey form

    The plugin options include a few ways to embed your survey form into a page. You can add it directly to a page on your site, create a new page, or insert a code manually. For this example, you could use a shortcode to add the form to your page. To do this, you would click the embed button in the form builder, select insert manually, and choose the WordPress shortcode option. Generate the shortcode then copy and paste it to your page.

    use shortcake

    If you are using a page builder, like Divi, you can easily add the shortcode to a code module to embed the form on your site.

    embed survey

    Styling the Form

    By default, Formidable Forms will have a generic appearance. If you want the form to match the styling of the layout pack, you will need to add a bit off CSS to achieve a similar look. For example, we can style the button for the form to match the other buttons on your theme. Here is an example of a snippet of CSS that restyles the button on the survey form.

    /*Formidable form button */
    
    .frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message, .frm_style_formidable-style.with_frm_style input[type="submit"], .frm_style_formidable-style.with_frm_style .frm_submit input[type="button"], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style, .frm_style_formidable-style.with_frm_style .frm-edit-page-btn {
        font-size: 14px;
        background: #D9B882;
        border-width: 1px;
        border-color: #D9B882;
        border-style: solid;
        color: #000000;
        font-weight: 700;
    		text-transform:uppercase;
        border-radius: 0;
        padding: 15px 80px;
    }
    

    This custom CSS can be added to the Additional CSS section of the Theme Customizer to style the survey form.

    survey form css

    Final Result

    Here is an example of what a survey form would look like on a live page.

    WordPress Survey

    Conclusion

    Using survey forms on WordPress is an excellent way to communicate with your customers. With lots of options available for WordPress, it’s essential to pick a method that is easy to use and doesn’t break the bank. Formidable Forms is a great plugin that fills both of those needs.

    If you’d like to learn about more options for building surveys in WordPress, check out our post featuring the 9 top WordPress survey plugins.

    For creating a form in a different way using Divi, check out our post How to Create a Stylish Survey Using Typeform.

    Have you used Formidable Forms on your WordPress site? If so, let us know in the comments below.

    The post How to Create a Survey on WordPress appeared first on Elegant Themes Blog.

    Go to source

  • How to Use the All Reviews WooCommerce Block

    Most modern customers will look at product reviews before making even the smallest purchase. Enabling user reviews for your own products helps you build trust with new customers, and it lets them share important information with other buyers. One of the best ways to display reviews on your website is by using the All Reviews WooCommerce block.

    In this article, we’ll talk about how the All Reviews WooCommerce block works. We’ll show you how to add it to your website, configure it, and use it effectively. Let’s get to work!

    How to Add the All Reviews WooCommerce Block to Your Post or Page

    The All Reviews WooCommerce block enables you to display a list of the latest product reviews on your website. By default, the block shows reviews for every item, which means visitors will get an overview of how happy your latest customers are.

    To use this block, open the Block Editor for the page or post where you want to showcase the reviews. Select the option to add a new block, and use the search tool to look for the All Reviews option:

    Adding an All Reviews block in WordPress

    Note that the All Reviews block is only available if you’re using WooCommerce. If the plugin isn’t active, you won’t have access to any WooCommerce blocks in the Block Editor.

    Once you place the All Reviews block, it will display a list of all the latest reviews in your store:

    The All Reviews WooCommerce block

    By default, every review includes the customer’s name, the body of their review, their rating, when they wrote it, and their profile picture. However, you have full control over how reviews appear within the All Reviews block, as we’ll show you in the next section.

    All Reviews WooCommerce Block Settings and Options

    Unlike most other blocks, the All Reviews WooCommerce block doesn’t offer any formatting options. That means you can’t change its alignment or layout. However, the block does offer a variety of settings that enable you to configure what elements it includes.

    To access this block’s settings, select it within the editor, and then click on the gear-shaped icon in the top-right corner of the screen. A menu will appear to the right, including all of the settings that are available for the All Reviews block.

    Content Settings

    The first part of the settings menu enables you to decide what elements the block will display for each review:

    Configuring what elements appear in the All Reviews block

    You can choose whether to include reviewers’ names, profile pictures, dates, review content, and product ratings. In most cases, we recommend including all of those items.

    However, you might choose to disable review dates if purchases aren’t made very often, so as not to discourage potential customers. Finally, you can choose between displaying reviewers’ photos (their profile pictures) or product images alongside each review.

    List Settings

    The next section enables you to decide in which order to show reviews in, and how many of them to display. By default, the All Reviews block will display the latest reviews across the entire store. However, you can also choose to display reviews from highest to lowest rated and vice versa.

    You can also configure how many additional reviews will appear when users click on the Load more button (or disable that option altogether):

    Configuring how many reviews the All Reviews block should display

    Text Color

    The next section allow you to customize the color of your text within the All Reviews block. To change the text color click on the text color option. Then you can choose one of the default theme colors or select the hex code to add your own custom color.

    changing all reviews block text color

    Font Size

    In addition to text color, you can also change the font size for the All Reviews block under the Typography settings. To change the font size, click the plus icon on the Typography toggle and select font size. There you can choose from one of the built-in theme font sizes or click the customize icon to add your own custom font size value.

    all reviews block font size

    Additional CSS Class(es)

    Finally, there’s an Advanced tab within the All Reviews block settings menu, which enables you to add new CSS classes to the element. You can use those CSS classes to modify the block’s style if you’re comfortable using stylesheets.

    Tips and Best Practices for Using the All Reviews WooCommerce Block Effectively

    In most cases, we recommend displaying the All Reviews block on your store’s home page and/or landing pages. This shows new visitors how satisfied past customers are right away, encouraging them to stick around. Moreover, if you have a lot of recent ratings, displaying review dates can show visitors that you get a lot of sales. That, in turn, can help you to build trust even further.

    If your store is still growing, we recommend showcasing the reviews with the highest ratings instead. If you do this, we’d also suggest disabling review dates, so visitors won’t be discouraged if there aren’t any recent sales.

    Sorting reviews from highest to lowest ratings

    As for whether to display user profile pictures or product photos, that choice is up to you. Displaying customer pictures can help make reviews look more trustworthy and give them a human touch. However, that will only be effective if most customers set profile pictures. Otherwise, you’re typically better off displaying product photos alongside each review, so potential customers get a glimpse of what you offer.

    Frequently Asked Questions about the All Reviews WooCommerce Block

    If you have any questions left about how to use the All Reviews block, we’ll aim to cover them here. Let’s start by talking about how to style this handy block.

    Can I Change the Style or Layout of the All Reviews Block?

    The All Reviews block doesn’t enable you to change its layout. When you place the block, reviews will show up on a single-column list. However, you can change the text color or font size using Color and Typography options. You can also add custom CSS Classes to target the All Reviews Block in your custom CSS.

    Are There Any Other WooCommerce Review Blocks I Can Use?

    WooCommerce ships with several review blocks that you can use in your store. For example, there’s a Reviews by Product Block, which enables you to display reviews for individual items. You’ll also have access to the Reviews by Category Block, which lets you display reviews from specific product categories.

    When you’re using the All Reviews block, you can’t filter reviews either by product or category. However, the block does enable you to choose what order reviews will be displayed in.

    Where Should I Place the All Reviews Block in WordPress?

    Since the All Reviews block displays reviews for all the products in your store, it makes sense to place it on one of your website’s main pages. Both the home page and the Shop pages make ideal placements for this block. Alternatively, you can set up a page just for displaying reviews, and link to it in your navigation menu.

    Conclusion

    The All Reviews WooCommerce block enables you to display the latest reviews for all products in your store. You can also configure this block to display reviews from the highest to lowest ratings and vice versa (although we don’t recommend the latter approach).

    This block offers the perfect way to show visitors how much customers love your products. If you have a lot of recent reviews, it can also signal that you run an active store with a large volume of sales.

    For more, check out ultimate guide to WooCommerce Blocks.

    Do you have any questions about how to use the All Reviews block in WooCommerce? Ask away in the comments section below!

    The post How to Use the All Reviews WooCommerce Block appeared first on Elegant Themes Blog.

    Go to source

  • How to Correctly Set Up File Permissions in WordPress

    If you’ve ever run into mysterious errors installing plugins, updating themes or uploading images to your WordPress site, file permissions might be the problem.

    The post “How to Correctly Set Up File Permissions in WordPress” first appeared on WP Mayor.

    Go to source

  • How to Integrate Contact Form 7 with Zoho CRM

    Adding contact forms to your WordPress site enables users to reach out with queries and business proposals. However, if you’re not using a Customer Relationship Management (CRM) solution, you may be losing out on potential leads. Fortunately, you can easily pair your contact forms with a CRM using Contact Form 7 and Zoho.

    In this post, we’ll look at the benefits of integrating Contact Form 7 with Zoho. Then, we’ll show you how to do it in three easy steps. Let’s get started!

    The Benefits of Integrating Contact Form 7 with Zoho CRM

    Contact Form 7 is one of the most popular WordPress contact form plugins. It enables you to build a variety of customized forms for your site:

    Contact Form 7

    With Contact Form 7, you can enter your business email address as the sender and reply to your messages using your favorite email client. This setup will help you project a more professional image for your company. Divi also integrates with Contact Form 7 for more design control.

    To get the most out of Contact Form 7, you might consider using it with Zoho. This is a powerful CRM tool that helps you generate leads and manage your contacts more effectively:

    Zoho CRM homepage

    Integrating Contact Form 7 with Zoho lets you synchronize your user data and organize your leads using the CRM tool. For instance, you can sort your contacts into recently created leads, converted leads, and more.

    This integration can be beneficial if you run a remote team. Once a message comes in through your contact form, you can assign that lead to the appropriate employee or department. Zoho facilitates team collaboration so your company can deliver better customer service and drive more conversions.

    How to Integrate Contact Form 7 with Zoho CRM (In 3 Steps)

    Unfortunately, Contact Form 7 doesn’t natively support integration with Zoho CRM. However, you can use a plugin such as Integration for Contact Form 7 and Zoho CRM to connect these two tools:

    Integration for Contact Form 7 and Zoho CRM

    This plugin lets you send messages submitted through Contact Form 7 to your Zoho account. Fortunately, it’s also very easy to set up.

    For this tutorial, you’ll need to have both Contact Form 7 and Integration for Contact Form 7 and Zoho CRM installed and activated on your site. You’ll also need to create a Zoho account (you can get started for free).

    Once you’re logged in, you’ll be asked to select a product. Make sure to choose CRM.

    Step 1: Add Your Zoho Account in WordPress

    Once you add Integration for Contact Form 7 and Zoho CRM to your site, you’ll see a new menu item in your dashboard called Zoho. Click on it and navigate to the Zoho Accounts tab:

    The Zoho Accounts tab

    Then, select Add New Account. You’ll be asked to provide some information about your Zoho account, including the account name, data center, and type of Zoho Service (we’re using Zoho CRM):

    Zoho Accounts details

    If you click on the Login with Zoho button, you can simply sign in to your account:

    Signing into Zoho from WordPress

    Zoho CRM will then ask for access to your user data. Go ahead and click on Accept:

    The Zoho screen asking for access to your WordPress user data

    You’ll then be redirected to your WordPress dashboard, where you’ll see a success message:

    The Zoho success message in WordPress

    If you get an invalid_code error, make sure that you’ve selected the right data center. For instance, if you’re based in Europe, you’ll need to choose zoho.eu. Then, save your changes and try again.

    Step 2: Create a Zoho Feed

    Next, you’ll need to create a Zoho feed. In other words, you’ll be connecting your Zoho account with a contact form.

    In your WordPress dashboard, navigate to Zoho > Zoho Feeds and select Add New:

    Add new Zoho feed option

    Next, you’ll need to enter a name for your feed and choose a Zoho account. You’ll also have to select a contact form:

    Entering the Zoho feed details

    Once you choose a form, the plugin will ask you to select a Zoho Object from the menu. An Object is a specific area of your CRM, including meetings, accounts, calls, projects, and more. For this tutorial, you can select Leads:

    Selecting Leads as the Zoho Object

    Then, you’ll need to link your form fields with the fields corresponding to your Zoho leads. This connection will enable the plugin to synchronize your data.

    For example, here’s what your leads page might look like in your Zoho account:

    Zoho Leads page

    On the left-hand side of the screen, you’ll see a list of fields you can use to filter your leads. You can connect some of these fields to the ones in your site’s contact form.

    For instance, you can select the Email field in your Zoho account and pair it with the Your Email field in your contact form:

    Mapping Contact Form 7 fields with Zoho fields

    This way, when a user enters their email address into the contact form on your site, the information will appear in the appropriate field on your Zoho Leads page. You can map as many fields as you want.

    You also have the option to only export manually approved entries to Zoho. Additionally, you can set an opt-in condition so that only entries that meet a particular criterion are exported:

    When to Send Entry to Zoho settings

    Finally, you can configure some additional settings, such as setting a primary key:

    Choosing a primary key in Zoho

    When you’re ready, click on Save Feed. Contact Form 7 is now fully integrated with Zoho.

    Step 3: Test your Contact Form 7 and Zoho Integration

    Finally, it’s time to run a quick test to ensure everything is working correctly. Firstly, you’ll need to navigate to your contact form on the front end and submit an entry.

    Then, in your WordPress dashboard, go to Zoho > Zoho Log to see if your entry was registered in the CRM:

    Viewing the Zoho log in WordPress

    Here, you’ll be able to view the fields you mapped in the previous step. That’s it — you can now start generating leads with Contact Form 7 and Zoho CRM!

    Conclusion

    A CRM tool such as Zoho enables you to manage any leads that come through your WordPress website. If you use Contact Form 7, you can simply integrate your forms with Zoho using the Integration for Contact Form 7 and Zoho CRM plugin.

    In this post, we showed you how to integrate these two powerful tools:

    1. Add your Zoho account in WordPress.
    2. Create a Zoho feed.
    3. Test your integration.

    Do you have any questions about integrating Contact Form 7 with Zoho CRM? Let us know in the comments section below!

    The post How to Integrate Contact Form 7 with Zoho CRM appeared first on Elegant Themes Blog.

    Go to source