Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,801 through 5,825 (of 22,683 total)
  • Author
    Search Results
  • #240174
    Hugo Ashmore
    Participant

    I can confirm that the url path is stripped out but the actual members page should still work either directly navigated to or clicking the page link as nested under a parent dropdown which should result in page being found but at it’s root position my-site.com/members/

    Can we confirm that the page does still exist and is viewable, in the meantime I’ll open a trac ticket to log the page hierarchical issue.

    This issue is ticketed for looking into:
    https://buddypress.trac.wordpress.org/ticket/6475#ticket

    #240168

    In reply to: Group tab questions

    mrjarbenne
    Participant
    #240167
    mrjarbenne
    Participant

    You can do that by adding this constant in wp-config.php

    define ( 'BP_ROOT_BLOG', $blog_id );

    I’m thinking you probably want option B: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/#b-network-wide-activation-buddypress-root-blog-in-secondary-site

    #240163
    mrjarbenne
    Participant

    Add this to the style.css file of your theme:

    /*Fix for hiding the Login menu on Mobile*/
    #wp-admin-bar-root-default #wp-admin-bar-bp-login {
    	display: block;
    }

    If you don’t want to have to edit your theme every time there is a theme update, you could use something like this to add the CSS from the dashboard: https://wordpress.org/plugins/simple-custom-css/

    #240156

    In reply to: End User Blog

    mrjarbenne
    Participant

    MS integrates wonderfully with BuddyPress. When network activated on a Multisite, activity from across the network is recorded on the users Profile. Just be sure to check Site Tracking under Settings/Buddypress once you network activate BuddyPress (https://cloudup.com/i_-p1kJGUwd). Once upon a time, BP was ONLY compatible with Multisite: you couldn’t run it on a single WP install.

    Note that this will give your users the ability to have their own blogs. This is separate from the ability to post from the front end. For this you would need to make a theme like P2 your network default. http://premium.wpmudev.org/blog/how-to-set-the-default-theme-for-wordpress-multisite/

    #240147
    mrjarbenne
    Participant

    Does this plugin fit your needs: https://wordpress.org/plugins/rendez-vous/

    #240119
    r-a-y
    Keymaster

    Can you try the patch in this ticket?
    https://buddypress.trac.wordpress.org/ticket/6371

    #240114

    In reply to: Per-group Identity?

    Tony G
    Participant

    Well, group meta allows meta data to be applied to groups. I’m thinking along the lines of data in the usermeta table which is only consumed by specific groups. This might be expressed as a name/value pair in the profile. So with reference to my original example, a GroupName profile value would include:
    school:Robert
    home:Bobby
    coolGame:Zarcon

    The BuddyPress Profile Shortcodes plugin allows for custom fields and related shortcodes to be used. This is much closer to my needs but still not quite there. I can’t create a profile field for every possible group. Ideally there would be a pulldown of groups to which the user belongs, where they can enter the name they wish the use for that group, and the group/name pairs would be displayed in a grid.

    Now I’m thinking one of the better user meta plugins could handle that. But I would also need to customize it so that there can only be one WP user with a specific value for a specific group. This is a unique key per group, as some reference to @Bobby can’t apply to more than one person, but the @Bobby in one group can be different from @Bobby in another group.

    On the client side, I would then need to modify bbPress to get the user name that’s specifically for the current group, rather than using wp_get_current_user()->display_name or whatever it has there. For example:
    get_user_meta($user_id,’groupName_’.$group_id,true)
    or better
    get_user_meta($user_id,’groupNames’,false)[$group_id]

    Actually I’d rather abstract all requests for a user name to a function which can then be replaced with custom code just once. I don’t suppose anyone has already done that, or it’s been proposed as a BP/BBP enhancement?

    I’m a noob with coding into WP, haven’t touched BP/bbP, and know little about the APIs, so please bear with me on the syntax and other specifics and focus on the concepts. Thanks.

    The more I try to flesh it out above the more it seems possible for me to do this myself. But it would be really helpful if someone has already done it. Or if someone with knowledge in this area can see a more direct line from an exiting plugin to the solution I’m describing.

    Thanks for your time!!

    Henry Wright
    Moderator

    Hey guys,

    This is a known issue. See #6360 for more info.

    (@codemonkeybanana I think you already found it) šŸ™‚

    #240089
    xprt007
    Participant

    Update:
    I have to add I have a set up of Buddypress/bbpress on another site on same server & sharing same account (Justhost.com) & there is no issue, with those pages. WordPress & ALL used plugins are up-to-date.

    Regards

    YES!!! Only yesterday after ages of research I found a plugin: Unconfirmed.
    Gives you access to Pending users:

    Unconfirmed creates a Dashboard panel under the Users menu (Network Admin > Users on Multisite) that shows a list of unactivated user registrations. For each registration, you have the option of resending the original activation email, or manually activating the user.

    Robert

    danbp
    Participant

    php memory limit is used to calculate the cache size of php scripts.
    Manually transfering content to DB has nothing to do with that.
    Deactivate all plugins except BP and if you use custom functions in your theme or via bp-custom.php, remove them provisory, while testing your install.

    FYI, WP recommends 40Mo (single) or 64Mo (MS) and by using BP, a recommend size is 128M. The maximum you can set anyway is 256Mo. (which is largely enough for a script)
    See doc in wp-admin/admin.php:138

    Some usefull tips/recommendations can be found here.

    #240039
    danbp
    Participant

    Hi @henrywright,

    it’s not exactly a problem ;-), more a pure php fact.

    As of WP Codex about gettext filter (codex.wordpress.org/Plugin_API/Filter_Reference/gettext)
    This filter hook is applied to the translated text by the internationalization functions (__(), _e(), etc.). IMPORTANT: This filter is always applied even if internationalization is not in effect, and if the text domain has not been loaded. If there are functions hooked to this filter, they will always run. This could lead to a performance problem.

    Some related articles:

    Introduction to the gettext Filter in WordPress

    The dangers of the gettext filter

    #240031
    Henry Wright
    Moderator

    Hi @joshdrok

    An alternative way of changing text is to use the gettext filter. See this article for more info:

    https://codex.wordpress.org/Plugin_API/Filter_Reference/gettext

    #240027
    Henry Wright
    Moderator

    Hey @vanleurth

    You could use the bp_parse_args filter for this. It will allow you to perform a meta query.

    Hope this info helps šŸ™‚

    #240018
    Henry Wright
    Moderator

    Try the Theme My Login plugin.

    #240016
    shaquana_folks
    Participant

    Hello @hnla,

    Didn’t mean to be ā€œshoutingā€ through this message in the subject line, it’s because this is the 4th time I’ve tried to get my message through this BuddyPress forum and out of all my messages from a few days back, I noticed that this recent one I just did was the one that actually went through and I did the other messages just the same exact way as I’ve done before so I don’t understand why my messages haven’t went through the other times. So it’s just been a very frustrating time for the past couple of weeks trying to get help and I haven’t received further help so far from anyone so I’m just trying to resolve everything. But you’re right, and I’m trying my best to work with everyone to get the most feedback that I possibly can to get the job done and resolve these problems.

    The off site frame 404 not found page should be working fine now. I just updated the permalinks and when I went to click on the register link, the registration page (as well as the actual website link) was working properly from my end.

    As far as the BuddyPress plugin goes, I didn’t know that BP doesn’t have a setting for people to upload files, however when you go to the registration page on my site, there’s an ā€œChoose Fileā€ section for people to upload a picture file (for their profile page) on there as someone is filling out the actual registration form, so I just assumed that feature automatically comes with the BuddyPress plugin.

    There shouldn’t be nothing wrong with the theme for I had double-checked already from my backend and I spoke to a representative through my hosting provider and after explaining everything to them, they said that I would have to get in contact with one of the BuddyPress developers to resolve the issue and if it’s an issue from the hosting plan, to inform me about it that way I can contact them again to let them know what the specific problem is. So I’m basically going back and forth between BuddyPress and my hosting provider explaining the same thing, therefore I’m pretty much stuck on what to do, so that’s why I’m asking for anyone’s help if possible, because I’ve done everything on my end to the best of my ability.

    So here are some screenshots that I hope will be helpful of what I actually was doing through the registration process and hopefully someone can come up with a solution as far as why this is not working properly:

    SCREENSHOTS FROM MY MAGNUS WORDPRESS THEME FOR REGISTRATION PAGE:
    Screenshot 1
    Screenshot 2
    Screenshot 3
    Screenshot 4
    Screenshot 5
    Screenshot 6
    Screenshot 7

    Then I did the same exact process with one of the WordPress default themes from my dashboard:

    SCREENSHOTS FROM THE TWENTY FIFTEEN WORDPRESS THEME FOR REGISTRATION PAGE:
    Screenshot 1
    Screenshot 2

    And as you can see, the same result happens. So can someone please explain to me why this is happening? Is it a BuddyPress coding issue? Or is it from my end? Any feedback would be greatly appreciated.

    Thank you.

    #240007
    danbp
    Participant

    They are so many topics on this forum explaining how to do this ! If you think it’s not correctly documented, add your contribution to the Codex.

    That said, i made you a working buddypress-en_US file you can download with almost(hopefully) all groups related strings changed to Alliance. Some are not modified, but you can add your own words with poEdit.

    https://make.wordpress.org/polyglots/handbook/tools/poedit/

    danbp
    Participant

    Of course you can customize it, but as that need to rewrite the whole who’s online class, you would perhaps prefer to use an already made work ?

    Try BuddyPress Friends On-Line, which comes with a friend on-line widget.

    Install it, activate the widget and you’re done.

    danbp
    Participant
    #239985
    CodeMonkeyBanana
    Participant

    I’ve been staring at the code for a while and it’s starting to make sense.

    I’m not great with databases but looking at the function I gather it changes a few fields into primary keys that point to the data table so fields can be individual.

    It runs the table modification code on the dbdelta_create_queries hook.

    The wordpress codex seems to say that this action will happen anytime a database or a table is created.

    Am I right in saying that this only ever has to be run once? Can I just run it once on admin init then remove it and add the modify_bp_global_xprofiles_tablenames at runtime or have I misunderstood it?

    #239981

    In reply to: End User Blog

    danbp
    Participant

    You already have a blog if you run WordPress.
    Depending of how many authors you expect, and money you have, you can opt for MS and allow a complete blog (like the main blog) to each user. But a blogging farm is a BIG project who need space and powerfull server ressource. BuddyPress is tailored for that. But are you tailored to assume ? šŸ˜‰

    A good compromise for small and middle project is BuddyPress Groupblog wich comes with P2, an extra front-end editor theme. So you have two answer in one plugin.

    BuddyPress handles essentially members. Publishing is WP’s job and giving users a possibility of front-end publishing instead of back-end is an endless pros and contras discussion. And in any case, a long front-end dev work. At least.

    #239979
    danbp
    Participant

    That issue was solved in BP 2.2.2
    A topic with some explanation can be read here.

    You’re using a theme which latest release was 2013, before WP changed page title handling.
    Suggest you use a more recent one. Try also one of Twenty’s theme to check that the error message is no more there, and that your page title is correctly showing.

    Mickey
    Participant

    I have changed the text in new po and mo files uploaded it to proper folder and nothing has changed.

    I am confused by this, This example uses en_US as the sample language definition, and thus buddypress-en_US.mo is the name of the language file you will create. You’ll need to replace ā€˜en_US’ with the locale of your WordPress site.

    So the two file names should not be named

    buddypress-en_US.mo
    buddypress-en_US.po

    Is this the same for everyone using English or is it different for every user? Perhaps thats why its not working for me.
    THanks

    #239970
    danbp
    Participant

    BP doesn’t use a specific search page like WordPress does. Try to adjust your theme via a child theme or see theme support.
    Codex is your friend !

Viewing 25 results - 5,801 through 5,825 (of 22,683 total)
Skip to toolbar