Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,001 through 4,025 (of 22,651 total)
  • Author
    Search Results
  • #259583
    danbp
    Participant

    hi @sherissa_r,
    i asked on Slack where @hnla answered that “clearly something is wrong”. I opened a ticket, just in case of.

    Now we’ve to wait a little moment the time a dev can investigate this.

    #259554
    danbp
    Participant

    Hi,

    you’re on the BuddyPress support forum where we can’t help for third party plugins.
    If you have questions related to bbPress (if you use this plugin), you have to ask on their support.

    For BuddyPress for Sensei plugin or WC Sensei, you can check the doc and/or ask on the plugin support too.

    danbp
    Participant

    Hi,

    by reading the first topic, it sounds like you try to use more than one child theme !

    I already have activated my other child theme

    If it is the case, it’s not the way to proceed. 😉

    1) You should have only one child-theme activated.
    2) in this child, you add a folder called buddypress.
    3) if you need to modify some BP templates, you copy the original from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/ into the child BP folder.

    Example of what you should have:
    wp-content/themes/XYZ theme
    wp-content/themes/XYZ-child/

    Let’s say you want to modify BP’s register page.
    wp-content/themes/XYZ-child/buddypress/members/register.php
    or you want to modify the profile header template
    wp-content/themes/XYZ-child/buddypress/members/single/member-header.php

    And that’s it ! The only thing you have to do is to pick the right file and add it to the child by respecting the original path who starts at: /buddypress/path/to/file.php

    Inside the template file, yo can manipulate html tags and find different action hooks ( do_action( 'something' ); ). Take care to not rename or remove the existing class/ID names whithout knowing what you do.

    In bp-custom.php, you can manipulate BP’s behave by adding custom functions.

    In the child-theme style.css, you manipulate whatever related to your theme layout – for the entire site, including BP or other plugins.

    And as all this is done via the child, anything will remain after any update of BuddyPress, your original theme, WordPress or plugins.

    Reading actively the forum will bring you other answers, tips and tricks.

    #259547
    danbp
    Participant

    Hey, do you mean this ?

    #259541
    danbp
    Participant

    Ok, i misunderstood the whole… The initial question was:
    what I am trying to link to is
    http://localhost/wordpress/community/profile/<displayed_user>/

    Try this:

    function tab_custom_link_to_page() {
    
    	if ( bp_is_activity_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
    
    		// link to what you want		
    		$link = bp_get_root_domain() . '/community/profile/'. bp_get_displayed_user_username();
    		echo '<li><a href="'. $link .'">Community</a></li>'; 
    	}  
    }
    add_action( 'bp_member_options_nav', 'tab_custom_link_to_page' );
    #259540
    Slava Abakumov
    Moderator

    The only option is to use CSS (in style.css) in your child theme to modify that. Or some plugins, that give ability to apply styles without modifying files (Siteorigin CSS).

    #buddypress #register-page label { 
        font-size:120%;
    }
    #259536
    wolfpup64
    Participant

    That seems to work for pulling the appropriate user, I input it into the line shane provided

    function communityprofile_screen() {
       bp_core_redirect( site_url( '/community/profile/'.bp_get_loggedin_user_link()() ) );
    }

    but it looks like it gets overwritten by the slug in the aforementioned code that makes the tab appear and leads me to the url:

    http://localhost/wordpress/users/*username*/communityprofile/

    once again, if I try to remove the slug from the line the tab itself disappears. oh man this has been frustrating.

    #259534
    danbp
    Participant

    No, nothing like that. This can only be achieved within site admin. And by default a group mod is a simple subscriber which has no access to group members administration.

    The first option is to promote mods to group admin, and in this case he can from front-end, kick/ban user, promote or remove users and nothing else.

    The other option would be to give them a WP role who let them access to group members admin and evtl. using a plugin to block their access to all other admin parts… (ie. user role editor)

    In addition, you could also get some dev’s opinion to this…
    https://buddypress.trac.wordpress.org/ticket/5543
    https://buddypress.org/support/topic/how-could-a-group-moderator-edit-group-details/

    bermudastream
    Participant

    I would like to keep the activity stream short – 7-10 updates only. Where can I set the number of activities to return?

    Thanks
    Mark M.

    Site-Wide Activity

    Buddypress Version 2.6.2
    WordPress 4.6.1

    #259520
    danbp
    Participant

    Hi,
    Shane’s answer is related to the BP way to get a user name inside a redirection. wpF use probably a similar method, but certainly also his own function(s) for that. You have to find out how it does. Unfortunately, this plugin doesn’t provide documentation at the moment.

    Accordingly to wpForum support, there is still a button to wpforum on each profile. If you have difficulties to tweak the default behave, you have to ask for on their support.

    https://wordpress.org/support/topic/buddypress-compatibility-plans/

    #259408
    Toni
    Participant

    I’M deleting the entire installation and reinstalling WordPress.

    #259406
    wolfpup64
    Participant

    Thanks for getting back to me shane, unfortunately that redirects to the wpForo page:

    http://localhost/wordpress/community/

    #259394
    metalhead
    Participant

    Thanks, and I went through the process, and then I re-installed Buddypress, but I’m still having the same problem. It’s when I click the button to save the new user info, and instead of proceeding to the next step (“Check your email for verification,” it’s just refreshing the new user registration form. It won’t let a new user get passed that screen.

    I read about someone else having the same problem, in this forum, but he never did describe how he overcame the problem. I’ve tried deactivating all buddypress related plugins, but no luck.

    I think the best thing for me to do is going to be to re-install WordPress from scratch, but do you have any other recommendations before I do that?

    Thanks.

    #259386
    danbp
    Participant

    Just in case of, FYI

    ImageMagic issue was fixed for WP 4.6 and merged to 4.5

    Other related ticket on WP track.

    #259385
    nickrobinson352
    Participant
    #259383
    buddycore
    Participant

    Bumping this, for those looking to test drive BuddyPress with a custom theme and maybe take it a bit further and customize for core WordPress and BuddyPress features.

    There is no support for BBPress in this theme at the moment, but if there are enough people wanting this I will bring it in the future.

    #259372

    In reply to: BuddyPress Components

    mikke1978
    Participant

    Thank you @danbp for replying. For the past month, I have been trying to get BuddyPress to work for me on Yahoo’s hosting server. Yahoo has been offering me no help to resolve the issue. They keep telling to contact buddypress. org or wordpress.org. Basically, they got the money for one year, and they don’t care if the problem is resolved or not. They don’t even seem to understand the problem.

    Everything is configured according to the required settings for BuddyPress to supposedly work. I have custom permalinks, each component has its own page etc.. I am not sure what you meant by WordPress doesn’t use www by default, but the way Yahoo host is set up for WordPress, we have to install WordPress in a default folder called “blog” (http://www.site.com/blog) or any name we choose. And I think this is what is causing the problem. BuddyPress components don’t know where WordPress is installed. Under the Dashboard-General Settings, both the WordPress Address (URL) and Site Address (URL) show the correct path (http://www.site.com/blog). I think it is a matter of telling BuddyPress components where to look for the WordPress installation.And this is where I lack experience and knowledge. I tried every possible solution I found online, especially on the WordPress site regarding installs in own directory: https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

    Nothing worked for me. Yahoo told me they do not support the .htaccess file, they don’t seem to have a web.config file. I am sure there is a solution where a certain file(S) can be edited and all would be resolved, but I need someone to point them out to me since I can’t browse the hundreds of installed BuddyPress files looking for the ones that point to the WordPress installation location. I would really appreciate anyone’s help to resolve this issue.

    Currently, I installed WordPress locally on my laptop, I set up BuddyPress plugin and it works like a charm. Yahoo suggested I uploaded it to the root of my host account, but I am have issues with the data base set up.

    If I can get a solution for the default install that I get with Yahoo host set up, I would really appreciate it.

    Thanks!

    Mikke1978

    #259369
    Venutius
    Moderator

    For the second part of your ask there are a couple of mass messaging plugins that allow only certain roles to send messages to everyone.

    one does it from the front end, the other from the backend.

    https://wordpress.org/plugins/mass-messaging-in-buddypress/

    https://wordpress.org/plugins/mass-messaging-for-buddypress-by-alkaweb/

    #259360
    valuser
    Participant

    We want our groups to have their own personal page that can give information to visitors about Group activities, group description, what are they doing, etc.

    Have a look at this Group Home Page

    Not at all saying that its an off the shelf solution – just that it can be done.

    #259359

    In reply to: connections

    Henry Wright
    Moderator

    This isn’t possible by default. You will need to find a plugin or add some custom code to get this done. Try looking here first to see if something is already available:

    https://wordpress.org/plugins/tags/buddypress

    #259358
    Henry Wright
    Moderator

    This can’t be done with BuddyPress by default. You’ll need to find a plugin. Try looking through the Plugin Directory to see if anything is available:

    https://wordpress.org/plugins/tags/buddypress

    danbp
    Participant

    hi,

    it’s because you didn’t right.
    The translation, or word change, use a msg ID which contains the original string and a msg string, for the new wording.

    In your case, you should use

    msgid "Site Wide Activity RSS Feed" // the original string
    msgstr "Rich Site Summary" // the custom string

    Note also to get this to work, you need to compile the po file to mo file.
    And if you don’t want to redo that after each BP update, i recommand you use this plugin, so your custom language file remain untouched, while the default language will be updated.

    #259334
    Venutius
    Moderator

    An interesting plugin I just found is https://wordpress.org/plugins/galau-ui-visual-editor/ this allows posts to be edited from the front end, but it does not allow posts to be created, categories to be set or images added from the media library, so has limited use I think, still it’s a nice plugin if all you need people to do is edit the text of their posts without going to the admin screen.

    #259328

    In reply to: Who’s Online Widget

    danbp
    Participant

    It is wrong as it search for an activity and not site access…

    Try this

    #259316

    In reply to: Who’s Online Widget

    danbp
    Participant

    Clients requiring many things ! Some can be done, some not. It’s to you to explain them that it’s not possible. Or only with a very huge additionnal budget. This argument is mostly the best to opposite to an obtuse “i want this feature”. Diplomacy, diplomacy… 👿

    1) You count the number of avatars on the widget ! Or something like this. 😉
    2) who’s online refreshes after 5 mn. See https://buddypress.trac.wordpress.org/ticket/3590
    3) try with bp_get_user_last_activity()

    Also wp-content\plugins\buddypress\bp-members\classes\class-bp-core-whos-online-widget.php

Viewing 25 results - 4,001 through 4,025 (of 22,651 total)
Skip to toolbar