donmik
Forum Replies Created
-
Great, now, it works perfect!!!
Thank you so much!
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Custom Post Type ErrorThe warning ocurrs when you are going to edit profile. It’s because there is no custom post type selected. Have you selected at least one custom post type in admin?
Hi Bigul
Our email is [ redacted ]
Thanks for your help.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Custom Post Type ErrorHi,
Maybe it’s because you don’t have any custom post type created. It’s a warning. The var which must have custom post type is null. You must create custom post type and select one when creating a custom post type multi selector.
Mmmm, I don’t think buddypress xprofile is the best thing you can use for this. If you refer to one field by product. It is not possible I think with this plugin and buddypress xprofile.
You can give permissions to your users to create a custom post type (“product” maybe?) and they can create all products they want, but with profile fields you can’t do this, I think.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Group Field Menu HierarchyHi,
I don’t know if this is possible, you need to ask better in buddypress forums for support. You can customize theme files but I’ve never try changing urls and I don’t think it will be easy.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Hook into Registration formHi,
If you want to show some custom fields in registration you need to customize your register form in your theme.
Hi Bigul
We are working in the last version, and we found it this:
In the previous version, you search parent of object in the functions wpcf_pr_admin_post_meta_box_has_form_headers and wpcf_pr_admin_post_meta_box_has_form. If the relationship hasn’t defined the value fields_setting, the plugin search this values and then combine this values with $headers array in the function wpcf_pr_admin_post_meta_box_has_form_headers and again in the function wpcf_pr_admin_post_meta_box_has_row
In the last version, if the relationship hasn’t defined the value fields_setting, the plugin only show the title of the post in the new form. [ the function “row()” in the archive embedded/classes/relationship/form-child.php ]
We hope, this answer helps you to understand our problem.
Thanks for your help.
Hi bigul
It is correct. if you use two customs types, it works fine. but if you use one custom type (C1) and one page (P1) no. Our example is:
P1 have a lot of children kind of C1, so we use Many-To-Many relation. We create a object ( rel-C1-P1) where C1 and P1 are parents of rel-C1-P1.
When we edit page, we want to add new C1 with the dropdown selector of C1.In this version (1.2) is not possible, Is this one limitation ?
Thanks for your help.
Hi Bigul
Thanks for your answer, but i don’t understand it.
Which limitations it has? in the last version,1.1.3.4, this work fine, and now no.Can you repeat the explication with other words, please?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] WP Dynamic IDsmmm, I don’t think this plugin can help because this plugin only add new field’s type to the buddypress xprofile fields.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] WP Dynamic IDsHi, I am not sure I understand what you are doing. Can you explain a little more please?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Check Box for terms & conditionHi,
1- I understand you want to upload pdfs, docs, … It’s very similar to upload an image. I will try to add this option while I’m working on uploading images.
2- Here you already have checkboxes but you cannot add a link in the value. I think I can create a field specifically for this type of things.
You can add a filter to the label too.
Add this to your functions.php:
function my_bp_get_the_profile_field_name($name) { if ($name == 'Date of Birth' && strpos($_SERVER['REQUEST_URI'], '/register') === false) { return 'Age'; } return $name; } add_filter ( 'bp_get_the_profile_field_name', 'my_bp_get_the_profile_field_name', 15, 1);$name will have “Date of Birth” the name of your field, you need to check it and check if you are not in the registration page. If not, you return ‘Age’.
I think you find the answer in the other topic, no ?