Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Troubleshooting › Modify eMember Profile Extended Addon layout
Tagged: css, eMember plugin, Profile Extended Addon, tweak
- This topic has 18 replies, 2 voices, and was last updated 9 years, 1 month ago by admin.
-
AuthorPosts
-
June 2, 2015 at 10:27 am #12722Studio24Member
Hi guys!
I’ve installed the eMember Profile Extended Addon. Brilliant!
But I need to modify the layout:
– I need to delete the “search box” (I don’t need it)
– I want to delete the “detail” link… I need only to display the member list (name/company that I’ve set from the settings.)
– How can set a center alignment of the rows? (from css code is ok?)
thank you!
June 2, 2015 at 11:39 pm #70269adminKeymasterYou should be able to do this using CSS tweaks. You can insert the tweaks using the following plugin:
https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
The following CSS tutorial maybe helpful:
If you want us to do the CSS tweaks for you, then you can use the following option:
June 3, 2015 at 10:28 am #70270Studio24MemberHI thank you for your reply..
I do the changes.
I only need to know witch are the lines and command that manage and delete the “detail” link on the table.
thank you
June 3, 2015 at 11:03 pm #70271adminKeymasterPlease share a link to the page where you have the members list so I can inspect it and answer your question.
June 5, 2015 at 2:48 pm #70272Studio24Memberhere the page:
[http://www2.afti.ch/lista/]
as u can see i need to align center the members names and delete the “detail” (dettagli) column
thank you!
June 5, 2015 at 11:38 pm #70273adminKeymasterUse the following CSS to hide the details link in the member summary list:
.emember_profilex_summary_list .column-view{
display: none;
}Use the following CSS to center align entries in the summary list:
.emember_profilex_summary_list #the-list {
text-align: center;
}September 14, 2015 at 10:42 am #70274Studio24MemberHi guys, how can I set the default list display by company?
Thank you
September 15, 2015 at 12:57 am #70275adminKeymasterPlease give an example of what you mean. You want to sort the member list by company?
September 16, 2015 at 9:14 am #70276Studio24Memberhere the page..
[http://www.afti.ch/lista/]
as u can see at the moment there are any sort..
how can I choose a default sort in the table?
for example sorting by company or name by default when I visit the page like this [http://www.afti.ch/lista/?orderby=last_name&order=asc]
thank you!
September 16, 2015 at 11:40 pm #70277adminKeymasterMake the link to your listing page the following.
[http://www.afti.ch/lista/?orderby=company_name&order=desc]
So basically create a simple link in your menu that uses the above URL as the target URL. When users click on that menu item, they will go to this link and see the listing sorted by company name.
September 18, 2015 at 12:30 pm #70278Studio24Memberok thank you
done!
September 25, 2015 at 12:34 pm #70279Studio24Memberhi admin,
one problem with email after registration.
At the moment the new user receive a mail after the registration is completed.
So now is:
user registration form > registration email
but the user is pending.
I’d like to be:
user registration form > pending
admin confirmation > active > registration email
is that possible?
thank you
September 26, 2015 at 12:18 am #70280adminKeymasterGiven your scenario, You have to edit the “registration complete” email message and make it like a “your account is pending” message.
Read the following documentation (it will explain how to do the manual membership approval setup):
https://www.tipsandtricks-hq.com/wordpress-membership/manually-approve-members-on-your-site-1302
September 28, 2015 at 9:09 am #70281Studio24Membergreat!
thank you
last question:
I’d like to display in user list table, only the “active” members.
Is it possible?
thank you again!
September 29, 2015 at 12:46 am #70282adminKeymasterYes, you can list the active members only. Use the status=”active” parameter in the summary listing shortcode.
Here is an example:
[emember_extended_summary_list fields=”first_name,last_name,” levels=”1,2″ status=”active”]
-
AuthorPosts
- You must be logged in to reply to this topic.