John Parris
Forum Replies Created
-
Show me exactly what CSS you’re trying. You can paste it on gist.github.com and paste the link here.
- This reply was modified 8 years, 6 months ago by John Parris.
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] CSS LoginYour site is running the Pro version of our plugin. If you need support, please open a ticket at https://restrictcontentpro.com/support.
It’s hard to say without seeing the CSS you’re trying. My guess is that your theme is overriding the styles you’re trying to apply. Try adding
!importantto your styles to see if that takes effect.Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] CSS LoginYou can do the logout link with
.rc_logged_in aYou can identify these classes and IDs by examining the form in your web browser’s developer tools. https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] CSS LoginYou should be able to do that with
#rc_login_submitmentioned above.Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] CSS LoginNo need to edit files. Go to
Appearance > Customize > Additional CSSin your WP admin and you can add the custom CSS there.Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] CSS LoginHi,
You can definitely customize the styles of the form with CSS.
The login form ID is
rc_login_form, the login name field ID isrc_user_login, the login password field ID isrc_user_pass, the remember me checkbox ID isrc_user_remember, and the login button ID isrc_login_submit.With that info, here’s an example of some CSS you could use to target the login name field:
#rc_user_login { padding: 20px; }Hope that helps!
Thanks. To me it looks like your form is blending in with your theme. The only CSS included in this plugin is related to error messages on the registration form… for example, if someone doesn’t supply all the correct information it will show an error and we style those errors. We don’t style any form elements at all. What exactly are you trying to change that’s not taking effect?
Hi,
Can you link me directly to the page with the registration form?
Hi,
This forum is for the free Restrict Content plugin. Please open a support ticket at https://restrictcontentpro.com/support/ for support of our paid product.
Hi Luciano,
At this time we don’t have that feature. It’s on our roadmap for the Pro version, but I don’t have an estimated date yet.
Hi Craig,
Can you show me a screenshot of the post edit screen, showing the full page edit screen?
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] protect with wildcard?Hi,
Restrict Content has never had a wildcard feature, so you may be thinking about another plugin. Also, this plugin does not support subscription levels. That’s our Pro product. If you have questions about that, open a support ticket at https://restrictcontentpro.com/support/.
Without custom development, the shortcode will only work in the post/page editor. Screenshot: https://cl.ly/3o3H1e1n042w
The custom “Brief Description” box you have there is a custom implementation. We don’t have a way built in to do that, sorry. You’ll need to do some custom dev to work with the custom/proprietary method you’re using there.
I see. That’s an archive page for a custom post type. Well, you can use the shortcode inside the coupon posts themselves, and that will restrict the content in the single and archive views. If you want to restrict the entire archive view, so that logged out users wouldn’t even see the title of the coupons, you would need to customize your theme’s archive template. I don’t have an example of how to do that custom development.