-
modemlooper replied to the topic Private BP without a plugin in the forum How-to & Troubleshooting 11 years, 4 months ago
Custom page templates will break whenever you add a filter to get_header because of the page template header info. This is really not a BuddyPress issue. There are other ways to redirect the page but they will work just like any plugin. The reason they maybe slow to redirect is because they redirect after page load so you are waiting on header and…[Read more]
-
modemlooper replied to the topic Private BP without a plugin in the forum How-to & Troubleshooting 11 years, 4 months ago
function bp_communituy_redirect() {
if( !is_user_logged_in() && $_SERVER['REQUEST_URI'] != '/community/' && !is_home() ) {
wp_redirect( get_option('siteurl') . '/community/' ); exit;
}}
add_filter( 'get_header','bp_communituy_redirect', 1 );
-
modemlooper replied to the topic [Resolved] Dynamic URL's for Buddypress User Profiles, Friends etc in the forum How-to & Troubleshooting 11 years, 4 months ago
I would not do that. Not safe. You can create your own widgets.
-
modemlooper replied to the topic buddymobile in the forum How-to & Troubleshooting 11 years, 4 months ago
You shouldn’t use cache on mobile when the mobile is a theme switch like wptouch and buddymobile.
-
modemlooper replied to the topic Responsive Theme [role] Problem in the forum Installing BuddyPress 11 years, 4 months ago
https://codex.buddypress.org/developer/theme-development/template-hierarchy/
You can copy templates over and then remove roles
-
modemlooper replied to the topic buddymobile in the forum How-to & Troubleshooting 11 years, 4 months ago
If you want to have it displayed on more devices you will need to add the user agent for the devices you want.
In the file buddymobile/includes/bp-mobile-class.php
You will see an array of $useragents. you can add ‘Kindle’ or ‘Silk’ depending on device to this array. I have not tested on Kindle aside from a few times I’ve seen a Kindle on…[Read more]
-
modemlooper replied to the topic RSS reader for each member/group in the forum Creating & Extending 11 years, 4 months ago
Haven’t had time to work on it yet.
-
modemlooper replied to the topic code showing in top since 1.8 update in the forum How-to & Troubleshooting 11 years, 4 months ago
The theme you are using is not bp default or twenty twelve. The BuddyPress part of the page looks custom.
-
modemlooper replied to the topic code showing in top since 1.8 update in the forum How-to & Troubleshooting 11 years, 4 months ago
Are you running a theme that is not BP default or Twenty Twelve. What happens if you switch to one of these themes? Also it could be a plugin.
-
modemlooper replied to the topic Own style buddypress.css in the forum How-to & Troubleshooting 11 years, 4 months ago
you can use both locations? everything bp makes better sense in buddypress folder
-
modemlooper replied to the topic Own style buddypress.css in the forum How-to & Troubleshooting 11 years, 4 months ago
@hnla was that switched in 1.8?
-
modemlooper replied to the topic Own style buddypress.css in the forum How-to & Troubleshooting 11 years, 4 months ago
yourtheme/css/buddypress.css
place the file there and it will overide the css
-
modemlooper replied to the topic [Resolved] Dynamic URL's for Buddypress User Profiles, Friends etc in the forum How-to & Troubleshooting 11 years, 4 months ago
Use the code I posted above
-
modemlooper replied to the topic [Resolved] Global.js cannot work in the forum How-to & Troubleshooting 11 years, 4 months ago
always use core jquery file.
-
modemlooper replied to the topic Remove profile field from register page? in the forum How-to & Troubleshooting 11 years, 4 months ago
Any profile field in the ‘base’ section will show on the registration form. If you do not want a field on that section create a new profile section and then drag the field onto the new sections tab.
https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/
-
modemlooper replied to the topic Hook on xprofile_delete_field_data() in the forum Requests & Feedback 11 years, 4 months ago
So, you want xprofile_data_after_delete() function?
Post it on the BuddyPress trac as an enhancement
-
modemlooper replied to the topic [Resolved] Global.js cannot work in the forum How-to & Troubleshooting 11 years, 4 months ago
Are you trying to add your own jquery file?
-
modemlooper commented on the post, BuddyPress 1.8 "Di Fara", on the site BuddyPress.org 11 years, 4 months ago
activity meta filter 😀
-
modemlooper replied to the topic Custom page with fields that publish to a tab in profile in the forum Installing BuddyPress 11 years, 4 months ago
here is an example on how to add a tab to a user profile. then, in the content function you just output the info saved from the form.
-
modemlooper replied to the topic Hook on xprofile_delete_field_data() in the forum Requests & Feedback 11 years, 4 months ago
It should delete when nothing is selected to remove data.
- Load More
@modemlooper
Active 9 months, 4 weeks ago