How to Create a WooCommerce Account Page with a Featured Product Section for Logged-In Users

Last Updated on September 16, 2022 by 25 Comments

How to Create a WooCommerce Account Page with a Featured Product Section for Logged-In Users
Blog / Divi Resources / How to Create a WooCommerce Account Page with a Featured Product Section for Logged-In Users
Play Button

Divi and its Woo Modules can be helpful for showcasing a featured product section anywhere on your website, including other WooCommerce pages like the Account Page. This makes it easy to make special offers to users even when they are browsing their account information.

In this tutorial, we are going to design an entire WooCommerce Account Page from scratch complete with a handy featured product section using Woo Modules. We’ll even include a few snippets of CSS that will show the featured product section only when the user is logged in.

Let’s get started.

Sneak Peek

Here is a quick look at the account page we will be building in this tutorial.

Here is the account page before a user logs in.

divi featured product section

Here is the account page after a user logs in. As you can see, the featured product section shows under the account page content.

divi featured product section

Download the Featured Product Account Page Layout for FREE

To lay your hands on the account page layout from this tutorial, you will first need to download it using the button below. To gain access to the download you will need to subscribe to our newsletter by using the form below. As a new subscriber, you will receive even more Divi goodness and a free Divi Layout pack every Monday! If you’re already on the list, simply enter your email address below and click download. You will not be “resubscribed” or receive extra emails.

Subscribe To Our Youtube Channel

To import the layout to your page, simply extract the zip file and drag the json file into the Divi Builder.

Let’s get to the tutorial shall we?

What You Need to Get Started

To get started, you will need to do the following:

  1. If you haven’t yet, install and activate the Divi Theme installed (or the Divi Builder Plugin if not using the Divi Theme).
  2. Install and activate the WooCommerce plugin. If it is the first time setting up WooCommerce, you will need to run through the basic setup wizard to get your store ready. Once done, you are ready to add your new products.
  3. Create a few products if you don’t have any yet. For more info on how to add a new product, check out this tutorial.

After that, you will be ready to start designing a featured product section in Divi.

Part 1: Designing the Account Page

Enable the Divi Builder on the WooCommerce Account Page

Once WooCommerce is installed and activated, the WooCommerce Account page will be created automatically for you. To edit the account page, you can find it from the WordPress Dashboard by going to Pages > All Pages. Then hover over the Account page and click “edit”.

divi featured product section

Next, you will notice the WooCommerce Shortcode that is being used to generate the Account Page content. Go ahead and click to use the Divi Builder.

divi featured product section

The shortcode will be carried over and placed into a text module. Now click to use the Divi Builder on the Front End.

divi featured product section

The Section Settings

The first thing we are going to do is add a background to the section. Open the section settings and update the following:

  • Background Gradient Left Color: #ad52b7
  • Background Gradient Right Color: rgba(255,255,255,0.66)
  • Gradient Direction: 90deg
  • Start Position: 33%
  • End Position: 0%
  • Place Gradient Above Background Image: YES

Then add a background image that is at least 1920px wide.

divi featured product section

Add Header Using a New Text Module

To add the main page header (h1), add a new text module by clicking the gray plus icon under the current text module containing the WooCommerce Shortcode.

divi featured product section

Then drag it above the WooCommerce shortcode text module and update the settings as follows:

Body Content:

<h1>My Account</h1>

Under the H1 tab, update the following heading text styles:

  • Heading Font: Prompt
  • Heading Font Weight: Bold
  • Heading Text Color: #3f214f
  • Heading Text Size: 90px (desktop), 56px (tablet), 36px (phone)
  • Heading Letter Spacing: 5px

divi featured product section

Customize Shortcode Content

Even the the woocommerce account page information is being generated by a shortcode, we can still target some of those elements using the text module settings.

Open the settings of the text module holding the shortcode and update the following:

  • Background Color: rgba(255,255,255,0.9)

divi featured product section

Under the paragraph text tab, update the following:

  • Text Font: Roboto
  • Text Text Size: 16px

divi featured product section

Under the Link tab, update the following:

  • Link Text Color: #ad52b7

Under the unordered list tab, update the following:

  • Unordered List Text Size: 26px (desktop), 18px (tablet)
  • Unordered List Letter Spacing: 2px
  • Unordered List Line Height: 2em
  • Unordered List Item Indent : 0.01px

divi featured product section

Even though we can’t see it right now, there will be an h2 heading on the Login Form whenever a user visits the account page without being logged in. To target that h2 header, update the following:

  • Heading 2 Font: Roboto
  • Heading 2 Text Size: 56px (desktop), 32px (tablet)

divi featured product section

Then add some padding around the text module:

  • Padding: 3% top, 3% bottom , 3% left, 3% right

divi featured product section

Finally, give the text module a custom CSS Class.

  • CSS Class: custom-account-style

divi featured product section

With this class, we can target the module with some external CSS to put some final touches on the account information elements we weren’t able to target with text modules settings.

Adding External CSS to Style Other Account Information Elements

Since we have our CSS Class in place, we can use external CSS to style other account information elements generated by the shortcode. This is not necessary if you are wanting to control these elements from the Theme Customizer Settings. For example, the color of the links and buttons and notification backgrounds will be inherited from the secondary color you have selected in the Theme Customizer Settings.

To style the colors of certain elements directly for this page, open the page settings and add the following Custom CSS to the page:


.custom-account-style .woocommerce-Button.button, .custom-account-style .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    color: #ffffff!important;
    background-color: #9452b7;
    border-color: #9452b7;
}
.custom-account-style .woocommerce-Button.button:hover {
    background-color: #3f214f;
}

.custom-account-style .woocommerce .woocommerce-error, .custom-account-style .woocommerce .woocommerce-info, .custom-account-style .woocommerce .woocommerce-message {
   background-color: #3f214f;
}

Row Width

After the text module woocommerce shortcode information is styled, save the settings and open the row settings. Update the max width as follows:

  • Max Width: 1250px

divi featured product section

Part 2: Designing the Featured Product Section

Now that the main Account Page information is finished, we can now design the featured product section. This is where we will use Divi’s WooCommerce Modules to pull in product information dynamically. Then we are going to add a few snippets of CSS in order to show the product(s) whenever the user is logged in.

Creating the New Section and Row

To begin, create a new regular section.

divi featured product section

Then add a one column row to the section.

divi featured product section

Before we add a module, copy the section settings and the row settings used for our account page design above and paste them into the new section and row we just added.

divi featured product section

Add Heading with Text Module

Similar to what we did for the main header of the page, we are going to create a new header for the featured product section. To do this, add a new text module to the one-column row and update the following:

Body Content:

<h2>Special Product Offer</h2>

divi featured product section

  • Heading 2 Font: Prompt
  • Heading 2 Font Weight: Bold
  • Heading 2 Text Color: #3f214f
  • Heading 2 Text Size: 56px (desktop), 36px (tablet)
  • Heading 2 Letter Spacing: 5px

divi featured product section

Add Second Row

Next add a new row with a 1/3 2/3 column structure.

divi featured product section

Add Woo Images Module

In the left column, add a Woo Images module.

divi featured product section

Then select the product you want featured from the product dropdown.

divi featured product section

Then update the sale badge style as follows:

  • Sale Badge Color: #f1be51
  • Sale Badge Font: Roboto
  • Sale Badge Font Style: TT
  • Sale Badge Letter Spacing: 5px
  • Sale Badge Line Height: 1.3em

divi featured product section

Add Divider

In the right column, add a divider module and update the settings as follows:

  • Line Color: #dddddd
  • Divider Weight: 3px
  • Margin: 10px bottom

divi featured product section

Add Woo Title Module

Under the divider module, add a Woo title module.

divi featured product section

Then add the same product as the one added in the woo images module.

divi featured product section

Then update the design settings as follows:

  • Title Heading Level: H3
  • Title Font: Roboto
  • Title Text Size: 38px

divi featured product section

Add Woo Price Module

Next, add a Woo Price Module with the same product.

divi featured product section

Then update the design settings as follows:

  • Price Font: Roboto
  • Price Text Color: #ad52b7

divi featured product section

Add Woo Description Module

Under the Woo Price Module, add a Woo Description Module.

divi featured product section

Then add the same product to the woo description module.

divi featured product section

Then update the settings as follows:

  • Background Color: #eeeeee
  • Padding: 20px top, 20px bottom, 20px left, 20px right

divi featured product section

Add the Add to Cart Module

Under the Woo Description Module, add the Woo Add to Cart Module and select the same product.

divi featured product section

Then update the settings as follows:

  • Use Custom Styles for Button: YES
  • Button Text Color: #ffffff
  • Button Background Color: #ad52b7

divi featured product section

Update the Row Settings

Then update the row settings as follows:

  • Background Color (tablet): #ffffff
  • Max Width: 1250px
  • Padding (desktop): 0px top, 0px bottom
  • Padding (tablet): 25px top, 25px bottom, 25px left, 25px right

divi featured product section

Next, open the left column settings and update the following:

  • Background Color: #3f214f
  • Padding: 25px top, 25px bottom, 25px left, 25px right

Adding More Products

The trick to adding more products to this featured section is to duplicate the row containing the WooCommerce Elements that make up the featured product. Then open the Woo Images module for inside the new duplicated row and click to use Find & Replace on the Product option.

divi featured product section

Then use the find & replace options to replace the product selection with a new product of your choice. Make sure to replace the product for all the product options within this row. Then click the Replace button.

divi featured product section

After that, all 5 woo modules will automatically share the same new product.

divi featured product section

Add CSS ID

In order to hide the featured product section users that aren’t logged in, we need to add a CSS Class to the featured product section as follows:

  • CSS Class: logged-in-only

divi featured product section

Add External CSS

After the CSS class is in place, open the page settings and add the following custom CSS right under our previous CSS snippet.


.logged-in-only {
  display: none;
}
.logged-in .logged-in-only{
  display: block;
}

divi featured product section

This code will hide the section by default and then show the section once a user logs in to your WordPress site.

Final Result

Here is the account page before a user logs in.

divi featured product section

Here is the account page after a user logs in.

divi featured product section

Final Thoughts

Having a featured product section for the WooCommerce Account Page is a great way to promote new product offers in a targeted location on your website. Divi makes it easy to customize a WooCommerce Account page with a completely unique design in minutes. And, Divi’s Woo Modules make creating featured product sections a breeze. Plus, having the featured products only show to users who are logged in adds value and incentivizes the offer even more.

Hopefully this will give you a little inspiration when designing your next account page in Divi.

For more, learn more tips on styling account pages in Divi. And don’t forget to check out the full documentation on Woo Modules to discover even more possibilies.

I look forward to hearing from you in the comments.

Cheers!

Divi Marketplace

Are You A Divi User? Find Out How To Get More From Divi! 👇

Browse hundreds of modules and thousands of layouts.

Visit Marketplace
Divi Marketplace
Divi Cloud

Find Out How To Improve Your Divi Workflow 👇

Learn about the new way to manage your Divi assets.

Get Divi Cloud
Divi Cloud
Divi Hosting

Want To Speed Up Your Divi Website? Find Out How 👇

Get fast WordPress hosting optimized for Divi.

Speed Up Divi
Divi Hosting
Premade Layouts

Check Out These Related Posts

Get a Free Butcher Shop Layout Pack for Divi

Get a Free Butcher Shop Layout Pack for Divi

Posted on April 15, 2024 in Divi Resources

Hey Divi Nation! Thanks for joining us for the next installment of our weekly Divi Design Initiative; where each week, we give away a brand new Layout Pack for Divi. This time around, the design team has created a beautiful Butcher Shop Layout Pack that’ll help you get your next Butcher Shop...

View Full Post
Get a Free Online Learning Layout Pack for Divi

Get a Free Online Learning Layout Pack for Divi

Posted on April 8, 2024 in Divi Resources

Hey Divi Nation! Thanks for joining us for the next installment of our weekly Divi Design Initiative; where each week, we give away a brand new Layout Pack for Divi. This time around, the design team has created a beautiful Online Learning Layout Pack that’ll help you get your next website up and...

View Full Post

25 Comments

  1. I can’t upload this file no matter what options I try or even with the troubleshooting.

  2. There is no ‘Unordered List’ tab/section in the Text Module’s Design options. It’s only showing Text, Heading Text, Sizing, Spacing, Border, etc. Using custom CSS to remove the ‘dots’ but why is there no Unordered List design option like in the example above?

  3. “To import the layout to your page, simply extract the zip file and drag the json file into the Divi Builder.”

    I get allway message “Account Page Featured Product Section Divi Layout.json
    This filetype is not allpwed by security.”

    What have I to do exactly?

    Thanks

    Zoltán

  4. Nice tuto !
    But just a question.. I didn’t really understood what to do with :
    Body Content:
    01
    &amp;lt;h1&amp;gt;My Account&amp;lt;/h1&amp;gt;

    Where should I put this ?
    Thank you !!

  5. Hola! I was looking to simply change the json file to fit my site.

    I Imported the file via Portability button, made no changes, saved, and when visiting the page, I get an error that the site is experiencing technical difficulties. Any ideas?

    • JL,
      Hmm.. not sure. I would make sure that you have woocommerce installed and maybe have the product setup before adding the json to the product page?

  6. Thanks for this tutorial, I’ve been looking for one that is simple, easy to follow and work for so long!! I’ve got a question though. Can implementing this on your blog affect site speed as that is something I’ve been working on a lot lately and I don’t want to take a step back.

  7. Wonderful!
    Thanks!

  8. Wow I love this! Will defo be using it! Thanks heaps! I echo whoever asked for a tutorial on a snazzy checkout page! This will be a massive help for me thanks!

  9. Really nice post. I was using divi module for front designs but had now idea for after login. Thanks for sharing.

    • You are welcome, EISS! Glad it was helpful.

  10. Nice idea although you have to hand create the featured products though…. If we had a shop module that could do that layout for us it would be a major time saver.

    • Richard,
      You can use the shop module for this as well. Just give your featured products the same category and then display them using the shop module with that category. You could also use the woo related products module as well.

      • You displayed the products in a list view… The standard DIVI store module only does grid mode.

        • Richard,

          I understand now. Yeah that’s a bummer. Great idea for a shop module upgrade though. Thanks for the suggestion.

  11. Looks great! How to I import this section. I have tried to library and directly to the page but none seems to work?

    • It works when you upload on the page with the Portability button. ET isn’t consistent with how their JSON files are supposed to be loaded.

      • Tried with portability button but it doesn’t work.

  12. Awesome Jason, thanks! I think the Divi woocommerce modules are a great new feature that adds another creative level.

    • I agree. And I’m glad you are enjoying the Woo Modules!

  13. Wow, very nice 🙂

    I had already been looking for a tutorial for the account page.

    I will definitely use this! Thanks 🙂

    • Great to hear, Johan!

  14. Hey guys,

    Great post, keep the WooCommerce/ Woo Module related blogs posts coming. It would be good to see some updates to the Woo Modules and a blog post on revamping/designing the (not very user friendly), checkout page.

    Thx !!

    • Thanks for the suggestions, Jammin. Glad you liked the post.

Leave A Reply

Comments are reviewed and must adhere to our comments policy.

Join To Download Today