- This topic has 1 reply, 2 voices, and was last updated 6 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › eMember – have a order management addon?
Hi:
I used to have a different website earlier for which I had wp-Emember and wp-eStore and a different support forum username.
After starting my new site at [https://contented-solopreneur.com], I purchased a new copy of WP-Emember as a lot of time had lapsed since I got my old version.
I have a couple of small doubts and need help:
a. I need to know if manual payment option can be set up in WP emember (without use of wp estore) and if so, how can I use the order management plugin to manually process the payments of people who have paid via bank transfer?
b. On my login page and registration page I need to change the background color of the form text imput fields for username and password. How do I do this? What is the right css code for this? I tried many variations but couldn’t manage to change the color.
Thanks and regards,
Shobha Ponnappa
A) At the moment the manual checkout/payment option with order management is only available in estore. If you want to accept membership payment using manual payment, you can simply request them to send the payment to you and once you get the payment, you create an user account for them.
The following CSS tweak will change the background color to “black” and text color to “white” for the username and password fields on the registration form:
#wp_emember_user_name {
background-color: black !important;
color: white !important;
}
#wp_emember_pwd {
background-color: black !important;
color: white !important;
}