Forum Replies Created
-
In reply to: What is “i0.wp.com”?
Thanks for the heads up. I also thought I had a config issue in my local Dev.
In reply to: Order by alphabetical to be default orderTo ‘default’ the listings to Alphabetical would be a modification of the core, however, simply adding the following to your while (bp_has_component()) statement should get them in alphabetical:
`bp_has_groups(‘type=alphabetical’)`
There are other loops that will take this argument as well, but here’s the link to the Groups Loop Codex page.
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-groups-loop/In reply to: [Resolved] Groups: Blank page after updating to 1.6A Blank page typically means an error is happening in PHP, however if your hosting provider or php.ini configuration is set to NOT display errors, you will see a blank page.
See if you have a way to set your display_errors on in PHP.ini or if you have access to the code you can try temporarily adding the following to your wp-config.php:
`
error_reporting(E_ALL);
ini_set(‘display_errors’,’On’);
`This may give you the ability to see the error you are getting and troubleshoot from there. Just be sure to remove these two lines from your wp-config.php once you get the errors as it will show all errors and warnings to visitors while in place.