Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,451 through 5,475 (of 32,678 total)
  • Author
    Search Results
  • #260926
    notoriouspyro
    Participant

    Hi,

    Does anyone know why the register button on my site is almost invisible? The text is unreadable.

    img

    This is WordPress 4.6.1, BuddyPress 2.7.2, bbPress 2.5.11 and theme SongWriter 2.0.5.

    #260921
    modemlooper
    Moderator
    #260920
    modemlooper
    Moderator
    #260915
    jbrownwebdev
    Participant

    I’m currently working on a project for a client who wants to have the latest reply from any topic in a forum show up on the main bbpress page under the forum name. Is there a way to get this reply from the database using either built in functions or a wp_query. I also need to show the persons avatar, name, and when it was posted. Any help would be greatly appreciated. Dev site is at http://realestateinvesting.how/topics/. I can’t tell you exactly what version of bbpress they are using as the client hired a developer before me who hid the plugins unless your at a user level higher than admin. WordPress version is 4.5

    valleev
    Participant

    Hi everyone,
    I am currently setting up an association website using Paid Memberships Pro. I have decided to add Buddypress support.

    Everything seems to work well except users cannot upload profile or cover image photos. After clicking ‘select your file’ and selecting an image, the browser pauses for a moment and then nothing happens.
    However it’s possible for the admin user to upload photos via the WordPress “user” management.

    We are using accesspress theme.

    Please help

    #260892
    Masoud
    Participant

    hi.
    i am using latest versions of both wordpress and buddypress.and working on a food website.
    in this website , i wanted to allow only authors to post activity updates .
    (because it will be much easier for users to track their favorite chef recipes in the activity page.)
    so i’ve hide the ” personal ” submenu of activity tab : Activity > Personal (where people can post updates)
    with the help of following code in bp-custom.php :

    function bpfr_hide_tabs() {
    global $bp;
    if ( bp_is_user() && ( !current_user_can(author) || !current_user_can(administrator) ) ) {		
     bp_core_remove_subnav_item($bp->activity->slug, 'just-me');	}
    }
    add_action( 'bp_setup_nav', 'bpfr_hide_tabs', 15 );

    but now when i go to my profile (as a subscriber)
    i will see a 404 page.
    i’ve searched a lot and i noticed that , now that i’ve removed the default activity stream tab , i have to point it to another tab. so when a user profile is loading (or if a user clicks on activity tab),
    instead of default activity> personal . it load activity > mentions / OR / favorites / OR / … (some other submenu than personal )

    so my question is:

    how can i change the default activity stream tab
    from
    Activity > Personal
    To
    Activity > Mentions – Or to – Activity > Favorites – …

    thanks a lot for any help.

    #260890
    zxbchris
    Participant

    Hi,

    I have encounter an issue that I wish that I can get some help here:

    Currently I have created some custom profile field, that allows my user to input his bio and social media field. It displays at the buddypress profile page nicely. However, i will like the bio field that my user has input to be shown on the product page. You can take a look at my page, at the bottom, the “About post author” section
    http://www.chalktalk.com.sg/courses/chalktalk-demo-course/

    currently, this section is using the wordpress default description field to display it here. I will like to get the custom bio field that I created in buddypress to be display here instead. May i know how can i go by doing this? where can i retrieve the ID of my custom field to place here instead?

    Hope to hear from you soon.

    Regards

    Chris

    #260888
    Venutius
    Moderator

    You could try something like this, only it’s not been updated in a while, not tried it myself https://wordpress.org/plugins/buddypress-login-redirect/

    #260887
    Earl_D
    Participant

    It doesn’t set up predefined filters which seems like what OP wanted but this works really well for me and includes widget

    https://wordpress.org/plugins/bp-profile-search/

    #260864
    postable
    Participant

    Good day everyone, I’m new to BP and the forum as well!

    I’m using WordPress with GravityForms to signup users for monthly subscriptions.

    Basically I’m wondering if it is possible to do the following :
    – When a new user sign up via GF > create a private group(business) exclusively assigned to this new user (which will be a group admin)?
    – This admin would be able to invite users(employees) to be added to that exclusive group?
    – Would it be possible to list GF submissions for other forms (uploads for instance) by users (employees & business owners) and/or by Group(business)?
    – Any way to link a Dropbox folder created via Zapier for those specific users and/or group?
    – In the end, we want to use BP capabilities to create a sort of internal communication tool in regards of those uploads made our way?

    Thank you so much in advance !
    Tahar

    #260853
    cummingsbl
    Participant

    My site features Sensei courses that have Buddypress groups/forums associated with them. Once someone signs up for a course, they are automatically in the group/forum. Is there some way to automatically subscribe those learners to the course group’s forum so they don’t have to take any action to be notified when new topics are created? I tried this plugin (https://wordpress.org/plugins/buddypress-group-email-subscription/) but it seems to tack on separate email options functionality instead of using the built-in “subscribe/unsubscribe” functionality.

    #260847
    metalhead
    Participant

    Hello Buddypress buds!

    A lot of people have been talking over the past couple of years about “how to require a profile photo upon registration. And I know it’s a risky thing to do, but many of us are willing to take that risk.

    There are a handful of plugins that try to assist with this procedure, but some fail, and some are only partially successful. The best solution that I’ve found is Xprofile Custom Fields. With this plugin, and a lot of help from the author, I’ve managed to get profile photos to be required in the registration process. However, the issue I’m having is that the users are unable to effectively change their profile photo by using the options in the Buddypress “Profile” section/menu. The user can still click “Change Profile Photo,” and it will accept their upload, but the old photo remains in the member directory & in the user’s profile itself.

    I think there must be a miscommunication occurring due to this new way of gathering the user’s original profile photo. It seems like some code, pertaining to the Buddypress “Change Profile Photo” function needs to be tweaked, but I can not pinpoint the function, which would be the first step towards fixing this issue.

    To demonstrate how I’m requiring the profile photo upload in the registration, here is the function I’ve added to my theme’s functions.php file:

    add_filter( 'bp_core_fetch_avatar', 'my_custom_avatar', 10, 2 );
    function my_custom_avatar( $avatar, $params ) {
        if ( 'user' === $params['object'] ) {
            // Get the src of the original avatar.
            $array = array();
            preg_match( '/src="([^\"]*)"/i', $avatar, $array );
            if ( count( $array ) > 1 ) {
                $old_url_avatar = $array[1];
                // Get the new url of image.
                $uploads = wp_upload_dir();
                $img = maybe_unserialize( BP_XProfile_ProfileData::get_value_byid( 5218, $params['item_id'] ) );
                if ( ! empty( $img ) ) {
                    $new_url_avatar = $uploads['baseurl'] . $img;
    
                    // Replace the old src with the new url.
                    $avatar = str_replace( $old_url_avatar, $new_url_avatar, $avatar );
                }
            }
        }
    
        // Return the avatar.
        return $avatar;
    }

    I’d like to mention that I have asked the plugin author about this, but my message on that plugin’s support forum has been deleted twice, making me think I should give the man a break.

    Here are some specifications of my site:

    The site can be reached here.

    It’s running on WordPress v4.6.1, Buddypress v2.7.0, & using BuddyPress Xprofile Custom Fields Type v2.6

    “5218” is the field ID for the “Upload Image” field.

    Thanks and sorry if I posted in an inappropriate forum, I think I chose the right one.

    #260845

    In reply to: BP and AMP

    Ben Hansen
    Participant

    Responsiveness and AMP are actually sort of unrelated concepts any page/site that can have an AMP’ed version probably should have one (for optimal ranking) and it’s sort of the opposite idea of making a one page fits all situations notion that has made responsiveness a first order requirement in building sites these days (it’s like deja vu all over again).

    i believe that WP itself is not fully compatible with AMP yet:

    https://wordpress.org/plugins/amp/

    (see notes)

    so BP compatibility is probably a ways off at this point. Others may know more than me on this subject though. 🙂

    ico33
    Participant

    Hello, I was looking how to change the email address from which are sent the emails from buddypress to the users. When a user receives an email from buddypress it looks like this

    wordpress@mydomain.com

    How to change the word “wordpress” in “info”?

    I found online a topic that has over 2 years. There is the suggestion to add in theme’s function.php this code

    function custom_wp_mail_from( $email ) {
            $handle = 'info';
    	$find = 'http://'; 
    	$replace = '';
    	$link = get_bloginfo( 'url' );
    	$domain = str_replace( $find, $replace, $link );
    	return $handle . '@' . $domain ;
    }
    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );

    Can you confirm this is the best solution to do it?

    Thanks you!

    #260824

    Hey @danbp

    I just thought I’d jump in here real quick, as I think this will be beneficial to everyone in the thread including @Tranny.

    And even if you would be a genius coder creator of an extra super original spam shield, you could be sure to became target #1 of all spammers, because in this case, you would represent the absolute challenger of all code breakers !

    We are that “genius coder creator of an extra super original spam shield” that you speak of. 🙂

    There is no miraculous plugin or trick to stop them.

    Ahh, but there is.

    It’s real, and it’s even called WP-SpamShield. LOL…you can’t make this stuff up. 🙂

    Check it out on WPorg. It’s been out for about two and a half years, and is forked from another plugin we developed almost a decade ago. It works perfectly and automatically on BuddyPress, bbPress, and pretty much everything else. You can also feel free to check out the plugin documentation here.

    …And for the record, we definitely are a huge target of spammers. 🙂

    dealing with spammers is a long run work, to not say a never ending work.

    True story!

    – Scott

    #260818
    hotloverspassion
    Participant

    Hi,

    I have one problem in my member’s directory. All members who have not filled the age in their profile, in members directory is their age automatically set for 46 instead of a blank space. I have deactivated all my plugins except buddypress and also tried to deactivate child theme to see if any of my changes could have caused it, but nothing. The problem is still there. Any idea why?

    I have also contacted the SweeDate theme guys, but they just don’t know what this could be.

    I have also seen similar issue discussed in this forum dated 2 years ago, but it seemed that the issue hasn’t been sorted… https://buddypress.org/support/topic/all-members-showing-age-of-44-years-old/

    I am using WordPress 4.6.1 running Sweetdate Child theme and BuddyPress 2.7.2

    Thanks

    #260811
    jono543
    Participant

    Hi,

    Thank for your help, I tried another theme and it seemed to work. So looks like its a theme issue. The theme, plugins and wordpress core is all updated to latest version.

    I’ll contact mycred/theme developers to see how to fix this.

    Thanks much appreciated 🙂

    #260809
    Henry Wright
    Moderator

    Great plugin; but the online status only display on the blog site

    Thanks! As I mentioned it’s a WordPress plugin so you will need to adapt it for use with BuddyPress. It shouldn’t be too difficult to do because BuddyPress members and WordPress users are the same.

    #260808
    danbp
    Participant

    HI,

    BP use the same pagination system as WordPress. Here a tutorial to get this to work for WP

    And here a list of “pagination” related functions:
    http://hookr.io/plugins/buddypress/#index=a&search=pagination

    #260802
    r-a-y
    Keymaster

    @adjunkten – The defer%20onload is a sign that you might be using a plugin to do something to all WordPress javascript enqueued files.

    Because if you remove the defer line, the JS file is valid:
    http://historielaerer.dk/wp-content/plugins/buddypress/bp-core/js/vendor/moment-js/locale/da.min.js

    Are you using such a plugin? If so, disable it and see if that fixes your problem.

    #260798
    sweetydays
    Participant

    Hi,

    I installed the bbPress plugin at network level for my multisite configuration. I don’t see the plugin settings at Network’s level but at each site’s level.
    When going to any site level I can access it from Settings > Forums. There I define the default role which is attributed to new users which is “Participant”. I realize that all my new users are assigned to this role!

    What is really a big deal for me as:
    1) At site level, at Settings > Forums, I can’t see all the roles of my users (e.g. customer, subscriber, …)
    2) When using a multisite user synchronisation plugin such as “https://wordpress.org/plugins/multisite-user-role-sync/faq/”, which is working at network level, I don’t see the default role (“Participant”). I thus have on site level, the default role set to Participant, but on network level it’s empty (the “Participant” doesn’t show up)
    3) I also use the User Role Editor plugin and “Participant” doesn’t show up as a managed role.

    Q1: How not to define all my new subscribers as “Participant”?
    Q2: How to deal with it if I want to keep the “Participant” role?

    Cheers

    #260797
    Henry Wright
    Moderator

    Hi @swiftblack

    Take a look at my plugin Here: https://github.com/henrywright/here

    I use the WordPress Transients API to output a user’s online status. You could easily adapt it for use with BuddyPress.

    #260792
    jaynation
    Participant

    Good Evening All,

    I really have have scoured the internet and forums for a solution but I am still amiss with this one. I have spend 4 full days on this and no resolve. Earlier last week I had been testing my sign up’s before I start to invite new users to my website. The issue is we are not receiving activation emails.

    I am using S2 member in conjuntion with buddypress and WP-SMTP and all settings have been checked at least 5 times over.

    Does anyone please have any suggestions?

    Notes:

    1. Test users are being registered successfully in wordpress after a live PayPal link and are landing on a page stating to check email for activation.
    2. WordPress is logging the pending member and we have manually requested activation emails again.
    3. We have tried several differing email accounts to receive the email.
    4. WP-SMTP is succesfully sending test emails to the said email account.
    5. We have deactivated S2, WP-SMTP and other plugins in different manners/orders but still no use.

    Website:studentmotorsport.com
    WP: 4.6.1
    BP: 2.7.2
    S2 Member: Version 160801
    WP-SMTP: 0.9.5

    ANY help would be most appreciated.

    With regards

    JP

    sweetydays
    Participant

    Bonjour,

    J’ai créé un wordpress multisite comme suit:
    nomdedomaine.com site principal
    b2b.nomdedomaine.com site pour les particuliers
    b2c.nomdedomaine.com site pour les professionnels
    support.nomdedomaine.com site de support pour tous les autres sites

    1) J’aimerais qu’à l’inscription depuis mon site principal, l’utilisateur soit redirigé tantôt vers le site b2b s’il est professionnel, tantôt vers le site b2c s’il est particulier.

    2) Il s’agira d’un site e-commerce. Comment permettre à mes vendeurs de vendre pour le grand public (b2c) et/ou pour les professionnels (b2b), par exemple à partir d’un formulaire d’inscription depuis le site principal…

    #260786
    rich06
    Participant

    Wordpress v4.6.1
    Buddypress v2.7.0

    Is it possible (directly or via a plug-in) to allow a user to copy (cc or bcc) another new user when replying to a private message i.e. add in selected user(s) to a PM conversation?

    TIA!
    Rich

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