wtnh
Forum Replies Created
-
I have been looking into something similar for reporting purposes. Looks like all the Ultimate Member profile data is stored in the wp_usermeta table in the database. You can use phpMyAdmin to browse the table. I would suggest starting there.
Found another way to manage this is the old (now closed) support forum:
<a href=”https://ultimatemember.com/forums/topic/profile-drop-down-menu/page/2So if you create a new WP menu tab with a custom URL like so:
https://yourdomain.com/user/?profiletab=main&um_action=edit
that will take the logged in user to his or her profile page opened in edit mode. Nice!Alternatively, if you want to just take the user to his or profile in view mode, use this for a custom menu URL:
https://yourdomain.com/user/?profiletab=main&um_action=viewWish this stuff were documented. This is a great plug in but could be even better with complete documentation.
More fiddling:
I think I have settled on creating a separate page called “My Account” with its own menu tab on the website. It has the [ultimatemember_account] shortcode. At the top of the page I added a link called “Click here to view or edit your profile” which points to /wordpress/user like so:<p style=”text-align: center;”><span style=”text-decoration: underline;”>Click here to view or edit your profile.</span></p?
[ultimatemember_account]This works because the account page is specific to the logged in user and including a link to the user page opens that user’s profile (with the edit gear displayed) and is a little more obvious to new users.
Comments?
So after trying a few things, I realized that the account form ([ultimatemember_account]) has a link to called “View Profile”. So by creating a separate page called Account (or My Profile) I can indirectly get the user to his profile. I may use this approach and change the link wording to “View/Edit Profile” to be more explicit.
I can also add the shortcode for the profile page to the account page just below the account shortcode ([ultimatemember form_id=6]) and display the logged in user’s profile below the account info. However this makes the page a little cluncky.
Another thought: if I have no separate page defined explicitly for form_id=6, clicking on a card in the member directory opens a page which displays the user’s profile, but there is no breadcrumb back to the directory page (unless I manually hack in a link on form_id=6).
Just wondering how others are handling this sort of stuff?
Correction – the CSS should be:
.um-member-photo img {
position: relative;
left: -60px;
}.um-member-name {
position: relative;
bottom: 55px;
left: 50px;
}I think I may have answered this myself. Some custom CSS moves the picture on the profile card to the left and the name text up and to the right:
.um-member.with-cover .um-member-photo img {
position: relative;
left: -60px;
}.um-member-name {
position: relative;
bottom: 55px;
left: 50px;
}This became pretty simple once I figured out how to use SiteOrigin’s CSS editor, which I highly recommend.
Forum: Plugins
In reply to: [Ultimate Member Gallery] Getting Ideas From The WorldI want to second (and third) a previous recommendation. If nothing else, please prioritize the ability to add captions to photos and videos. This is a must-have to make the plug-in useful.
After that, work on albums!
Thanks