Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,876 through 6,900 (of 32,678 total)
  • Author
    Search Results
  • pattz2016
    Participant

    i want to be the only one able to view the link as the admin. When users are viewing their notifications in the right side, there are links to WordPress.org on the left side. I don’t think this part is relevant to my users based on the forums they are discussing.

    Any advise Please?

    #251289
    @mcuk
    Participant

    Haven’t encountered that problem myself so wouldn’t really know where to start. The code above does work fine with notifying the person you are trying to be friends with (I’ve just double checked on my project).

    Might even be a conflict with something in your theme or another plugin you are using. You could also try disabling other plugins to check if that is an issue and switching themes to one of the WordPress default themes to see if it works as it should.

    Only other suggestion I can give is to start a new forum thread and maybe someone else has encountered that issue.

    #251286
    Oscar Estepa
    Participant

    No particular reason, Buddypress 2.4.3 is using ‘bp_actions’ hook to add its actions instead of ‘wp’ and according to WordPress you need to use the exact same hook with the exact same priority in order to remove a previously inserted action, i.e., now BuddyPress is adding its functions as:

    add_action('bp_actions', 'bp_activity_action_sitewide_feed');

    See wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php (L530).

    Therefore, they need to be removed using the exact same syntax:

    remove_action('bp_actions', 'bp_activity_action_sitewide_feed');

    #251269
    kamarr
    Participant

    Special thanks to @valuser and @shanebp for helping create a custom member directory by adding the Buddypress members-loop.php to my themes page.php, and renaming it page-local-members-php.

    *For the step by step, here is the link to the discussion – https://buddypress.org/support/topic/how-to-display-additional-member-directory/#post-251127

    There are now two Directories listed on the website. The current issue resides with the styling. The original member directory appears to obtain its structure from the Buddypress index.php file located in the public_html/cosnetwork.us/wp-content/plugins/buddypress/bp-themes/bp-default/members-folder, while the Secondary ‘Custom’ member directory is missing the original functions like the search, role search, order by, and some basic css such as removing the bulletins on the member list.

    What would be the best solution to fix this.

    Would adding the code from index.php file from the public_html/cosnetwork.us/wp-content/plugins/buddypress/bp-themes/bp-default/members-folder solve it?

    *I wonder, would it be possible to make an additional page template that would shows on the wordpress frontend part of the plugin on the Dashboard/settins/buddypress/pages section as an additional directory.
    That way you could route it from to a page from the front end the same way you route member, activity stream, register, and activate page keeping all files it in the buddypress folder.

    #251260
    Oscar Estepa
    Participant

    Hi,

    I have a site using buddypress 2.4.3 where all buddypress functionality must be private (requires login) while the blog part is public.

    The problem is that the Activity feed was being crawled by feedly and other services, thus breaking our users privacy.

    Searching on google I found out this topic:

    https://buddypress.org/support/topic/disable-all-rss-feeds/

    And when trying to apply the fix I realised the code was outdated, therefore I leave here the updated code:

    
    function cherrypick_custom_bp_remove_feeds(){
    	remove_action('bp_actions', 'bp_activity_action_sitewide_feed');
    	remove_action('bp_actions', 'bp_activity_action_personal_feed');
    	remove_action('bp_actions', 'bp_activity_action_friends_feed');
    	remove_action('bp_actions', 'bp_activity_action_my_groups_feed');
    	remove_action('bp_actions', 'bp_activity_action_mentions_feed');
    	remove_action('bp_actions', 'bp_activity_action_favorites_feed');
    	remove_action('bp_actions', 'groups_action_group_feed');
    }
    add_action('init', 'cherrypick_custom_bp_remove_feeds');
    

    And on pastebin:

    http://pastebin.com/zaiGH4Dr

    I can confirm it is working fine on:

    • WordPress 4.4.2
    • BuddyPress 2.4.3

    Hope this is helpful!

    IdleWanderer
    Participant

    I just realized that “bp_is_page()” might not work as the page I am referring to is a normal wordpress page. Is this so? If so, would “is_page()” be correct?

    #251245
    Henry Wright
    Moderator

    If you use the Theme My Login plugin, you can customise the login template quite easily.

    Wasabi Ice Cream
    Participant

    I’m not sure when this started, or why, but going into my BuddyPress Settings now, I am completely unable to make any changes to the Components and Pages tabs because there is no “Save Settings” button to save my changes.
    Strange enough, the Options tab still has this button…

    I’ve already looked around, and tried changing my theme, and that hasn’t worked, neither has disabling other plugins.
    I also tried completely uninstalling and re-installing BuddyPress from WordPress, and deleting leftover databases, which also hasn’t worked.

    I’m running the latest BuddyPress Version 2.5.1 on WordPress Version 4.4.2.
    Thanks in advance.

    #251228
    richdal
    Participant

    WordPress 4.4.2
    BuddyPress 2.5.1

    Not sure how to change up the form where users would update their extended profile.

    I was able to setup a custom registration page by copying the source file to here and making my changes…

    /wp-content/themes/genbu-child/buddypress/members/register.php

    On the user Profile – Edit page I’m seeing the different fields I wanted to include, but wanted to add some extra description to the three birth date menus that show up. Is there a file similar to register.php I could copy to my child theme and fix up the HTML how I want it?

    #251218

    In reply to: Buddypress issue

    invisibleland
    Participant

    I don’t totally understand this, but here’s the debrief on how it was fixed:

    https://buddypress.trac.wordpress.org/ticket/6940#comment:6

    Thanks!

    WalkerDesign1
    Participant

    I am experiencing this error within BuddyPress. It is only when I attempt to upload a profile image for the member in the Change Profile Photo option.

    I have a php.ini file in the main directory that has the following settings –

    memory_limit = 256M;

    max_execution_time = 180;

    upload_max_filesize = 20M;

    post_max_size = 20M;

    max_input_vars = 3000;

    I have also set the wp-config file with this setting –
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );

    Updating these files by increasing memory has not solved the BuddyPress Upload Failed! issue.

    Uploading the same image within WordPress’s media directory works great.

    The image size that I am trying to upload as a profile image within BuddyPress is 19kb, it’s resolution 72 pixels.

    BuddyPress does allow me to upload a cover image that is 169KB.

    BuddyPress does not seem to allow any kind of file size to be uploaded for the member’s profile image. It may have something to do with the Profile Image configuration. Is there a configuration that is specific for the profile image?

    The /bp-core/bp-core-avatars.php file has this code –

    if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
    define( ‘BP_AVATAR_THUMB_WIDTH’, 50 );

    if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
    define( ‘BP_AVATAR_THUMB_HEIGHT’, 50 );

    if ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
    define( ‘BP_AVATAR_FULL_WIDTH’, 150 );

    if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
    define( ‘BP_AVATAR_FULL_HEIGHT’, 150 );

    if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
    define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 450 );

    if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’ ) ) {
    define( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, bp_attachments_get_max_upload_file_size( ‘avatar’ ) );
    }

    if ( ! defined( ‘BP_SHOW_AVATARS’ ) ) {
    define( ‘BP_SHOW_AVATARS’, bp_get_option( ‘show_avatars’ ) );

    Does there need to be something different in the following line of code?

    if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’ ) ) {
    define( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, bp_attachments_get_max_upload_file_size( ‘avatar’ ) );

    username222
    Participant

    Hello
    Thank you for your work on the development of Buddypress.
    I was looking for a solution to your problem and found this topic https://buddypress.org/support/topic/bp-1-1-3-display-non-member-comments-in-site-wide-activity-stream/
    6 years ago it
    I now have the same problem. Comments non-member are not displayed in the activity stream. Plugin recommended 6 years ago marked obsolete. Is there something modern solution to this problem?
    I see this problem on the local host (this is a non-working site). I want to solve this problem and migrate the solution to the working site
    Wordpress ver 4.4.2–ru_RU
    Buddypress ver 2.5.1
    Default theme
    Installed new
    The problem occurs in the absence of other plug-ins

    #251190
    xxsemmiexx
    Participant

    Hi Henry,

    It’s not about the theme, cause it was working fine till the last buddypress update.
    but the theme that i am using is “Point” from the wordpress theme site.
    http://PROUDLesbians.nl

    Plugins that i am using are:

    Advanced Ads
    Akismet
    Birthdays Widget (for buddypress)
    BP stickers
    Code PHP in widget
    Contact Form 7
    Custom Login Page
    Jetpack
    Loco Translate
    Loginizer
    Quick Chat
    WP Smush
    WP-Optimize
    YOAST Seo.

    #251189
    btees
    Participant

    Hey Guys,

    I hope this is in the right section.

    I’m using awpcp for wordpress to create a classified ads website (for people to swap stuff they no longer use, not sell it!)

    Awpcp has a comment form plugin but it’s extremely basic, at the moment it’s just adding plain text to the bottom of the page when someone comments.

    I’ve been able to edit it so the username links to the users buddypress profile, but I’d really like @mentions to link to profiles and send notifications to users tagged, appear in activity feeds, etc.

    Right now it just shows up as plain text.

    Can anyone steer me in the right direction as to how I might achieve this?

    Cheers guys 🙂

    #251187
    rbaccaro
    Participant
    hellojesse
    Participant

    After submitting new details on page index-action-admin: http://local.wordpress.dev/groups/admin/edit-details/

    NOTICE: wp-content/plugins/buddypress/bp-groups/bp-groups-screens.php:869 - Trying to get property of non-object
    require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, bp_template_redirect, do_action('bp_template_redirect'), call_user_func_array, bp_screens, do_action('bp_screens'), call_user_func_array, groups_screen_group_admin_edit_details
    barteslukas
    Participant

    PLease help.
    Activity and profiles of my members are showing up in Google search results. This is totally not cool! Even when you’re not signed in you can see the content! My members are people with ADD en ADHD and privacy is very important! I don’t want my members to show up in search results. Most of them don’t want this and it’s bad for the succes of my community.
    What can I do?
    http://www.adhdpositief.nl (is in Dutch)
    wordpress 4.4.2
    theme dynamix

    #251175
    barteslukas
    Participant

    PLease help.
    Activity and profiles of my members are showing up in Google search results. This is totally not cool! Even when you’re not signed in you can see the content! My members are people with ADD en ADHD and privacy is very important! I don’t want my members to show up in search results. Most of them don’t want this and it’s bad for the succes of my community.
    What can I do?
    http://www.adhdpositief.nl (is in Dutch)
    wordpress 4.4.2
    theme dynamix

    #251164

    In reply to: Chaning DB prefix

    Henry Wright
    Moderator

    How are you changing your WordPress table prefix?

    #251162
    Henry Wright
    Moderator

    You should be able to go to Plugins > Add new in your WordPress admin area.

    Henry Wright
    Moderator

    I’d guess that’d be a bug because the count should display site-wide. You could open a ticket on Trac for this.

    ngoegan
    Participant

    And just to make sure I cover all my bases, here are my answers:

    1. Which version of WordPress are you running?
    4.4.2

    2. Did you install WordPress as a directory or subdomain install?
    Not sure, but I think as a directory.

    3. If a directory install, is it in root or in a subdirectory?
    root I think

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes.

    6. Which version of BP are you running?
    2.5.1

    7. Did you upgraded from a previous version of BP? If so, from which version?
    Yes, the one before it.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes, Akismet, BBpress, Buddypress Edit Activity, Buddypress Forum Editor, Buddypress Group Email Subscription, Buddypress Like, Dynamic Widgets (deactivated), Events Made Easy, Events Made Easy Frontend Submit, Hashbuddy, InfiniteWP CLient, rtMedia, Theme My Login, Wanguard, Wordfence Security, WP SMTP

    I did deactivate all of them except wordpress and the register page worked, I then activated Buddypress and the redirect issue began.

    9. Are you using the standard WordPress theme or customized theme?
    Twemty Twelve

    10. Have you modified the core files in any way?
    I modified Footer.php on WordPress to edit copyright

    11. Do you have any custom functions in bp-custom.php?
    I don’t know

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    2.5.8

    13. Please provide a list of any errors in your server’s log files.
    The error log looks blank. Maybe I’m looking at the wrong thing?

    14. Which company provides your hosting?
    Hostgator

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Basic Trouble Shooting:
    I don’t know. Maybe Apache?

    ngoegan
    Participant

    Hmmm.. that posted, but not my 3 other posts. Maybe because there was code in it?

    I found this codex page and under the section titled “Site URL Redirecting” it gives instructions on deleting a couple lines of code from the wp-login.php file.

    I’m wondering if that is the issue. The lines of code don’t match those in my file exactly so I’m hesitant to try.

    https://codex.wordpress.org/Login_Trouble

    Still waiting to see if someone can help with this. Thank you.

    valuser
    Participant

    Have revisted this interesting query!

    Consulted this similar query

    and have come up with another possible solution
    (so long as the main site has a different theme or child theme to the other sites.)

    in functions.php of sub-sites’ themes insert

    add_action( 'template_redirect', 'redirect_to_specific_page' );
    
    function redirect_to_specific_page() {
    
    if (is_page('Register') && ! is_user_logged_in() ) {
    
    wp_redirect( 'http://yourmainsite.dev/register/', 301 ); 
      exit;
        }
    }

    would not work with slug is_page(‘register’}

    #251127
    shanebp
    Moderator

    Please don’t call out people individually.

    Create a Page – not a Post.

    Create a template and assign it to that Page.
    https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#creating-custom-page-templates-for-global-use

    Put your members-loop code in that page.
    Also include get_header() and get_footer() calls.

Viewing 25 results - 6,876 through 6,900 (of 32,678 total)
Skip to toolbar