-
Nahum replied to the topic log in to personal activities in the forum Third Party Plugins 5 years ago
-
Nahum replied to the topic User Blogs from Front End in the forum Third Party Plugins 5 years ago
Yep, BuddyDev is one of my most trusted! 🙂
-
Nahum replied to the topic BuddyPress Members Profile aren't showing up under the Member link in the forum Requests & Feedback 5 years ago
@easleyr1 your other members profile do exist https://trvbe.com/members/krisavalon/, are you using a plugin to remove the members slug? or doing something like this https://buddypress.org/support/topic/remove-members-slug-so-its-commembername/
all the links to users have the members slug missing, so its not just friends.
I’d check if any of the…[Read more]
-
Nahum replied to the topic BuddyPress Members Profile aren't showing up under the Member link in the forum Requests & Feedback 5 years ago
You say you deleted your “members” page? Is there still another members page in trash?
Have you tried a different page other than ‘members’ and associated it to member component directory?
-
Nahum replied to the topic Disable meta activities on homepage in the forum How-to & Troubleshooting 5 years ago
Maybe something like this?
add_filter('bp_member_registered', '__return_false');
Cannot tell what page that is? Is that the members widget?
-
Nahum replied to the topic User Blogs from Front End in the forum Third Party Plugins 5 years ago
There are many options to do frontend posting a quick search on wp plugins returned a few.
https://wordpress.org/plugins/search/frontend+posting/
Other options I seen used and used myself are Gravity Forms and Advanced Custom Fields to have frontend post forms for loggedin users but it depends I guess on how you far you want to take the…[Read more]
-
Nahum's profile was updated 5 years ago
-
Nahum started the topic Group Header Group Name? in the forum Requests & Feedback 5 years ago
Are Group profile page headers supposed to have the group name missing from the group header. I look at legacy and nouveau, in the group-header.php or cover-image-header.php.
Seems I always have to overload to insert the group name.
<?php if ( ! bp_nouveau_groups_front_page_description() ) : ?>
[Read more]
<div id="item-header-content">
<h2… -
Nahum replied to the topic Disable BP Tooltips in the forum How-to & Troubleshooting 5 years ago
After more trial it seems to be only within the bp wrapped body where activity stream and other components reside.
For example the RSS icon tooltip works but the activity entry buttons and timestamp tooltips do not
-
Nahum started the topic Disable BP Tooltips in the forum How-to & Troubleshooting 5 years ago
And replace with bootstrap tooltips
jQuery('.bp-tooltip').tooltip({
title: function(){
return jQuery(this).attr('data-bp-tooltip');
}});
doesn’t seem to work. I’ve removed all bp css for tooltips and can’t find anything else interrupting.
-
Nahum replied to the topic Choosing activity stream information in the forum How-to & Troubleshooting 5 years ago
Anyone might know why this won’t this also apply to the stream after selecting a filter tab like My Friends? Works on the main feed but not after selecting a tab?
-
Nahum started the topic Remove Rich Text Buttons from Message Compose in the forum How-to & Troubleshooting 5 years ago
Have tried ‘tinymce => false’ in wp_editor in js-templates/messages/index.php
but when this is disabled the messages do not send on clicking send.
Also tried user_can_richedit to false. But same issue, clicking send doesn’t do anything.
Console: Error
buddypress-messages.min.js?ver=5.0.0:1 Uncaught ReferenceError: tinyMCE is not defined…[Read more] -
Nahum started the topic bp_core_remove_nav_item is not for removing nav item tabs? in the forum How-to & Troubleshooting 5 years ago
What is the best way to remove user tabs? bp_core_remove_nav_item, after many years now, still doesn’t seem to be the solution. This method doesn’t only remove the link from the menu, it disables the component entirely unless I’m missing something because it seems to be offered up as the accept solution on several threads.
I’ve tried…[Read more]
-
Nahum replied to the topic Change Activity Filter Nav Items Text to Icon in the forum How-to & Troubleshooting 5 years ago
found where this was not being allowed.
in common/nav/directory-nav.php
changed
<?php bp_nouveau_nav_link_text(); ?>
to
<?php echo bp_nouveau_get_nav_link_text(); ?>
-
Nahum started the topic Change Activity Filter Nav Items Text to Icon in the forum How-to & Troubleshooting 5 years ago
Trying to add icon in place of text but html is not allowed. Any help on how to allow html here.
add_filter('bp_nouveau_get_activity_directory_nav_items', 'my_bp_nav_items_text');
function my_bp_nav_items_text($nav_items) {
$nav_items['all']['text'] = __( '<i class="fas fa-at"></i>', 'buddypress' );
return…[Read more]
-
Nahum started the topic Activity Page as Front Page, Edit Page, Multisite vs Single in the forum How-to & Troubleshooting 5 years ago
Came a across some curveballs when using multisite and putting activity page as static front page.
I’m seeing the following:
On a single install, when the activity page is set as the front page, the Edit Page link in the admin bar appears normally.
One multisite, when the activity page is set as the front page on the main site, the Edit Page…[Read more]
-
Nahum replied to the topic Filter activity from "Everything" only in the forum How-to & Troubleshooting 5 years, 5 months ago
I always reference this https://buddypress.org/support/topic/choosing-activity-stream-information/ but maybe something like, untested
add_filter( 'bp_before_has_activities_parse_args', function( $args ) {
if(bp_is_current_action( 'groups' )) {
$args['object'] = array('groups');
} else {
$filter_query = array(
array(
'column' =>…[Read more] -
Nahum replied to the topic Legacy and Nouveau Templates in One Theme in the forum Creating & Extending 5 years, 5 months ago
If the above is working with template files, why wouldn’t overwriting buddypress.css via /buddypress/bp-legacy/css be working like it would under /buddypress/css or /community/css?
-
Nahum replied to the topic Legacy and Nouveau Templates in One Theme in the forum Creating & Extending 5 years, 5 months ago
oops sorry I put in the wrong snip then I couldn’t edit…here’s what seems to be working for me.
add_filter( 'bp_get_template_locations', 'my_template_pack_stack' );
function my_template_pack_stack( $locations = array() ) {
if( bp_get_theme_package_id() === 'nouveau') {
$locations[] = '/buddypress/bp-nouveau';
} elseif(…[Read more]
-
Nahum started the topic Legacy and Nouveau Templates in One Theme in the forum Creating & Extending 5 years, 5 months ago
I have had a fear of missing out ever since nouveau came out and I’ve still been hung up on this question: https://buddypress.org/support/topic/bp-nouveau-vs-bp-legacy/
Is this the solution or on the right path?
function my_template_pack_stack( $stacks = array() ) {
[Read more]
$retval = array();
if( bp_get_theme_package_id() === 'nouveau') {… - Load More
@nahummadrid
Active 2 years, 4 months ago