Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,451 through 16,475 (of 32,678 total)
  • Author
    Search Results
  • #32482
    ecase
    Participant

    Hi, please can you help me with a code to create the “create site” link under sites> next to “My sites” in buddypress member profile area.

    right now I can only see it under site.com/blog

    http://www.site.com/blogs/create/

    I was able to modify the code in bp-blogs-loader.php however
    I don’t know how to create the link to create my site ‘slug’ => ‘create-your-sites’,

    to http://www.site.com/blogs/create/

    below is an example coder.

    Also how to add it in bp-custom to work, thank you

    /**
    * Setup BuddyBar navigation
    *
    * @global BuddyPress $bp The one true BuddyPress instance
    */
    function setup_nav() {
    global $bp;

    /**
    * Blog/post/comment menus should not appear on single WordPress setups.
    * Although comments and posts made by users will still show on their
    * activity stream.
    */
    if ( !is_multisite() )
    return false;

    $sub_nav = array();

    // Add ‘Sites’ to the main navigation
    $main_nav = array(
    ‘name’ => sprintf( __( ‘Sites %d‘, ‘buddypress’ ), bp_blogs_total_blogs_for_user() ),
    ‘slug’ => $this->slug,
    ‘position’ => 30,
    ‘screen_function’ => ‘bp_blogs_screen_my_blogs’,
    ‘default_subnav_slug’ => ‘my-sites’,
    ‘item_css_id’ => $this->id
    );

    $parent_url = trailingslashit( bp_displayed_user_domain() . bp_get_blogs_slug() );

    $sub_nav[] = array(
    ‘name’ => __( ‘My Sites’, ‘buddypress’ ),
    ‘slug’ => ‘my-sites’,
    ‘parent_url’ => $parent_url,
    ‘parent_slug’ => $bp->blogs->slug,
    ‘screen_function’ => ‘bp_blogs_screen_my_blogs’,
    ‘position’ => 10
    );

    $sub_nav[] = array(
    ‘name’ => __( ‘Create Site’, ‘buddypress’ ),
    ‘slug’ => ‘your-sites’,
    ‘parent_url’ => $parent_url,
    ‘parent_slug’ => $bp->blogs->slug,
    ‘screen_function’ => ‘bp_blogs_screen_my_blogs’,
    ‘position’ => 50
    );

    // Setup navigation
    parent::setup_nav( $main_nav, $sub_nav );
    }

    wpmirwin
    Participant

    Hello,

    First off, thanks for taking the time to read this.

    BuddyPress v1.6.1 is installed and working fine on WordPress v3.4.2.

    After enabling FORCE_SSL_ADMIN in wp-config.php, the following features stop working in BuddyPress:

    1). You cannot ‘Post Update’ in a ‘What’s new’ type of form. The button appears, and it can be clicked… but it just sits there and spins forever (well, maybe not forever).

    2). On the Groups Page, if you click on the ‘All Groups’ or ‘My Groups’ main menu items, they will also sit there and spin.

    I’m sure there other examples like #2 on various other pages.

    Should I not be enabling FORCE_SSL_ADMIN? Or, I suppose there may be something wrong in my Theme, etc. I’m about to try a standard bbpress theme, but thought I’d start this Topic anyway.

    Thanks in advance for any help.

    Regards,
    Mike.

    #143590

    In reply to: Front End User Blog

    my2hands
    Participant

    i find it strange that there isnt something that could be done, i mean the grop blog for instance works pretty much how i would like this to work, so how come no one seems to be doing this? i love wordpress and buddypress but for this prject i think i’ll have to find an alternative if there is one and i hate doing that.

    what do you mean by a buddypress component?

    Paul Wong-Gibbs
    Keymaster

    It was built the way it was because of architectural reasons. It’s something we want to change, it’s just as simple as no-one’s done it yet.

    #143563
    Tammie Lister
    Moderator

    Buddypress is already mobile friendly as the default theme is responsive. It all depends on what you want – just a theme or extra functionality for mobile? You don’t need a mobile plugin for any WordPress or BuddyPress site to work on mobile. BuddyPress mobile is not just about working on mobile though that’s exploring mobile functionality too.

    sammyb
    Participant

    I just had a look at the ticket but was unable to comment on it, so I will post my comment here instead.

    The idea of using the ?p= links is not ideal as a redirect will have to be performed for each link, also for SEO it is far better to have the correct links on the page instead of links that rely on redirect.

    My suggestion for posts activity items would be: instead of storing a URL / permalink for each posts activity, why not just store the post ID? – that way you can let the wordpress native function (post_permalink) generate the permalink and no matter how many times you change the permalink settings buddypress activity will instantly link to the correct URLs.

    #32471
    voarsh
    Participant

    We all know that social networking, blogging, communities are really getting popular and are in high demand. More and more people expect these services to be on mobile.

    @modemlooper has made a BuddyPress Plugin to make BuddyPress mobile friendly.
    He’s also told me he is developing a new Mobile plugin. I was wondering if BuddyPress itself, will be developing a mobile friendly version. There aren’t any online services that can create a mobile view except from DudaMobile, even that, does not work with BuddyPress, only WordPress.
    WPTouch doesn’t work for my BuddyPress, when enabling it, I get a blank screen. Which is a shame.

    #143549
    hozefasmile2007
    Participant

    Hi Does anybody have got any solution for this issue?

    This is really an important thing, when we use the code bp_loggedin_user_avatar() for displaying thumbnail of user avatars in other sites of a wordpress network, it don’t get the correct path of thumbnail used.
    For example instead of taking the path http://uniqueswebsolution.com/wp/wp-content/uploads/avatars/2/18cdaaffad36b2a391c5c48ccdc8ebc3-bpthumb.jpg
    its taking
    http://uniqueswebsolution.com/wp/avatars/2/18cdaaffad36b2a391c5c48ccdc8ebc3-bpthumb.jpg
    So its going to the correct main site path /wp/ but intead of going to wp-content/uploads its directly use the path next to it that is avatars/2/18cdaaffad36b2a391c5c48ccdc8ebc3-bpthumb.jpg
    So how can we call him to follow that missing directory path?

    Thanks
    Hozefa

    jaybird2214
    Participant

    So I’ve been having some troubles with a few buttons not showing up or working properly, one of them being the “Post Update” button on the Groups activity page. I figured out that the reason why some of these buttons were not showing up or working properly was from my AJAX.

    Without reading too much about AJAX in WordPress, I added in header.php:

    in order to get AJAX to work. This aparently was calling all of my AJAX scripts when they weren’t supposed to be called, therefore interfering with other AJAX calls.

    After removing that from header.php, all of the buttons my site began working normally.

    modemlooper
    Moderator

    Download the template pack plugin to your desktop and then you can get the file https://wordpress.org/extend/plugins/bp-template-pack/

    RobReg
    Participant

    Hello,

    I have had a look at a number of different posts which detail different ways and snippets of code to get buddy press working with themes. The instructions seem to be different for each one, as the theme

    tags are different, I assume.

    I’ve tried to edit the files to make them the same as my page.php in the theme but I can’t work out how to do it.

    http://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    Can anyone help me please? If I post up the page.php output, would that be sufficient for someone to tell me where I’m going wrong? I’ve seen some really helpful posts from @mercime so I’d be very grateful if you would be able to help.

    Thanks in advance,
    Rob

    #143526
    DaveyWavey
    Participant

    @modemlooper said 4 days, 6 hours ago:
    To change slugs you change the page name and URL for that page in the WordPress admin.

    That worked perfectly. Almost. It seems that links in the activity feed still reference “groups” as opposed to the new slug so for instance the link should be something like this:

    http://www.mysite.com/newslugforgroups/groupname/forum/topic/newforumpost/

    instead the groups slug somehow persists and reads like this:

    http://www.mysite.com/groups/groupname/forum/topic/newforumpost/

    And this above link generates a 404 page not found error.

    Old slug: groups
    New slug: newslugforgroups

    This seems to only occur in the activity feed – everywhere else, your suggestion seems to work just fine.

    #143509

    In reply to: BuddyPress Tags

    @mercime
    Participant

    There was a plugin for BP 1.5.1 https://wordpress.org/extend/plugins/buddypress-activity-stream-hashtags/ Not tested if it works for BP 1.6.1

    #32448
    9087877
    Inactive

    Why is there no search in sitewide forums? Is there a way to make it searchable?
    Edit:
    I did some searching and found this plugin in the bbpress plugins directory and it works great!
    http://wordpress.org/extend/plugins/bbpress-search-widget/

    #143490
    ript247
    Participant

    I am very sure. I am not having a problem making the profile page a home page, My problem is making “My Profile” show up in my component directories. On my components page it says “Associate a WordPress Page with each BuddyPress component directory” I would like to add “My Profile” to this component directory.

    Currently I have “Activity Stream = activity, Discussion Forum = Forums, Groups = Groups etc..

    How can I do this, sorry my english not so good sometimes.

    #32444
    Sniper Kitten
    Participant

    http://www.scirefs.com/

    Just managed to integrate BuddyPress into my article directory site. It may not have all the fancy stuff that make it look fantastic but I think its OK.

    Thanks to WordPress Jetpack and SyntaxHighlighter, members are free to insert mathematical formulas and source code (PHP, HTML, etc) into the article.

    Any suggestion is appreciated.

    #143478
    Paul Wong-Gibbs
    Keymaster

    I’ve added a ticket to Trac to get a template function added for this: https://buddypress.trac.wordpress.org/ticket/4596

    Patches welcome :)

    This is very common for example when you are registrating your blog in blog directories or your company in site directories. I think it would be a very good idea to have this option at Buddy Press.
    We would like everyone to be able to become a member at our social community for free, but that the members who like to add a link to their website has to add our link to their site first.
    How can this be done? Is there any WordPress plugin for this?

    We also would like to have a Business Directory (for companies related to our subject) working the same way.

    Hope someone can help!
    http://veggieboom.com

    #32434
    Koki_xiong
    Participant

    My English is not very good,
    Website plug-in installation setup is complete,
    The future will not be able to enter the wordpress Admin
    http://www.xinyulutu.com

    #143425
    modemlooper
    Moderator
    Pin
    Participant

    Hello,

    For two days I’ve been searching for a solution but can’t get it done. I really need for my network Name, Middle Name and Last name and now there are many ppl with the same Name and I can’t find a way to combine all the profile fields so I can display the full name site wide. I tried to write a code but programming =/= me. I’m sure a developer can write a snippet to put in in functions.php and I would really appreciate it if someone can help with this issue.
    I’m using the latest version of Buddypress and WordPress.

    Kind regards

    #143379
    inkblot
    Participant

    How about this:

    https://wordpress.org/extend/plugins/restrict-usernames/

    It looks like something that might possibly work for your problem, and would disallow the use of spaces in the username since I believe it’s all handled on the WordPress side of things for BuddyPress anyhow concerning registrations and so forth…

    #143378

    In reply to: Changing Groups name

    inkblot
    Participant

    If you are using the BP-Default theme you just go into your WordPress Admin panel, go to Themes, choose “Editor” and you should then be able to find what you are looking for in BuddyPress Default under;

    Main Index Template
    (groups/index.php)

    This file should be where you can rename those few things, among others, though you really should create a child theme (https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/) to add any such changes or customizations with in order to future-proof yourself so that when a new version of BuddyPress is released it doesn’t overwrite your own custom changes to the code.

    Don’t forget to save the changes to the file before you proceed, and be extra careful as to what you are making any such changes to when doing so!

    If you mess it up you can always pull a fresh file from another copy of BP-Default and upload it to the correct place on your server and just start over from scratch.

    Good luck!

    @mercime
    Participant

    BuddyPress ships with fully customized bbPress 1.

    Re BP 1.7: As Paul, a BP core dev, mentioned above it’s the customized bbPress 1 which will be phased out, the Group Forums will be kept but will be moved to the Sitewide forums (bbPress plugin). See bbPress Settings where at the bottom of the panel, there’s a section specifically for BuddyPress Group Forums https://mercime.files.wordpress.com/2012/08/bp16-swforums-03.jpg?w=700

    #143367
    fibis
    Participant

    I’m having a similar issue. Everything worked fine until I upgraded WordPress and Buddypress day before yesterday to:
    WordPress 3.4.2.
    Buddypress 1.6.1

    Now whenever someone posts text the whole page is displayed in the text box for a couple of seconds and then the page makes like it’s going to save, but hangs white. If you stop or refresh the page whilst it’s hanging this is displayed infront of the url http://wyciwyg://62/

    I’m using the custom community theme, but have tried using the default them and it still does it. The only person that doesn’t have this problem is me when I’m logged in as admin. All other user levels have this problem though.

    I did add bbpress forum after upgrading and have tried deactivating that, but that didn’t fix it. Posting in the forum works fine though.

    Any ideas on how to fix this please?

Viewing 25 results - 16,451 through 16,475 (of 32,678 total)
Skip to toolbar