-
4ella replied to the topic User Specific Front Page in the forum How-to & Troubleshooting 11 years, 3 months ago
Snippets are always better, at least for me, less plugins better is, I don’t need this function but if I will need it I will choose this snippet, hope that @bphelp is working on hundreds new useful snippets on his site, I will visit them daily 🙂
-
4ella replied to the topic User Specific Front Page in the forum How-to & Troubleshooting 11 years, 3 months ago
I think that Brajesh’s plugin does exactly this: http://buddydev.com/plugins/bp-redirect-to-profile/
-
4ella replied to the topic Use BP data to populate per-user forms in the forum Miscellaneous 11 years, 3 months ago
@evrenk That snippet works with gravity forms text field, I already know that it doesn’t work with dropdown fields, I didn’t test it with other fields as radio etc buttons, I will also try to find a solution for dropdown fields and if I will find it I will report it here.
-
4ella started the topic Buddypics and BP Groups Frontpage plugin in the forum Third Party Plugins 11 years, 3 months ago
It seems that Tim Carey @timcarey creator of very useful BP Groups Frontpage plugin stopped developing his plugin, this plugin’s images depends on BP album, I wanted to know how can we use that plugin with Buddypics instead , in admin part when I uninstall BP album I get this message: “You must have bp-album+ Installed for bp Group Frontpage…[Read more]
-
4ella replied to the topic Use BP data to populate per-user forms in the forum Miscellaneous 11 years, 4 months ago
If somebody need it, I got that working with gravity forms using this code, gravity forms parameter name= city
add_filter("gform_field_value_city", "populate_city");
function populate_city($value){
global $current_user;
get_currentuserinfo();
return xprofile_get_field_data('city', $current_user->ID);
} -
4ella replied to the topic Use BP data to populate per-user forms in the forum Miscellaneous 11 years, 4 months ago
I am trying something similar with gravity forms, I am trying to pre-populate gravity forms fields with buddypress profile data fields and I can’t get it work too, I am using something like this in functions.php if it helps:
// Buddypress pre-populate phone
[Read more]
add_filter("form_field_value_phone", "populate_phone");
function populate_phone() {… -
4ella replied to the topic Custom Post Types and Buddypress Activiy/posting in the forum How-to & Troubleshooting 11 years, 4 months ago
yes, You will only need 3 plugins in case that Achievements plugin supports Custom Post Types:
1.Gravity Forms plugin
2.Gravity Forms + Custom Post Types plugin
3.Achievements plugin -
4ella replied to the topic Help with populating form in the forum How-to & Troubleshooting 11 years, 4 months ago
This is very nice article about pre populating user meta: http://www.doitwithwp.com/pre-populate-fields-using-gravity-forms/
-
4ella replied to the topic Help with populating form in the forum How-to & Troubleshooting 11 years, 4 months ago
This is the old thread but the same question, I didn’t want to spam here that’s why I will ask the same question here again, I would like to dynamically populate buddypress data into custom post types gravity forms when the user is logged in, I am succesfully populating wordpress user meta, but I don’t know the code in functions.php for buddypress…[Read more]
-
4ella replied to the topic BuddyPress Profile Page Tabs in the forum Creating & Extending 11 years, 4 months ago
@tfazlani Would you mind sharing your working code Tfazlani?
-
4ella replied to the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
@modemlooper I very apologize for my mistake, yesterday all the day I have been wrongly adding the bp-custom.php into bp-default folder instead of plugin directory, that’s why it was always the same, NOT working 🙁 your first code was correct, it is working good, plural names code didn’t work for me.
function inspired_record_more_types( $types )…
[Read more] -
4ella replied to the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
Thank you, I will change it immediately and will try that and report it here.
-
4ella replied to the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
@modemlooper Thanks again for your respond, but I can’t get it work, pls. take a look at my custom-type.php on pastebin where I have 4 custom post types registered:
http://pastebin.com/PuQczr0A
maybe I should also register plural name to make it work ?and pls.take a look at your code in my bp-custom.php:
http://pastebin.com/B9xUuMN8I’ve tried…[Read more]
-
4ella replied to the topic [Resolved] BP1.8-beta1 & WP3.6-beta4–Blank frontend when using BP default theme in the forum Installing BuddyPress 11 years, 4 months ago
Yes, something’s strange, it works now, I have removed my customized buddypress and I have installed the fresh one (I don’t use child themes, (I always rewrite only css file and pages) so I gave back all my files including functions.php bp-custom.php one by one and now it works again. Unfortunately I can’t say what was wrong, maybe WP 3.6-beta4…[Read more]
-
4ella replied to the topic [Resolved] BP1.8-beta1 & WP3.6-beta4–Blank frontend when using BP default theme in the forum Installing BuddyPress 11 years, 4 months ago
I don’t have any plugin active except buddypress plugin, which I have several times deactivated and activated, I have also overwritten 2 times all wordpress files in case that some of them was uploaded badly, still no luck, it seems like those 2 beta versions don’t like each other, bp 1.8 is working excellent because the first upgrade was BP-1.8…[Read more]
-
4ella started the topic [Resolved] BP1.8-beta1 & WP3.6-beta4–Blank frontend when using BP default theme in the forum Installing BuddyPress 11 years, 4 months ago
I have installed both latest BETA WORDPRESS & BUDDYPRESS BETA’s versions and after WP 3.6-beta4 worpdress upgrade I can’t get frontend when using BP 1.8-beta1 buddypress bp-default theme, I can work in admin backend, but I can’t do anything in frontend until I switch to one of WordPress default themes (to all Twenty Ten, Twenty Thirteen etc.)…[Read more]
-
4ella replied to the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
Yes I do, in settings I have checked: Record activity for new posts and comments from your site, I was succesfully using this snippet for single CPT all the time, but I ve’forgot to say that yesterday I’ve installed latest 1.8 Beta BP version, maybe 1.8 version is different and I have not tried single Custom Post Type activity recording with this…[Read more]
-
4ella replied to the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
Thank you @modemlooper, but this code seems like not working, I have also changed everywhere ‘ to this ‘ 🙁
-
4ella started the topic Multiple custom post types in activity stream in the forum Creating & Extending 11 years, 4 months ago
I have posted the comment on support forum yesterday, but I have never see it published maybe because the thread was marked as (resolved) so I will ask again:
I am succesfuly using @rogercoathup ‘s snippet in bp_custom.php to display custom post type in activity stream, but I would like to use more then ONE CPTs in my activity stream, how can I…[Read more]
-
4ella replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 11 years, 4 months ago
I would like to ask to @henrywright-1
how could I display 1 latest post from different custom post types, I have several CPT posts as a “portfolio”, “applicant”, “employer”. I would like to display 1 latest post from every custom post type (if exists because for example CPT applicant creates user role applicant, so it is not an employer), I…[Read more] - Load More
@4ella
Active 9 years, 7 months ago