-
Henry Wright replied to the topic Still having problems with registration page; unable to create the new user page in the forum How-to & Troubleshooting 9 years, 6 months ago
Which plugins do you have activated?
-
Henry Wright replied to the topic List groups i am admin of in the forum How-to & Troubleshooting 9 years, 6 months ago
If you just need a quick and dirty approach for yourself to view, you could use the standard group loop to output a loop. See here.
Then put the following snippet directly after the line:
<?php while ( bp_groups() ) : bp_the_group(); ?>
Snippet:
<?php
[Read more]
$args = array(
'populate_extras' => true,
'group_id => bp_get_group_id()
);
$group =… -
Henry Wright replied to the topic List groups i am admin of in the forum How-to & Troubleshooting 9 years, 6 months ago
If you just need a quick and dirty approach for yourself to view, you could use the standard group loop to output a loop. See here.
Then put the following snippet directly after
<?php while ( bp_groups() ) : bp_the_group(); ?>
<?php
[Read more]
$args = array(
'populate_extras' => true,
'group_id => bp_get_group_id()
);
$group = groups_get_group(… -
Henry Wright replied to the topic Still having problems with registration page; unable to create the new user page in the forum How-to & Troubleshooting 9 years, 6 months ago
It sounds as though the problem is related to your theme. Do you see the problem happen with TwentyFifteen activated?
-
Henry Wright replied to the topic BuddyPress and TemplatesNext Toolkit in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @hansvdzwet
What happens is that when the TemplatesNext Toolkit plugin is active, all and every BuddyPress related link shows a page containing the content of the main/home page.
Does the problem happen when the plugin is deactivated? If not, then I suggest you contact the plugin author letting them know the details. Hopefully they can issue a fix.
-
Henry Wright replied to the topic BuddyPress and TemplatesNext Toolkit in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @hansvdzwet
What happens is that when the TemplatesNext Toolkit plugin is active, all and every BuddyPress related link shows a page containing the content of the main/home page.
Does the problem happen with the plugin is deactivated? If not, then I suggest you contact the plugin author letting them know the details. Hopefully they can issue a fix.
-
Henry Wright replied to the topic Register page "name required broken" in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @patrykos360
This is most likely a theme problem. Which theme are you using?
-
Henry Wright replied to the topic Public User Gallery ? in the forum Requests & Feedback 9 years, 6 months ago
-
Henry Wright replied to the topic This layout is insane… in the forum How-to & Troubleshooting 9 years, 6 months ago
Companion stylesheets were introduced in 2.3. You can read more about them here.
If they’re not quite to your taste, you can dequeue them. Here’s an example of how to do it:
function dequeue_bp_twentyfifteen() {
wp_dequeue_style( 'bp-twentyfifteen' );
}
add_action( 'wp_enqueue_scripts', 'dequeue_bp_twentyfifteen'… -
Henry Wright replied to the topic xprofile_insert_field_group() ignoring ID in the forum Creating & Extending 9 years, 6 months ago
Yeah sounds like it could be your database preserving referential integrity. i.e. Can’t delete a profile group unless all fields belonging to that group have been deleted first.
Check what’s going on by looking at your database. This may help:
-
Henry Wright replied to the topic xprofile_insert_field_group() ignoring ID in the forum Creating & Extending 9 years, 6 months ago
I may be wrong but passing a
field_group_id
could mean an existing field group gets updated. If nofield_group_id
is passed or the passedfield_group_id
doesn’t exist then a new field group gets created. And perhaps field group IDs don’t get recycled?That’s more of a guess than actual fact. The
BP_XProfile_Group
class is where the magic happens…[Read more] -
Henry Wright replied to the topic bp_displayed_user_fullname() Not Working in the forum How-to & Troubleshooting 9 years, 6 months ago
@codemonkeybanana Glad to hear you solved this 🙂
-
Henry Wright replied to the topic BP on multisite WP 4.1, Manage Sign Ups failing with permission denied in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey guys,
This is a known issue. See #6360 for more info.
(@codemonkeybanana I think you already found it) 🙂
-
Henry Wright replied to the topic Remove render-blocking JavaScript in the forum How-to & Troubleshooting 9 years, 6 months ago
@hnla in the past, whenever Google said jump, I tended to blindly jump fearing that their ranking algorithm would punish me if I didn’t. Nowadays, unfortunately, I still tend to blindly jump. 😉
-
Henry Wright replied to the topic Remove render-blocking JavaScript in the forum How-to & Troubleshooting 9 years, 6 months ago
I think what Google is saying “remove render blocking JavaScript” is kind of misleading. Remove being the offending word. Rather, they most likely mean to say move all JavaScript to the footer so it doesn’t block page rendering.
Note, I’d most certainly keep the JavaScript. However, I may consider moving it like Google suggest.
-
Henry Wright replied to the topic Changing labels without localization in the forum How-to & Troubleshooting 9 years, 6 months ago
@danbp thanks for these links! 🙂
-
Henry Wright replied to the topic Changing labels without localization in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @danbp,
Do you have any links to details about the
gettext
problem? I’m interested to learn more. -
Henry Wright replied to the topic Changing labels without localization in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @joshdrok
An alternative way of changing text is to use the
gettext
filter. See this article for more info:https://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
-
Henry Wright replied to the topic Hacking BP Classes to Search OR Instead of AND in the forum How-to & Troubleshooting 9 years, 6 months ago
Hey @vanleurth
You could use the bp_parse_args filter for this. It will allow you to perform a meta query.
Hope this info helps 🙂
-
Henry Wright replied to the topic Fatal error: Allowed memory size of 268435456 bytes exhausted in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @quincie
268mb is quite a lot. Do you know what is causing this limit to be reached?
- Load More
@henrywright
Active 8 months, 2 weeks ago