Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,601 through 5,625 (of 32,678 total)
  • Author
    Search Results
  • #259817
    Toni
    Participant

    WordPress v4.6.1
    BuddyPress v2.6.2
    Theme Sydney

    This is a disaster! No one can find the menu for Users with Profile, Settings, Edit, etc. I couldn’t find it for weeks.

    I need to create a link to include in the main menu for Users to get to their page. Side bar Profile link too.

    #259815
    Toni
    Participant

    I couldn’t find the user menu – with the access to Profile, Settings, etc. for weeks. My users aren’t tech savvy or very web experienced, they’ll never find it.

    WordPress v4.6.1
    BuddyPress v2.6.2
    Theme Sydney

    r-a-y
    Keymaster

    This is a bug with bbPress, not BuddyPress.

    See the following ticket with a fix attached to it:
    https://bbpress.trac.wordpress.org/ticket/2974

    #259808
    Henry Wright
    Moderator

    Try asking on the BP Profile Search support forum. Support is very good.

    https://wordpress.org/support/plugin/bp-profile-search

    #259804

    In reply to: Clock in sidebar

    wbcomdesigns
    Participant

    Hi @nowymotor,

    Try Local Time Clock plugin

    #259800

    In reply to: Admin approval

    Venutius
    Moderator

    I’m not sure there is a plugin that covers both the WordPress and BuddyPress new member moderation. I remember I asked the BP Registrations Options developer for it to include moderation of the WordPress Access but he said it was outside of the remit of the plugin.

    deshmukh
    Participant

    Running Buddypress 2.6.2 on WordPress 4.6.1.

    So, in example.com/groups/group1, there are posts by several group members.

    I want to highlight posts by specific user(s). This can be using a different background, larger font, different colored text, etc.

    How do I achieve this?

    ico33
    Participant

    @danbp thanks! I’m really new with wordpress world, and I am not a webmaster/programmer, so even if wordpress seems easy, it’s less easy for me.

    If I understood: I have to create that file, put inside the suggestion of the user “brajesh”, then save the file in the plugins’ folder. Is this enough?

    Thanks a lot

    #259777
    wbcomdesigns
    Participant

    Hi @evilscream,

    Try updating your permalink settings here:
    https://codex.wordpress.org/Settings_Permalinks_Screen

    Choose anything but the default.

    #259768

    In reply to: Online Status

    danbp
    Participant

    No worry. About the heme, do you use the free version or the premium version by themeforest ?

    #259754

    In reply to: Like Button Issue.

    danbp
    Participant

    Hi,

    seems you use jetpack to fire a share widget and it looks like there is a JS conflict.
    Activate a twenty theme and se what you get.

    Seems also you use WP super cache.
    Clear the cache and deactivate it and make a first test.
    Once Twenty active, and still no button, you need to track all plugins except BP and jetpack.
    Deactivate all and reactivate one by one, until you find a culprit.

    If nothing found, you can be sure that or the theme or jetpack generates the button issue.
    While writing here i revisited a page (/butterfly) and could see the like button…

    But i think the problem is in your install setup.
    First, you use www. WordPress doesn’t use it by default.
    The site is also really slow. Use GTMetrix to get a detailed analysis of what you could do for better performance.
    You use also a very old plugin, and certainly outdated: pc-custom-css. Why don’t you use a child-theme ?
    Your images are very large, too large imho ! The guitar as example. Original size is 2500x1440px and 577ko ! On the post, it is barely larger than a thumbnail and on the Home a little medium size.
    It isn’t even optimized. I did it quickly and now it makes 303ko. Appreciate the difference and the gain if you would do this for all your pictures.

    Add a little JS bug or lame script over this and you know now from where you can expect issues.

    #259748
    brumest
    Participant

    Hi,

    I am using WordPress 4.6.1 and Buddypress 2.6.2 on my young site:
    http://www.artisticfreedomcrew.com
    While I was testing the site offline the like button was working normally, but as soon as I got the site online, and invited only a handful of friends to test it, it stopped working.
    Now it keeps loading and it never shows up, so it’s unusable.
    What might be causing this issue?

    Regards,
    Bruno Mestre

    danbp
    Participant

    This topic is titled “Function to hide private message depending of user role”.

    and the snippet does that ! Subscribers have no access to the button. So far i remember it is also the default role in WordPress. You change that to your need.

    The first condition in the snippet allows some users (by ID) to access the button, whatever their role.

    If you want to add other WP roles, you simply copy the 2nd conditionnal if(role=='') and add another role if(role=='mamamouchi") { //do something }.

    Or you use only the user ID if you have only a few members allowed to access. I litle understanding of php is of course a + to do that.
    You have the basics in the snippet. Now, it’s to you now to make it work for your need.

    lesanis
    Participant

    Hello,

    How could I make a custom Members Directory in a new template with members that have chosen a specific value of an xprofile field?

    Here is what I have done. I have created a new template members-loop-london.php (copy of members-loop.php) in the members folder and I would like to display there only members that have chosen at the xprofile field City the value London. Then according to this link about “bp_parse_args()” https://buddypress.trac.wordpress.org/browser/tags/2.2.1/src/bp-members/bp-members-template.php#L461 I added in the template the function:

    function mine_bp_has_members( $args = '' ) {
    	        global $members_template;
    	
            // Default user ID
            $user_id = 0;
    	
    	       
    	        $r = bp_parse_args( $args, array(
    	                
    	                'search_terms'    => 'London',     // Pass search_terms to filter users by their profile data
    	
    	        ), 'has_members' );
    
    	        // Pass a filter if ?s= is set.
    	        if ( is_null( $r['search_terms'] ) ) {
    	                if ( !empty( $_REQUEST['s'] ) ) {
    	                        $r['search_terms'] = $_REQUEST['s'];
    	                } else {
    	                        $r['search_terms'] = false;
    	                }
    	        }
    	
    	     
    	        // Query for members and populate $members_template global
    	        $members_template = new BP_Core_Members_Template(
    	               
    	                $r['search_terms'],
    	               
    	        );
    	
    	   
    	        return apply_filters( 'mine_bp_has_members', $members_template->has_members(), $members_template );     
    }

    but nothing changed. Still my custom directory was showing all the members of website..What am I doing wrong?

    #259734
    danbp
    Participant

    You posted another question on Buddypress Profile Search support, where it appears that you try to remove the member search form.

    In regard of the BuddyPress support forum, you use at least two third party plugins aside BP and perhaps proceeded to template customization !

    You have to isolate the culprit: one of your plugins or your theme customization. BuddyPress is not concerned. Sorry.

    #259711
    danbp
    Participant

    @djpaul ‘s advice is wise !
    But you could try following which doesn’t compromise your security and will avoid the sky falling on your head !

    First remove the filter hack, we don’t need it.

    Then built your drop-down list and add only the site name instead the whole URL.

    For example,
    – create a new field
    – call it Test drop down
    – enforce visibility
    – disallow clickable
    – add some options: buddypress.org, wordpress.org
    – save
    Go to your profile > edit and choose buddypress.org. Save.
    You see now buddypress.org on your profile

    Now we have to make this text clickable and linked to bp.org

    For this, you can use this snippet, placed in bp-custom.php

    
    function bpfr_set_checkbox_output( $field_value ) {
    
    // ensure xprofile is activated
    if ( bp_is_active( 'xprofile' ) )
    
    // call the field
    $bp_this_field_name = bp_get_the_profile_field_name();
    
    	// field name (case sensitive)
    	if( $bp_this_field_name == 'Test drop down' ) {	
    	// here we change site name to url
    		$field_value = str_replace('buddypress.org' ,'http://buddypress.org', $field_value);	
                    $field_value = str_replace('wordpress.org' ,'http://wordpress.org', $field_value);			
    	}
    
    	// fire the result!
    	return $field_value;
    }
    add_filter( 'bp_get_the_profile_field_value', 'bpfr_set_checkbox_output' );
    #259697
    danbp
    Participant

    Hi,

    that’s a wordpress question (related to wp_nav_menu_items).

    See WP Codex for answers:

    wp_nav_menu_items

    wp_get_nav_menu_items()

    wp_nav_menu_objects

    Many similar related topics also on BuddyPress forum. Ie. :
    https://buddypress.org/support/topic/how-to-get-notification-count-code/

    #259687

    In reply to: Online Status

    danbp
    Participant

    Hi,

    check the code you used for “16 minutes ago”. You will find it in the buddypress-de_DE.po file. Normally, you should have %s ago -> vor %s. If you omit % or s, the string won’t be translated.

    If it’s not a typo error of yours:
    – where is this untranslated “ago” string showing ? Site activity, profile, widget, other ?

    – do you use a specific “buddypress” theme ?

    – does the issue remain when using the “official” translation file ? If not, download it here (po & mo). Don’t forget to remove your version before adding the original one into wp-content/languages/plugins/

    #259685

    In reply to: Online Status

    Venutius
    Moderator

    How about setting the theme to 2015? IF that fails then there must be something up with your basic WordPress install.

    #259669
    danbp
    Participant

    @r083r7,
    glad you got it to work ! 😉
    Not sure if it is a theory or simply how it works, but deactivating/reactivating (plugins, themes) will in most case recalculate the permalinks.

    #259656
    giuseppecuttone
    Participant

    I will be your savior,
    for same rasons, wordpress decided not show admin bar like default in mobile.
    It is so,maybe, because when user log in in mobile device, a lot of menu will be showed… really I dont know why…
    But if you dont have this problem, and want show admin bar for log in an log out users, you must add in CSS the following codec:

    @media screen and (max-width:782px) {
        #wpadminbar {
            display:block;
        }
        html {
            position:absolute;
            top:-46px;
        }
    }

    The codec where say html position absolute is for delete noise black bar located in the up side zone.
    If you want, you can also show the notification icon (I think it is named budlle notification) into the admin mar, adding the following codec in CSS zone:

    /* Show only default top level items */
    	#wp-toolbar > ul > li {
        		display: block;
    	}

    I have gone mad to find the solution, but now we have it.
    If you dont want show menu in admin bar to the suscriptors, colaborator and authors, you can use the AG CUSTOM ADMIN plugin. It hide them and help you in a clean design. (you can also hide wordpress logo, and so much things…)

    Now, I have only a litlle / big problem:
    the drop down menu, when I click in the “notification icon” in the admin bar, is not showed correctly… It is showed from the “notification icon” to the right zone, so in mobiles user can red the title of the notification.
    The solution is show the dropdown menu from the “notification icon” to the left zone. So, also in mobiles users can red the title of the notification.
    Can you help me for to make that?
    I have helped you, now I hope someone can help me 😉
    Thank for your support and have funny

    403laura
    Participant

    I have wordpress version 4.6.1. I have buddypress version 2.2.2 (child theme in use). I also have bbpress 2.5.10. My website is http://getjobhelp.ca

    I am having issues with the activity stream…I am unable to see any activity posted by other people in my forum, regardless of what dropdown menu I use. I am able to only see my own activity. I hope the following example is specific enough, asI don’t really know how else to describe this.

    ***Example 1: when I am logged in as the “adminsitrator/keyholder”, I am able to see what I have posted in the activity stream but I cannot see anyone elses posts, no matter what dropdown menu I use i.e.; everything, updates, friendship, group updates, group memberships, posts, comments topics, replies, new docs, doc edits, doc comments.***

    ***Example 2: when I am logged in as a “User” I can see my own activity but I cannot see what anyone else has posted, regardless of which dropdown menu I use. (Same as above example but as a user) So in other words, the posts I made as the “administrator/keyholder” do not show up on my activity stream as a “user.”***

    After reading through this help section to get help with seeing the activity feed, someone suggested to deactivate the “buddyboss wall” plugin…I did that and was finally able to see my own activity stream but still having the above issues.

    I then installed the buddypress activity plus” plugin so users could interact through comments, videos and links…which appears and seems to work just fine. But When you cant see what anyone other than yourself posts in the forum, what use does it really serve? I would like for the members to be able to interact with each other but they wont know if someone else posted in the forum if the activity stream doesn’t work. (When I say forum, I do mean the whole site…not an individual forum)

    Lastly, I really do not know anything about code or where to put it or how to find where to insert it into the css or php or whatever, as I am not a developer, I am just a networking forum owner looking for some help please. 🙂 Thank you.

    #259619
    randricks
    Participant

    Hello,

    This is my first time using BuddyPress and I’m pretty new to WordPress and don’t know how to assign my “Register” and “Activate” page to a blank page correctly. I’ve looked at my “Members” and “Groups” pages and they both seem to be blank when editing but when I go to the page url they have dynamically loaded content. I’m not sure where this content is being generated from and how to get “Register” and “Activate” to do the same. Any help would be much appreciated!

    Thanks!

    #259612
    Slava Abakumov
    Moderator

    Try WordPress SEO plugin AND this hack:
    https://github.com/Yoast/wordpress-seo/issues/1971#issuecomment-227008322

    That will fix titles. There is no solution for meta descriptions, unfortunately.

Viewing 25 results - 5,601 through 5,625 (of 32,678 total)
Skip to toolbar