William M Coyne
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Pricing Table] Button url not workingI believe it is your plugin. It says “Version 5.1.6 | By WP Darko.”
If anyone else is wondering how to work around this I removed the redundant registration form label and centered the terms and conditions using the following code. The CSS will break if any forms have more than one required check box because it relies on the class pm_checkboxrequired for CSS targeting. The remaining content width is only set to a default value of 60%. Once the extra label is removed via JQuery the remaining content looks weird and appears left-aligned. This clumsy targeting is the best I could come up with since these bits of html do not have unique classes or ids that will work across registration forms for those of us that use more than one. The custom field gets a random id like pm_field_37 which will change if a different registration form is displayed.
CSS:
.pm_checkboxrequired {
????width: 100% !important;
}JQuery:
$(‘label:contains(“I agree to the terms and conditions”)’).hide();
- This reply was modified 5 years, 7 months ago by William M Coyne.
- This reply was modified 5 years, 7 months ago by William M Coyne.
- This reply was modified 5 years, 7 months ago by William M Coyne.
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Demo?What exactly are you trying to do? If you can be a little more specific I might be able to tell you if it’s feasible.
Forum: Plugins
In reply to: [ProfileGrid – User Profiles, Groups and Communities] Demo?As an FYI I purchased them all and they’re pretty straightforward and work as intended though I am getting pretty comfortable customizing the PHP. I have yet to fail to be able to customize anything for my very specific needs. The author is good at coding. I have no issue working with his/her/their code. It’s very easy even as a novice PHP programmer.
This isn’t the answer I was looking for exactly, but I solved it for anyone else wondering. If you want to rename the Friends tab simply edit the file:
wp-content/plugins/profilegrid-user-profiles-groups-and-communities/public/class-profile-magic-public.php
Replace the occurrence of ‘Friends’ within the function pm_show_friends_tab with whatever you want it to say.