Customer Dashboard (My Account) Page

PaddlePress automatically creates a “my-account” page at the first installation. However, you can use any page as the customer dashboard by using the shortcode. Just place

[paddlepress_my_account]

logged-in users will see their subscriptions or one-off purchases along with Downloadable items. Non-logged-in users will see a login form when trying to access that page.

Customizations

Shortcode integration makes it possible to work with all WordPress sites and themes. However, you might need some custom CSS for better styling.

Login form:

#paddlepress_login_form input[type=text],
#paddlepress_login_form input[type=password]{
width:100%
}

#paddlepress_login_form .login-submit input[type=submit]{
width:100%
}

Accounts section:

We highly recommend using a full-width page template for the accounts page. Here are example customizations with custom CSS.

#paddlepress-my-account-tab-wrap {
width:100%;
}
.paddlepress-my-account-tab-content .ui-tabs-panel{
overflow-x:auto
}

.paddlepress-my-account-tab-content .ui-tabs-panel .button{
display:block;
}