-
Prashant Singh replied to the topic by default sort groups alphabetically in the forum How-to & Troubleshooting 5 years, 10 months ago
I have tested from both the users and also as a guest, groups are sorted alphabetically.
Please try to clear your cache. Also, check if everything you did for sorting is reverted except the code which I gave.
-
Peter Hardy-vanDoorn replied to the topic How to show location field in members-loop.php in the forum Installing BuddyPress 7 years, 7 months ago
The documentation for the Members Loop is here: https://codex.buddypress.org/developer/loops-reference/the-members-loop
You will see that there are a number of hooks which you can add your additions into, particularly at line 44:
do_action( 'bp_directory_members_item' );and at line 59:do_action( 'bp_directory_members_actions' ); -
wbcomdesigns replied to the topic Changing profile layout based on membership in the forum Creating & Extending 7 years, 11 months ago
@hanza3 multiple layouts can be created for profile view and it can be wrapped with membership conditions. We had tried a similar approach to our BuddyPress theme which offers members to choose their profile layout from their profile and site admin can also set the default layout for members. With some customization, it can be used with membership levels.
-
shanebp replied to the topic Font Awesome breaks ajax on delete link in the forum How-to & Troubleshooting 11 years, 8 months ago
It’s the jquery in global.js
The ‘target’ becomes the icon rather than the a tag.
Soif ( target.hasClass('delete-activity')fails.Changing to this gets the right target:
if ( target.hasClass('icon-trash') {And then you need to change:
var link_href = target.attr('href');to:
var link_href = target.closest("a").attr("href");otherwise…[Read more]
-
r-a-y replied to the topic [Resolved] Changing the Default RSS Feed (Sitewide Activity) in the forum Requests & Feedback 12 years, 10 months ago
It’s probably something to do with your OneCommunity Themeforest theme.
I’m guessing that the theme author put bp_head() before wp_head(). Pass that tidbit to the theme author or adjust it yourself by moving bp_head() below wp_head() in header.php.
If you switch to another theme like Twenty Twelve or Twenty Thirteen, you should see that the…[Read more]
-
danbp replied to the topic Problems implementing po/mo file in the forum How-to & Troubleshooting 12 years, 10 months ago
Translation goes throught php gettext module witch use the compiled mo file
Compilation is accomplished by the software (poEdit in your case).The pot and the po files are “working” files, they are not needed on the server.
The pot contains all translatable strings
The po contains the translatable strings AND the translation
The difference is…[Read more]
@tamikacaldwel
Active 3 years, 6 months ago