Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,901 through 1,925 (of 22,644 total)
  • Author
    Search Results
  • #307265
    Xohnor
    Participant

    Hi everyone, I developed this problem some weeks ago and I don’t know to solve it.
    Whenever i access my website I see nothing but a white blank page, I asked some people who told me the issue is called White Screen of Death, but one of them told me he could only help with me paying him a few bucks and I believe its justs a minor issue i can fix myself with a little guide since I am a little broke.
    So any help would be appreciated.
    Thanks!

    #307254
    Russ Powers
    Participant

    Not sure if this is still relevant, but you can easily remove the email address field without having to remove the entire page. This can be accomplished by editing the BuddyPress template files you copied into your WordPress theme (wp-content/themes/mytheme/buddypress).

    The file you will want to edit is named general.php and is located in “wp-content/themes/mytheme/buddypress/members/single/settings”. Once you locate general.php, simply delete the following code located around line 27 and 28.

    <label for="email"><?php _e( 'Account Email', 'buddypress' ); ?></label>
    	<input type="email" name="email" id="email" value="<?php  echo bp_get_displayed_user_email(); ?>" class="settings-input" <?php bp_form_field_attributes( 'email' ); ?>/>

    Presto! No more email field 🙂

    #307253
    james4177
    Participant

    I am new to WordPress and Buddypress. I have a couple of items I am struggling with and would love a little direction.

    1. In Buddypress, when you visit a group that is private, you receive a default message that says “This is a private group. To join you must be a registered site member and request group membership.” I would like to add a button directly below this message that says “Register”. This would need to be connected with the default message in some way so that the register button appears every time (and for every different group) the default message is displayed. I tried before but it seemed to connect the button only to one particular group. How can I go about adding this to the default message and what file and where in that file would I edit such a thing?

    2. Once they press the button to register, how do you get them to redirect back to the group they were originally linked to?

    3. In Buddypress, is there any way to turn off the public, private, or hidden options when creating a group and just make all groups private automatically?

    I would really appreciate any assistance. Thank you.

    #307251
    tirinorius
    Participant

    I am new at asking for assistance in these forums. So, bear with me please. I am working on a WordPress site that involves BuddyPress groups as well as the membership system that PMPro provides. I am using these on the Kleo theme. I am looking to have a site that has many users who will make groups for their needed purpose. What I need to figure out is, once that group is made the user will send a link to the group they created to the guests they want to join said group. The guest that received that link will click on it and be sent to the group, however, they will still need to sign up to the site to access the group.

    What I would like to know how to do:
    1. The guest will be able to see the group (from clicking on the sent link) but I would like there to be a button on that page prompting user to sign up to the site to join the group.
    2. Immediately after registration, which will be a form on its own page, the guest will be redirected back or to the same group page as the link clicked.

    I am fairly novice at this kind of thing and not really even sure where to even start, so I hope that I explained it well enough and I appreciate any assistance greatly. Thank you!

    #307242
    Ricardo J F
    Participant

    We are trying to redirect the users after registration on our site to a specific page (https://ficando.com.br/obrigado), without success. They are always sent to the site main page.

    We could get the user to be redirected on his first login to the page above, from a code from PMPro site, working fine.

    We are able to redirect the user after login to the desired page, no problems either.

    We tried this on functions.php, nothing changes:

    function wpse_19692_registration_redirect() {
    return home_url( ‘/obrigado’ );
    }

    add_filter( ‘registration_redirect’, ‘wpse_19692_registration_redirect’ );

    We tried a modification on bp-custom.php file, also without success:

    <?php
    /**
    * @package WordPress
    * @subpackage Seeko
    * @author SeventhQueen <themesupport@seventhqueen.com>
    * @since Seeko 1.0
    */

    add_action( ‘bp_complete_signup’, ‘buddydev_redirect_after_signup’ );

    function buddydev_redirect_after_signup() {

    $page = ‘obrigado’;

    bp_core_redirect( site_url( $page ) );
    }

    ?>

    No matter what we do, nothing changes. Any ideas on how to achieve that?

    Any help is much appreciated.

    WP: 5.2.2
    BP: 4.3.0
    Theme: Seeko v. 1.1.5

    iicchisan
    Participant

    I’ve been spending my time searching for a way to add Custom User Role in a Group whenever the Administrator (or anyone with access) add new member into that specific Group in WordPress but there’s no luck.

    what I’m trying to do is for example in WordPress, I have a user name “Kevin” with default user role “Contributor”. I want to add Kevin into a group named “Dev Team” with custom role as “Web Designer” specific only for that group. currently if I add users into a group, it will display default role as “Members” only. and I like to display custom user role for each member in a group.

    so the default will be like:
    Group: “Dev Team” Members:
    Michael (Administrator)
    Kevin (Moderator)
    Keith (Member)
    Lisa (Member)

    while what I want to achieve is:

    Group: “Dev Team”. Members:
    Michael (Administrator)
    Kevin (Web Designer)
    Keith (Programmer)
    Lisa (System Analyst)

    Group: “Marketing Team”. Members:
    Michael (Administrator)
    Kevin (Marketing Operator)
    Keith (Database Administrator)
    Lisa (Customer Service)

    is there any way to achieve this?

    #307222
    rsmithgs
    Participant

    WordPress Version: 5.2.2
    BuddyPress Version: 4.4.0
    bbPress Version: 2.5.14

    Hello, I’m looking for a hook to grab data of new topics and replies as they are added.

    I was thinking this would do the trick, but it does not trigger my curl request.

    add_action('groups_forum_new_topic_after', 'group_was_posted_on', 10, 2);
    add_action('groups_forum_new_reply_after', 'group_was_posted_on', 10, 2);

    Then I tried this:

    //new topic was created
    add_action('bp_forums_new_topic', 'group_was_posted_on', 10, 2);
    //new post was created to a topic
    add_action('bp_forums_new_post', 'group_was_posted_on', 10, 2);

    Still no luck. What actions/hooks do I need to use for:
    User creates a new topic
    User creates a new reply to a topic

    Thanks for your help

    justvdv
    Participant

    Hi,

    My goal is to grab the buddypress private messaging part and include this in another page such that this can be used as a single messaging feature without the complete buddypress profile.

    I am somewhat familiar with customizations of templates and usage of hooks in wordpress.
    My wordpress version is 5.2.2 and my buddypress version is 4.4.0.

    So when digging into buddypress I found the bp_templates folder and figured out that to for example load the message composition part we should use bp_get_template_part( 'members/single/messages/compose' );. This included the part but without any styling while the stylesheet of buddypress does seem to be included when looking into the developer tools of Chrome.

    Therefore my question is: How to include the complete private messaging part on another page with the styling included?

    Kind regards,
    Justvdv

    #307153
    TonyPrower
    Participant

    Here is my profile
    https://nature-photo-travel.co.uk/members/radar/

    I am admin and I chose “radar’ to add an extra level of security. hat security is compromised because my ‘hard-to-guess’ admin name is displayed on my public profile and even in the url.

    What a gift for the hackers!!

    I have ‘Tony Prower’ set as my display name in my wordpress profile. How do I get that to reflect in my buddypress profile?

    #307118
    iamthewebb
    Participant

    It may be worth having a look on their support forums but the first thing I found when I did a quick search was https://wordpress.org/support/topic/problem-with-multiple-users-member-site/ which seems to describe what you experienced.

    Hope the launch goes well!

    nicolafern
    Participant

    Hi

    My site has recently been switched from a managed wordpress platform to a business shared platform by my host because of an uptime issue.

    Now, when logging in there are some issues with other user’s details being confused with those of the logged in user, for example the other user’s details appearing in the top right hand buddypress menu (including linking to the profile of that user), places where I have shortcodes to access usernames etc show the wrong ones. This is obviously a GDPR issue.

    I haven’t made any change to the platform apart from moving the hosting. My host says there’s no sign of database corruption, and I have done things like purging caches and also updated to the new release of BP.

    The host said: The only thing I’m wondering is whether BuddyPress requires a PHP module that’s not enabled on the Business plan to run your site correctly (I’ve very little direct experience with BP unfortunately!). And suggested I post a query here.

    Unfortunately this is very much the wrong time for an issue like this to rear up as I’m in the middle of launching my community and have a number of people who have registered and are awaiting activation, and a big event planned for tomorrow which will involve the community site.

    Has anyone got any idea what the problem could be – or about what php module could be required as per my host’s question?

    Many thanks!
    Nicola

    #307111
    studiocrafted
    Participant

    You will need to modify your server configuration. Specifically PHP and a general rule.

    This can be done with both php.ini and .htaccess.

    An example php.ini file would be

    upload_max_filesize = 4M
    post_max_size = 4M
    memory_limit = 4M

    and for .htaccess

    php_value upload_max_filesize 4M
    php_value post_max_size 4M
    php_value memory_limit 4M

    Both files should be placed typically be in public_html of your web server.

    Be sure to name the files as I have told you above, otherwise they will be ignored.

    Lastly if you have a multi site install of WordPress you might be able to go into network and set the value there. This will only work if the 4mb is less than what your default or current server config is.

    If all of that isn’t working you should next speak with your web host about how to do this.

    coolhunt
    Participant

    Hey Guys..

    Is there a way to FORCE bp_activity_do_mentions() in a theme?

    My Problem:
    @mentions seems to be not working in a wordpress post.

    Is it possible to add a function or a filter inside functions.php

    ashleighenvision
    Participant

    I just started using BuddyPress and I am running into two issues. I am currently on WordPress version 5.2.2 using Total WordPress theme by WPExplorer.

    The name field is not displaying on profile pages seen here on this Profile Page.

    Also, when logged out I am not seeing the Register link in the main navigation menu below the Log In link as I have it set up in my main navigation menu using the BuddyPress “logged-out” menu links.

    I’m not sure if these issues are caused by the theme I am using?

    Any input would be appreciated.

    #306994
    kkradel
    Participant

    My Members Page is not loading correctly in Chrome:

    WordPress 5.2.2 running Imagely Ansel theme. Using Genesis 2.10.1.
    Running PHP version: 7.0.33

    Members

    I’m on a Windows 10 laptop running Chrome.

    The page loads correctly in Firefox, Microsoft Edge and on my iPhone in Safari.

    #306981
    coolhunt
    Participant

    Hey Guys,

    I have a plain vanilla installation of the most recent WP/BP and for some reason.. @mentions in a wordpress post is not working on this installation.. Im not sure what I did wrong. My other installations work fine.

    Thanks for any help

    #306968
    ninjaslice
    Participant

    Please can you resolve this conflict issue between BuddyPress and (WpDiscuz). We are not able to delete comments. Please see below copy of the
    message from WpDiscuz plugin authors/developers:

    The issue comes from the BuddyPress plugin and cannot be fixed by wpDiscuz
    side. For some reason, the wp_delete_comment WordPress function is being
    called twice (BuddyPress plugin uses hooks that calls the function) and it
    messes up wpDiscuz codes. You should contact BuddyPress support and ask
    them to check the issue.

    #306967
    tompec
    Participant

    Hi Werny, I made a plugin just for that and you can find it here: https://wordpress.org/plugins/validator-pizza/

    It uses an API that is always up to date with new disposable domains. So you don’t have to manually update the list yourself.
    Let me know if that solves your problem 🙂

    #306962
    iamthewebb
    Participant

    Ban Hammer is a wordpress plugin. Apologies I should have made that clearer in my original reply.

    Hopefully that combination will work for you.

    #306908
    beat sk
    Participant

    Hello again friends. 🙂

    Now I have a question about buddypress profile menu. How can i make a link in the menu only for userroles? Something like “Go to administration” in the profile menu – Profile, Activity, Groups, Messages ? Is there a chance to add this only for user roles and admins? The website is built to hide we are using wordpress in front of people. Register and Login working on front-end and we want hide /wp-admin from others. Thank you for positive/negative feedback.

    cachinate
    Participant

    WordPress 5.2.2
    theme: Masonry Hub
    BuddyPress and MediaPress are the plugins being used;

    Problem: I am trying to move the “Submit Post” & “Cancel” buttons on the activity page OUT of the textbox because I need them to be shown at all times WITHOUT activating the textbox, this is so people can just click the picture icon to attach a picture with no words and click submit.

    https://imgur.com/a/KSFyu4l Check these pictures to get a further understanding!

    Possible solution:
    1:
    I’ve looked into mpp.js to trigger the textbox activation when the picture icon is clicked (I know where to put the code to trigger the activation, but I dont know what code snippets I need from: buddypress-activity-post-form.min.js to do it)

    2:
    Override the CSS and force it out be outside of the textbox activation which is what I’d like.

    I’ve spent hours digging at this and haven’t gotten much besides whats above, any help is greatly appreciated!!

    mochapng
    Participant

    For some reason, people are able to log into the website without activating their account first. When doing so, their account gets bugged out:

    – They see the blue admin bar on top when they shouldn’t (I disabled it so only admins see the bar).
    – Shown as offline
    – Friendship requests do not work and get bugged out.

    Could you offer me some assistance as to why this may be happening? Sometimes they are able to log in without activating. Other times, they get “ERROR: Your account has not been activated. Check your email for the activation link.”

    The theme I use is not custom (https://wordpress.org/themes/editor/). However, I did switch it back to the default theme to check (Twenty Nineteen) and unfortunately, the problem still persists. I’ve tried disabling plugins as well and I could not seem to isolate the problem.

    In https://example.com/wp-admin/users.php?page=bp-signups, the page generates the IDs of all the accounts that are not activated yet. Is there a way for me to fetch the user IDs for those who are not activated yet and redirect them to a custom page when they log-in? Sometimes unactivated accounts are able to log-in. As a temporary solution while I figure out the root of the problem, my plan was to:

    Fetch all the user IDs of those who are not activated yet
    Upon login, redirect them to a custom page that explains that their access is limited and to activate their account to gain access to everything.
    My idea was:

    function unactivated_user_redirect( $user_login, $user ) {
        // Grab unactivated user IDs and store in array
        // Check to see if $user ID matches ID in array.
           // If matches redirect to wp_redirect(www.example.com/custom-page);
              //exit();
    }
    add_action('wp_login', 'unactivated_user_redirect', 10, 2);
    fabiojr2016
    Participant

    Perfecto, muchas gracias por el código… si, con ese código si pude deshabilitar el registro de BuddyPress y dejé el registro original de WordPress. Yo cree el archivo bp-custom.php dentro de la carpeta wp-content/plugins/

    Es decir, tengo Buddypress funcionando, pero con registro de WordPress.

    <?php
    /*disable registration bp */ function my_disable_bp_registration() { remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ ); remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ ); } add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ ); add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . ‘/wp-login.php?action=register’; }
    ?>

    #306830
    ds123
    Participant

    is there a tool for this @shanebp ? any way to use your plugin for this also ? https://wordpress.org/plugins/bp-bulk-delete/

    #306823
    Puppy Play France
    Participant

    Hello, I use Buddypress version 4.3.0. The notification module does not work. Some notification links point to bad pages. Is the problem known, if so how to fix it. My site is installed on a WordPress server.

Viewing 25 results - 1,901 through 1,925 (of 22,644 total)
Skip to toolbar