Thread Starter
D4D3
(@d4d3)
Finnj,
Thank you for this solution!
Peter’s login script allowed me to select the Subscriber Role and reditect them to the Dashboard page (http://mysite/dashboard)
I then modified my Dashboard, New-Post, Edit and Profile page to include navigation links before the shortcode to call the page content. My users are now able to login to their dashboard and navigate to the various pages. I have a grid system enabled on my theme so I can shortcode to create columns, below is the code that I use on my dashboard page. I reuse the same code on all pages and just change the shortcode for each specific page.
[grid_3]
<a title="Dashboard" href="http://mysite/dashboard">Dashboard</a>
<a title="New Post" href="http://mysite/new-post/">New Post</a>
<a title="Edit Profile" href="http://mysite/profile">Edit Profile</a>
[/grid_3]
[grid_9][wpuf_dashboard][/grid_9]
Amazing.