Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,451 through 20,475 (of 22,602 total)
  • Author
    Search Results
  • #56331
    5320203
    Inactive

    Third time trying to post. Trying the logout/login work-around posted by Andy. Guess cookies?

    I am new to this forum and to MU/BP but not to wordpress. I am flying into NYC from Fort Lauderdale on my way to Calgary, and so even though I am on a tight schedule, I would love to meetup with MU/BP developers as my next several ventures are set to explore using MU/BP extensively, developing multiple themes and plugins.

    I arrive at LGA at 8:45 so I will be rolling in late, but if my cameras arrive on time I would be happy to document 1 or more sessions (as requested on this thread). Has anyone volunteered for this yet? If so/not, lets co-ordinate priorities for recording, and who is willing and able.

    Lastly, since I am arriving the day-of, I will have my luggage with me. Does anyone know if the venue has a place for me to keep a few bags until the end of the first day?

    Really looking forward to meeting all these bright minds working towards solutions on common problems.

    #56330

    In reply to: External Group Blogs

    jamesyeah
    Participant

    Hi,

    I’m currently running on WordPress MU 2.8.5.2 with BuddyPress 1.1.2.

    James

    #56324
    Xevo
    Participant

    See the codex, https://codex.buddypress.org/.

    Best way to learn theme tags right now is just downloading a few buddypress themes and look at the source. Those on member blogs (if thats what you mean) applies to wpmu and has nothing to do with buddypress.

    Use this site (http://wpseek.com/browse/) to look at all wordpress and wpmu functions.

    When you are including directly code that is usually a plugin, you need to make sure that you include all of its dependencies before you proceed through the file you’re using to load that code.

    In my opinion, the only way to make this transition is to do so knowing that you’re totally bypassing the ability to update the plugin and that it is now something that you’re including manually, either within your template or maybe even bp-custom.php. If the plugin itself was all you needed, then you’d just activate it and let it do it’s thing, right?

    So, rather than hook the loading of those files into a WordPress action, load them via your parent themes’ functions.php file, and put that code in your parent/functions/ folder…

    I try to keep things clean and logical, but I also reinvent a lot of wheels and re-factor existing WordPress plugins for my own custom applications. Breadcrumbs, taxonomy clouds, custom kses, etc… My parent themes are loaded with additional code that started out as someone else’s plugin that now is part of my theme. ( I know this goes against the entire reason why plugins exist, and I know it would be better karma to help contribute to a plugin than disassemble it and use its parts as my own, but sometimes that isn’t realistic, and sometimes it helps to see someone else’s perspective on how to achieve a goal. )

    Maybe I misunderstood your question entirely… If so, then forget everything I just said. :)

    Long story short, require ( WP_PLUGIN_DIR . '/bp-classifieds/bp-classifieds-groups.php' ); isn’t included everything that plugin needs to live. That file uses another file that’s missing.

    #56309

    BuddyPress uses the “display name” to know that they have filled out some profile information. It is the only *always* required field inside BuddyPress.

    Because WordPress is centered around the “username” and uses the “nicename” for slug purposes, we’re stuck with those no matter what. I like having my username be short for easy log ins if I can help it of course (sometimes “jjj” is already taken.), but I like my display name be my fullname because it’s how people recognize me.

    I don’t see a way around this any time soon. And like Andy said, internationally sometimes people have 4 or more names. I use my middle name, but having a “middle name” field isn’t always optimal either so I lump it in with my first name. (All those years of my mom yelling “John James you get over here this instant!!” must have stuck with me.) :)

    You can rename the primary name field to be whatever you’d like, which is designed to alleviate some of the confusion. It lets you decide what that field means to your users. The “username” is the only thing they can’t change, so they’re using that for life. :D

    #56307
    circuit
    Participant

    i’ve made some progress by installing the community blogs plugin.

    https://wordpress.org/extend/plugins/bp-community-blogs/

    the user’s roles in blog 1 are still removed when they create their own blog, but the plugin corrects this behaviour as soon as the page is reloaded.

    this is definitely not a perfect solution but it’s all i can do.

    i still have one problem, though. this plugin will not allow me to specify ‘subscriber’ – only ‘contributor’. i tried fiddling with the code and couldn’t get this to work. if anyone could help me hack this together, i would really appreciate it.

    #56283
    Xevo
    Participant

    Ok, I’ll try writing my first ever wordpress function then. :)

    Thanks for pointing me in the right direction.

    #56281
    geekjon
    Participant

    My Dashboard confirms that I am already on WordPress MU 2.8.5.2

    #56232
    elemsee
    Participant

    Well this was the error message I was getting for whatever reason.

    `

    Downloading update from https://downloads.wordpress.org/plugin/buddypress.1.1.2.zip.

    Unpacking the update.

    Installing the latest version.

    Deactivating the plugin.

    Removing the old version of the plugin.

    Plugin upgraded successfully.

    Attempting reactivation of the pluginFatal error: Cannot redeclare bp_activity_install() (previously declared in /chroot/home/barliman/barlimans.com/html/wp-content/plugins/buddypress/bp-activity.php:19) in /chroot/home/barliman/barlimans.com/html/wp-content/plugins/buddypress/bp-activity.php on line 52

    #56215
    MrMaz
    Participant

    A big thanks to Chouf1 and everyone else who is providing feedback on l10n issues. Thanks to Chouf1, I found a filter loop in the bp_links_load_textdomain() function so I have just committed a fix for that to trunk. In addition, there are now two new filters to give more control over the locale string and .mo file path as well, just in case you really don’t like how I am handling things, lol.

    I also found a strange issue where MU code is returning an empty locale string if the option in empty in the database, so I also make sure the locale is not empty before wasting a file check (stat).

    You can check out the diff here:

    https://plugins.trac.wordpress.org/changeset/171526/buddypress-links

    I am going to tag a new version tomorrow, hopefully by 1pm EST.

    #56205
    Brajesh Singh
    Participant

    hi David

    No you can not do it in that way.You need to follow the process for migrating from wordpress to wordpress mu.

    1.Export your posts/pages

    2.take a backup of your wp-content directory

    3.Take a backup of database(in case you need it to revert back)

    4.remove the wp from server and install wpmu

    5.Import the posts from your export file

    6.Upload the uploads ,themes directory to wp-content/ in your new installation

    If you have a website with thousands of posts,then export import may be trouble.you may follow this instructions in that case

    http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/

    Hopefully it helps.

    #56202
    Xevo
    Participant

    It is a plugin for wpmu, since you have to install and use it as any other plugin. And yes, if you use a wordpress single install, you will have to switch over too wpmu first.

    They plan on making it available for single installs, but don’t hope on that anytime soon.

    #56201
    dtclarinet
    Participant

    david here again. I just added buddypress to another page http://blog.davidhthomas.net/discussions and it is functional.

    It’s strange that is is touted as a “plugin” when it’s really a new wordpress install.

    Please correct any of this info if it’s wrong, so I can use buddypress in the most flexible way possible.

    thanks,

    david

    #56184
    PH (porsche)
    Participant

    Is anyone having issues with any conflicts with the Vote it up plugin and buddy links..?

    https://wordpress.org/extend/plugins/buddypress-featured-members-widget

    #56170

    In reply to: Post via e-mail

    Xevo
    Participant

    As far as I know it’s been taken out of WPMU.

    Read this, https://mu.wordpress.org/forums/topic/1857.

    #56163
    profitsbuzz
    Participant

    Sorry, this is the same issue that is bugging me,

    1. Is it to say that I redirect the wp signup to register, the problem would be solved?

    2. Would it affect the other plugins I have install under wordpress mu?

    by the way I am using wpmu 2.8.5a

    #56161
    Boone Gorges
    Keymaster

    You can also use the following jQuery technique to put the buddybar in any application: http://teleogistic.net/2009/10/displaying-the-buddypress-admin-bar-in-other-applications/. It’s probably overkill if you’ve only got a single page (since Xevo’s method is so much more straightforward) but it’s nice if you’re trying to integrate another entire program.

    #56139
    Lriggle
    Participant

    Oh that might be just what I need! Thanks!!

    #56134
    Mike Pratt
    Participant

    A long while ago, Burt Adsit wrote https://wordpress.org/extend/plugins/bp-community-blogs/ . I still use this plugin although I couldn’t tell you the last time Burt updated it. he has been awol lately. It still works as it doesn’t appear to be too dependent on the BP framework. For me, I have a blog I use as an “announcements” tool i.e. all registered users can write announcements which get displayed on a widget. So the plugin auto-registers each user to that blog as an “author”. Sounds like this is what you are looking for. Hope this helps.

    #56127
    Xevo
    Participant

    Found a wpmu function (https://codex.wordpress.org/WPMU_Functions/add_user_to_blog) just now, this does what I need and I believe it would be best too add this into the register.php page, I just don’t know where too place it exactly.

    #56126
    Xevo
    Participant

    You can make custom pages inside of buddypress.

    https://buddypress.org/forums/topic/make-your-own-custom-buddypress-page

    #56109
    Brajesh Singh
    Participant

    @Bowe

    Wordpress /buddypress does not do anything special to images.By default the avatars are saved as square(same height and width),so if you keep the ratio,the image looks good as it gets scaled down by css,otherwise say you make the height and width different ,It gets stretched.just for clarification :)

    #56102
    5280425
    Inactive

    Yup, it is resolved with your great help. Thanks a lot. I will try to install WPMU on Add On’ed domain and see how it goes :P Also, is BuddyPress.org using their BuddyPress or just a WordPress? Because this Theme is… Something beautiful :D

    #56101
    Brajesh Singh
    Participant

    hi there

    well,so your subdomain style issue is solved.

    For the random non existing subdomain behavior is expected by wpmu.since you are using buddypress default theme ,so you will not be able to see wp-signup.php and it is one of the most discussed topic here in forum.just search it.

    If you are trying to create forums (as you may be thinking of standalone forum in bbpress),this is not implemented in that way in buddypress.In buddypress ,the bbpress (internal integration) is used for creating forums with groups and they do not have a separate admin.You can enable forum from group admin screen for a particular group.

    As far as I know and my experiences with shared hosting,you won’t be able to install wordpress mu on addon domains.If you are able to install wpmu on addon domain ,then buddypress should work without any problem.

    #56083
    Bowe
    Participant

    @Xevo.. that’s true.. But it seems that wordpress/buddypress does something special when you resize using .css.. the avatar actually gets loaded in the size you specify in the .css… if you view the image it’s the same size (so not the original size of the image which gives bad results quality/data wise)

Viewing 25 results - 20,451 through 20,475 (of 22,602 total)
Skip to toolbar