donmik
Forum Replies Created
-
Hi,
In my test site, it works well, so this is not caused by my plugin. There is another plugin that is causing this or maybe causing a malfunction with my plugin.
The error of debug mode is not an error, it’s a notice, and by the way I don’t call bp_setup_current_user in my plugin so this notice is not from my plugin…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Repeatable fieldsI’ll check this when I have more time, but for now the best way to do this is with javascript.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] HTML not rendering, just plain textSorry, now I have no time to check this, but you can search on google for selectbox with icons with javascript or css. I think you will find jquery plugins or tutorials in css to do this.
You need to remember my plugin only add new field’s type to Xprofile extension of buddypress. So, my plugin is not filtering your html. It’s xprofile the extension of buddypress. If you want xprofile don’t do this, you need to contact buddypress creators.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] HTML not rendering, just plain textI think the best way to achieve this is using css or/and javascript.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] User Avatar On Register Form,Are you using a custom theme? Have you tried to use the buddypress default theme? I think this issue use to happen when you use a custom theme because custom themes sometimes are not updated and are using old templates of buddypress…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Avatar (Image)Well, if you just created the field “Avatar” and copy my code, it’s totally normal that the user avatar are not displayed. Until the users don’t upload the avatar using the new field…
With this code, you are saying to wordpress to show avatar from this field and not from the original avatar, so, until the users don’t reupload the avatar, you will not see any avatars…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] DOB field – minimum ageYou can do it with javascript in your template.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Avatar (Image)I mean the name of your field. When you create a new profile field, you have to write a Field Title. This if what you need to write instead of IMAGEFIELD.
So, if in Field Title, you write “Avatar”, you need to replace IMAGEFIELD with Avatar.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Default values DOB fieldAre the default values inserted in database with user_id = 0?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Country List Dropdown suggestion..Hi,
At first, I was thinking to do this but since I found this plugin Countries, I don’t believe it’s a need.You can download this plugin and use Custom post type field of my plugin.
With my plugin activated you need to use this code:
function remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action('bp_setup_globals', 'remove_xprofile_links');add action to bp_setup_globals.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Default values DOB fieldI don’t know why. In my test site, this is not happening. Is this happening always? With every registration or only with some of them?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Avatar (Image)No, IMAGEFIELD is the name of your field ‘Image’ or ‘Avatar’. Not the id.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Default values DOB fieldHi,
I believe it’s because you have default value in the database. Search this table: bp_xprofile_data and here you need to find the date 6 march 1966 in this format:
1966-03-06 00:00:00 probably with user_id=0. If you delete this entry I think it will work.Also, if you delete the field and you recreate it must work. I don’t know why this is working this way. Maybe when I have more time I can investigate why.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image Uploading Not WorkingAs I say before. In my test site it works. I cannot try it with Windows Server so maybe it’s due to Windows Server.
You need to debug this by yourself, I cannot help you much. Try to deactivate plugin by plugin. Try to activate default buddypress theme. If nothing works, I think it is because of windows server…