Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 57,601 through 57,625 (of 68,931 total)
  • Author
    Search Results
  • #64889
    peterverkooijen
    Participant

    Would this plugin also help in upgrading a custom Buddypress 1.1.3 theme to 1.2?

    I’ll try that later this week…

    #64888
    r-a-y
    Keymaster

    @modemlooper

    Looks like grabbing the thumbnail might be doable.

    But I’m not sure if the BP activity stream supports this dual-mode view you’re speaking of (activity stream gets one view, activity permalink gets another) since they both use the same template to render the activity.

    I’m guessing not off the top of my head…

    #64887
    myislamicblog
    Participant

    Hey @D Cartwright :),

    I’ve installed your amazing and unique plugin, it went throught till the point i want to visit the group wiki, i see the message: “You do not currently have access to view any of the wiki pages of this group.” and im the admin and the page is public. (http://myislamicblog.com/groups/forums/wiki)

    Plus, in the group/wiki admin, where it says click the (+) picture to add a page, it doesnt do anything and im not able to add other pages.

    Any ideas??

    Thank you in advance.

    #64884
    David Lewis
    Participant

    Yup… it’s not a widget. Two options which would involved making a child theme. Don’t worry… it’s really simple: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/

    1. Make a child theme with a custom sidebar.php file and comment out or delete the login block of code.
    2. Make a child theme and add this line to your “style.css” file

    #login-text, sidebar-login-form {display: none;}

    I suppose you could also try adding the code below to a “custom.php” file and putting it in your plugins directory (no child theme required)… but now I’m just getting silly. LOL (I haven’t tested this BTW).

    <?php

    add_action('wp_head', 'hide_login');
    function hide_login() {
    echo <<<CSS

    <style type='text/css'>
    #login-text, sidebar-login-form {display: none;}
    </style>

    CSS;
    }

    ?>

    or even this! (very silly)

    <?php

    add_action('bp_before_sidebar_login_form', 'open_login_comment');
    function open_login_comment() { echo '<!--' }

    add_action('bp_after_sidebar_login_form', 'close_login_comment');
    function close_login_comment() { echo '-->' }

    ?>

    So how to you intend for people to login? Just via the regular WordPress login?

    #64881
    David Lewis
    Participant

    I’m not sure… but the plugin was released by Andy who is the main core developer for BuddyPress. I didn’t even know about the plugin until I responded to your post. I knew there was a thread on here about your question about a week ago… so I just did a search.

    #64879
    danka
    Participant

    Thanks a Lot, for fast replying and for the plugin!!!

    I never noticed the existence of this one!

    But, there are any plan of making it official part of Buddypress? It would be really useful.

    Thanks Again. Best Regards.

    #64878
    modemlooper
    Moderator

    @r-a-y

    Suggestion: when you input a url and it auto embeds. I think for usability sake it should do a thumbnail like blog posts and @sbrajesh gallery plugin. The thumbnail would then be viewable full size in the permalink view. This could be done via css but the embed would need to be wrapped in the permalink.

    #64877
    intimez
    Participant

    Thanks to you and your team for all the great work!

    Here’s a reference to the issue I reported:

    https://trac.buddypress.org/ticket/2040

    #64859
    r-a-y
    Keymaster

    @gregfielding

    What part of the group homepage are you looking at adding the player?

    This plugin only adds oEmbed support to activity updates and forum posts.

    It looks like ustream.tv has oEmbed support.

    But as stated in the readme.txt FAQ, you’ll need to add support for uStream to WordPress’ oEmbed provider list in order to allow uStream embeds. I’m not going to be adding any additional oEmbed providers to WordPress’ default list.

    If you know a little bit about code, you can read here to add support yourself:

    https://codex.wordpress.org/Embeds#Adding_Support_For_An_oEmbed-Enabled_Site

    If you need help adding uStream support, I’m *thinking* of offering premium support to extend the plugin for a nominal fee (similar to other Wp plugin developers).

    Yeah I know, not what some people wanted to hear. Basic support will always be free though. Of course, I haven’t thought about this in depth – just a spur-of-the-moment idea your post gave me that is sure to ignite some negativity ;)

    Not sure if I’m actually going to go through the premium support model though.

    @modemlooper

    Re: oEmbed Discovery plugin – that should also work. I listed this in the readme.txt and its potential problems if you don’t trust your user base.

    Also not sure if the upcoming version of oEmbed for BP (v0.6) will work with the oEmbed Discovery plugin, since the new version of the plugin changes the logic of how URLs are sent to WP’s oEmbed to enhance performance on your DB . I’ll do some testing, but if the oEmbed Discovery plugin doesn’t work in v0.6, at least you’ll still have v0.51!

    #64857
    modemlooper
    Moderator
    #64856
    gregfielding
    Participant

    Would this plugin allow embed codes from other services to display?

    I’m running some “classroom” groups in my community and am trying to find a way to embed a ustream player directly onto the group (“classroom”) page. Our presentations and chats are live…so it wouldn’t work to have to upload a video to these other services first. (although it would be great for video archives).

    Thoughts?

    #64855
    Andy Peatling
    Keymaster

    This is a WPMU issue, not BuddyPress, you need to get WPMU to force the BuddyPress theme as the default.

    #64853
    Craig
    Participant

    Hi Andrea…thanks for the tips and helping a newbie.. Yep, I see everything you’re describing…

    But wow…wish I knew what I’m trying to accomplish exactly.

    Am I supposed to just re-arrange the HTML elements? Match the div classes?

    The other thing I don’t get is, both my page.php and BP template files seem to be calling/loading the sidebar element…if so, is only one of them supposed to?

    I’ve never really hacked any WordPress layout before (new from Joomla)

    I’m really interested in learning this aspect of WordPress though if anyone is interested in helping out. :)

    #64850
    Andrea Rennick
    Participant

    It’s not php, it’s HTML. :) Your theme page up there has a “post” div aroudn the content area. make the BP template files match that. (Hint: look for the “content” div.)

    #64848
    bpinspire
    Participant

    Thanks @MrMaz for the reply, I’m curious if someone have the same issue on single WP?

    #64847
    Craig
    Participant

    If anyone is willing to help…here’s my page.php…again I’m not sure what I need to re-arrange in the BP template files…if someone described what needs changing in one of them, I can figure out the rest…THX

    <?php get_header(); ?>

    <div class="post">

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="post" id="post-<?php the_ID(); ?>">

    <h1><?php the_title(); ?></h1>

    <small> <?php edit_post_link( __('Edit'), ' | ', ''); ?></small>

    <?php the_content('<p>Read the rest of this entry »</p>'); ?>

    <?php wp_link_pages(array('before' => '<p>Pages: ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

    </div>

    <?php endwhile; else: ?>

    <p>Sorry, no posts matched your criteria.</p>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    #64842
    nickrita
    Participant

    Should be an easy question, but nobody here to give an answer. It’s a pity, because I cannot use buddypress 1.2 if I cannot edit the activity stream.

    #64841
    Craig
    Participant

    Yes… I agree :)

    I’m just wondering if someone might be willing to spell out the layout change that would fix the apparent problem. I’m a PHP newbie…sorry.

    #64840
    nickrita
    Participant

    To not show the friendships I deleted in index.php of activity-folder in the theme:

    <?php if ( bp_is_active( ‘friends’ ) ) : ?> <option value=”friendship_accepted,friendship_created”><?php _e( ‘Show Friendship Connections’, ‘buddypress’ ) ?></option> <?php endif; ?>

    BUT:

    I don’t know how to only show blog posts. I think it will not work to delete all Options but NewBlogPosts, because this only gives the links and not what is shown as default option.

    #64832
    MrMaz
    Participant

    @bpinspire

    I have not done extensive testing on single WP, but I plan to before the next branch is released. Your issue sounds kind of bizarre, and I can’t think of any reason why that might be happening.

    #64828
    Andy Peatling
    Keymaster

    Everything is explained on step three of the setup process.

    #64819

    In reply to: Privacy

    Jeff Sayre
    Participant

    @Erich73-

    Haha! I appreciate the thought. I’m sure Automattic is able to afford to buy many things! I have no issue with Automattic. I do not expect them to pay me.

    @everyone

    My code, like any other GPLed theme or plugin is freely available for all to use. So, if Automattic wants to merge my code into BP core, I would be honored and not expect anything else in return.

    I hope that my posts (in this thread and on my website concerning this issue) do not come across as me being bitter. That is not the case.

    I fully support and believe in the Open Source model as expressed via the GPL. I also believe in giving back to those Open Source projects from which you have benefited. I of course have done that with the hundreds of hours I’ve donated as a moderator on these forums.

    The referenced-to post above was just my attempt to try to figure out a possible way where I could actually earn part of my living by creating great-quality plugins for the WordPress / BuddyPress community. I think talented programmers should be able to do that without having to resort to consulting. I have no interest in providing consulting services. I owned a consulting company for 7 years. It was great, but I have no need or intention of going back down that road.

    So, enough said with all of this stuff about me and my needs. I appreciate people’s concerns and suggestions.

    Let’s put this thread back on track. Please try to limit your comments to the future of privacy in BuddyPress and not about me!

    #64817
    D Cartwright
    Participant

    Np.

    Redownload it in 15 minutes. I messed it up :/

    #64815
    bpinspire
    Participant

    Strange as Admin after I active the plugin and add some links and try to log out I’m getting a blank page breaking the blog. Only when I deactivate the plugin evrything is back to normal. Any idea? Running WP 2.9.1 with BP1.2

    #64814
    finni3
    Participant

    “False consensus effect – the tendency for people to overestimate the degree to which others agree with them.”

    I don´t know if “STOP feature polls” was meant as a joke or not, but I can´t really see why this is a problem (if you are serious). People have different opinions on what is the most important features that should be developed, and what should be included in core.

    For instance, letting users be able to post to blogs from the frontpage sounds like a perfect plugin match for me, as I have no real need for that. Still I don´t go around making several posts (saw you posted at the dev site as well) about how devs should STOP working on frontpage blogposting and focus on xxx feature instead.

    Maybe the false concensus effect have blinded you a bit my friend.

    To me it is important to keep in mind that testbp.org has over 15 000 users. We all have different plans for buddypress. ;)

    The way the dev team are trying to figure out what to develop next seems like a fair way to me:

    (1)First getting suggestions, (2)then adding their professional opinion on what should be devoloped next and lastly (3) letting the users again be a part of the process by allowing us to vote on what we want the most. This will hopefully allow the highest percentage of people to be pleased.

    EDIT: I was a bit slow you posted your reply in the mean time Erich.

Viewing 25 results - 57,601 through 57,625 (of 68,931 total)
Skip to toolbar