-
Hugo Ashmore replied to the topic Why not blogs? in the forum Installing BuddyPress 12 years, 5 months ago
Because you haven’t enabled WP MS?
-
Hugo Ashmore replied to the topic Call to undefined function bp_has_groups() in the forum Installing BuddyPress 12 years, 5 months ago
That check for has groups can and perhaps ought to be wrapped in :
if( bp_is_active(‘groups’) ) {
}
-
Hugo Ashmore replied to the topic BuddyPress Template Pack Plugin – HELP in the forum How-to & Troubleshooting 12 years, 5 months ago
That theme is twentytweleve and is rendering quite normally so not sure what the issue is.
-
Hugo Ashmore replied to the topic Getting the old View Profile Back in the forum Installing BuddyPress 12 years, 5 months ago
It’s much more powerful than the BuddyPress profile system.
I seriously doubt that – the user account / profile is one of BP’s big strengths
Don’t really see any virtue in ‘?viewuser=2’
Regardless you request is going to be next to impossible BP has very specific and complex methods for constructing and managing url structures, even if t…[Read more]
-
Hugo Ashmore replied to the topic New Users Cannot Login to Buddypress After Activating their Account. in the forum How-to & Troubleshooting 12 years, 5 months ago
Cannot login or takes a while before the login is resolved, you appear to be contradicting yourself, saying ‘Cant login’ then later that you did after a wait.
You need to detail the process as clearly as possible, any errors that you might see etc, what type of usernames have they spaces in them which buddypress has converted into a…[Read more]
-
Hugo Ashmore replied to the topic BuddyPress Template Pack Plugin – HELP in the forum How-to & Troubleshooting 12 years, 5 months ago
Why won’t the theme work with BP’s theme compatibility, most themes do not support BP by default which was why theme compatibility was introduced. How does your theme look when you don’t run template pack i.e not bp folders in theme directory so BP knows to fall back to theme compatibility?
-
Hugo Ashmore replied to the topic Delete Selected not working in the forum How-to & Troubleshooting 12 years, 5 months ago
@famous the function works fine. Ensure you do have a selection of messages checked and that you have then selected the type of message to delete i.e ‘read’, ‘unread’ click delete selected and the will be removed.
-
Hugo Ashmore replied to the topic [Resolved] Buddypress not working on my theme. in the forum How-to & Troubleshooting 12 years, 5 months ago
Glad it worked.
One thing to bear in mind, if these changes are in the parent theme you may lose the changes if the theme gets updated so it might be wise to try creating a simple child theme with basic required files plus the two new BP ones to ensure your changes are preserved.Marking as resolved.
-
Hugo Ashmore replied to the topic [Resolved] Buddypress not working on my theme. in the forum How-to & Troubleshooting 12 years, 5 months ago
Afraid this section is not really standard WP:
$meta = meta::get_meta( $post -> ID, 'settings' );
$meta_enb = options::logic( 'blog_post' , 'meta' );This is a repeat of the earlier suggestion just in case it wasn’t followed quite fully?
To test things try copying that file, rename it buddypress.php, locate in your theme root
remove those two…[Read more]
-
Hugo Ashmore replied to the topic Incorrect page.php coding in the forum How-to & Troubleshooting 12 years, 5 months ago
Not quite correct the page-content contents ended up outside the loop, I’ve revised that but it’s hard to edit clearly.
I see no obvious issues so not really sure what’s not working correctly.
-
Hugo Ashmore replied to the topic Associating Buddypress with Rockettheme themes in the forum Creating & Extending 12 years, 5 months ago
And that is exactly what it should be ‘Without function’ or put another way empty with only a title set. You then go to the BP settings and select that page to associate.
-
Hugo Ashmore replied to the topic Adding Buddy Press Forums to Menu just generates blank page in the forum Installing BuddyPress 12 years, 5 months ago
‘We’ the forum regulars and contributors core or otherwise do acknowledge the need for better docs but everyone does need to bear in mind it’s a time factor issue, few of us have the time to go and edit docs, update them where necessary, what time is available tends to be prioritised towards code where time and resources are limited.
On that…[Read more]
-
Hugo Ashmore replied to the topic Incorrect page.php coding in the forum How-to & Troubleshooting 12 years, 5 months ago
(‘content’, ‘page’) refers to a file content-page.php the contents of that file replace the template call so was simply suggesting you open that file and copy contents directly to it’s parent minus any undue comments at top of file, then we are only having t study one file & can see all the code.
-
Hugo Ashmore replied to the topic Incorrect page.php coding in the forum How-to & Troubleshooting 12 years, 5 months ago
Checking that pastebin link to see what you’ve done does show the while loop in place and it
looks like it ought to be ok so there may be issues elsewhere.Just for safety copy the page.php file and rename it buddypress.php, revert your page.php to as it was. BP will use buddypress.php if it finds it. In buddypress.php replace the…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Child theme won't work in the forum Creating & Extending 12 years, 5 months ago
Spaces don’t exist they were never allowed, it was only Windows/MS that ballsed up the protocols to allow them. Never ever have spaces in file names or folder names stick to strict Unix conventions.
-
Hugo Ashmore replied to the topic Private group topics appearing in activity stream. Help! in the forum How-to & Troubleshooting 12 years, 5 months ago
This should have dealt with quite a few versions back so something may have crept back in. If you can ensure this isn’t some odd plugin issue and that this definitely wasn’t happening in 1.6 please open a ticket on http://buddypress.trac.wordpress.org using your site credentials.
I will just add though that a quick test on a local install running…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Child theme won't work in the forum Creating & Extending 12 years, 5 months ago
You’ll need to read up on CSS ‘Specificity’ or selector ‘weight’
briefly CSS dscribes a Cascade of rules, if you have a stylesheet stating:
body {background: blue;}
then one after stating:
body {background: red;}
The later wins out background is red.
however add ‘html into the selector set of the first:
html body {background: blue;}And it…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Child theme won't work in the forum Creating & Extending 12 years, 5 months ago
And that’s about it. Nothing happened.
That needs to be qualified. What exactly didn’t happen or more precisely what did you expect to happen?
When you create a child of bp-default or any child for that matter you inherit the parents functions.php as well as templates this means in the case of bp-default the CSS and JS are all i…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Buddypress not working on my theme. in the forum How-to & Troubleshooting 12 years, 5 months ago
Yep you can’t really copy bp-default theme index.php to a theme compat file. Your buddypress.php needs to be page.php complete with the WP loop (perhaps copying 2012 not a good choice as it calls a separate file for the WP loop) With a buddypress.php file complete with WP loop you’ll then need to replicate in it your themes essential parts that…[Read more]
-
Hugo Ashmore replied to the topic Is this how multisite registration is supposed to work? in the forum How-to & Troubleshooting 12 years, 5 months ago
Automatically? Not that I’m aware of, there used to be some tool for managing and moving users but lost track of what that was called.
This might be the sort of question @mercime may be able to shed more light on.
- Load More
@hnla
Active 7 years, 2 months ago