donmik
Forum Replies Created
-
You need to use wordpress function:
$post = get_post($post_id); echo $post->post_title;You have to take every post id and use “get_post” for example to get the post, then you can show the title.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image field – no upload option!mmm, it’s working in my test site. Maybe you are using a custom theme? Try with buddypress default.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] New featuresThanks!
You can try using a filter “bxcft_show_field_value”. Check if it’s your about field and delete the <a href you don’t need.
By the way, this has nothing to do with my plugin…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] no error messageMmmm, this is probably a theme issue if you are using a custom theme. The normal behaviour should be display an error message above the username field saying: “Please enter a username”.
My plugin don’t have hidden fields… Maybe you can use a normal text field and hide it with javascript…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Website FieldYou should use “bxcft_show_field_value” filter. You can see how to use in the FAQ
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Everyone is aged 44 – Birthday FieldTry to see in database what value is stored in the field… I’ve tried on my test site and it works.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] nobody field visibilityHi,
This visibility setting was created when a user wants to hide a field to the rest of members of buddypress, something like hiding his phone number…
If you need to hide a field, try to do it inside the template of edit profile form.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Full name field visibilityYou need to ask your question in buddypress forums, it’s the better place for this.
In my opinion, the easiest way should be modifying templates and write some php like this:
if (bp_displayed_user_id() != get_current_user_id())If the displayed user is not the user logged in, hide the field…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] version 1.5.9.6 bug image fieldHi,
Sorry about the late…
This is not caused by my plugin because I don’t create any htaccess… You should try security plugins, they usually are responsible of creating htaccess files.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Accordion integrationHi,
Sorry about the late, but my daughter was born 2 weeks ago and I don’t have much time until a few days…
About your question, I don’t think this has nothing to do with my plugin. You should better try to use some plugin like Gravity forms… Maybe you can achieve what you want with javascript and css, but it seems to be a bit complicated…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Ordering of custom fieldsHi,
Sorry for the late, but I’m a dad since 2 weeks and this is insane…xD.
About your question, I don’t think this is a plugin issue… My plugin don’t have anything to do with groups or tabs…Try to deactivate my plugin and see if this behaviour continues or not.
The most secure way is with php code. Inside the loop responsible of displaying form elements, you can ommit the elements you don’t want users can change.
With css, you can do it easily, but users can change them if they want and they know how use firebug or chrome inspector…