donmik
Forum Replies Created
-
Please update to version 2.4.0. I’ve been working to make my plugin fully compatible with BP Profile Search.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Remove Birthday fieldThe buddypress behavior is display only the fields from base group in registration form. So if you don’t want the birthdate field to be displayed just move it to a new group.
If you want to have all your fields in base group, you will have to modify the registration form template. This file is located inside wp-content/themes/your-theme/registration/register.php. If you don’t have this file, it’s because your theme is not overriding buddypress default file, so you need to do it by copying the original file inside your theme.
- Create a folder named “buddypress” inside your theme.
- Create a folder named “members” inside the previous folder created “buddypress”.
- Copy file “wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php” inside your-theme/buddypress/members/.
- You have to modify this template, inside the loop you have to search your birthdate field and hide it.
You need to know how to code to do this, so if you don’t know, you will have to find some developer to help you.
Hi,
Send me an url to your website please. This is not happening on my test site.
You have to put this code between <script> tags.
<script> jQuery('p.description').each(function() { // Clone description. // Looking for parent div. // Looking for label of checkbox field or radio field first. var desc = jQuery(this).clone(), parent = jQuery(this).parent(), label = parent.find('span.label'); // If there is no label of checkbox field or radio field, we look for normal labels. if (!label.length) { label = parent.find('label:first'); } // If there is a label. if (label.length) { // Putting the description after the label. label.after(desc); // Removing the original description. jQuery(this).remove(); } }); </script>If it doesn’t work I will need to see your website, send me an url to see it.
Hi,
Right now this is not possible, sorry.
If you are using a custom theme please try to switch to another theme. I believe this can be an issue with your theme.
Hi,
I have an update planned with 3 new types of field:
- Custom taxonomy selector
- Custom taxonomy multiselector
- A number field within range. You can define min and max values.
I don’t have time for much more, sorry, but I will consider add those features in following updates.
About the plugin you suggest, I think it should work with registration too so maybe you should open an issue in github and ask for the author to help you.
Thanks!
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Minimum birthdate ageYou need to check the 3 dropdown boxes (day, month and year) and update them according to your needs.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Minimum birthdate ageYou can do it using javascript. I don’t know another way to do this.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] image not visible in bbpress forumYou have to ask the plugin author. He will know better his plugin than me.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image Field – responsive?If you don’t know css, it’s better you find someone who can do it for you.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] image not visible in bbpress forumI don’t recommend you bbp buddypress profile information plugin. This plugin uses sql to get the data instead of using buddypress methods like xprofile_get_field_data or bp_get_profile_field_data.
This plugin only displays the content of the field in sql table. This content is the path of the image. If you want to display the image you need to use xprofile_get_field_data or bp_get_profile_field_data.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image Field – responsive?Use css for this. Something like this:
max-width: 100%;should do the trick.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] image not visible in bbpress forumHow are you displaying the image? Are you using custom code?
Hi,
Can you send me a screenshot or copy and paste the error you see?
I’m trying to reproduce it with my test site and I couldn’t do it.