Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 42,826 through 42,850 (of 68,948 total)
  • Author
    Search Results
  • #103573
    Hugo Ashmore
    Participant

    @espeon
    If you had actually read that codex page in the second link without dismissing it as not what you wanted (what did you want? I suspect what has been offered above!) then you would have noted this line:
    We’re going to modify the ‘My Blogs’ menu without changing the core code

    Operative words there are “without changing core code”

    When you come to a tech forum that offers help you need to bear in mind that the prerequisite to gaining that help is that you demonstrate a willingness to get involved and to be seen to help your self as much as possible; please do not think that on a voluntary help forum that there is any obligation to help people it’s a co-operative process, and attitude of any sorts is never taken well! :)

    You now have a function that looks on the surface to do what you require, and which you now test by adding to your functions file in your theme.

    it’s important though that because some code has been provided that this isn’t perceived as the norm or that the forum is a coding service – the provision of code in this manner is up to each and every member to decide if they wish to provide and often it will be but it mustn’t be taken for granted.

    zkwc
    Participant

    @pcwriter @thealchemist

    woohoo! that worked for my forums too! :) i am one happy camper. now hopefully my forums will stay clean! yay!

    anyone know the code for profiles? would one just replace “profile” for “group” in the code for forums? thinking that there would be MORE to that, but I’m all ears. :)

    thank you for testing @pcwriter !

    #103565
    Virtuali
    Participant
    function add_welcome_message() {
    global $current_user;
    get_currentuserinfo();
    $author = $current_user->display_name;
    if ( is_user_logged_in() ) {
    echo "
    <li>Welcome <strong>" . $author . "</strong></li>
    
    ";
    echo '
    <li><a href="' . wp_logout_url( site_url() ) . '">' . __( 'Log Out', 'buddypress' ) . '</a></li>
    
    ';
    } else {
    echo "
    <li>Welcome <strong>Guest</strong></li>
    
    ";
    }
    }
    add_action( 'bp_adminbar_menus', 'add_welcome_message', 15 );
    

    Add in the remove_action( ‘bp_adminbar_logo’, ‘bp_adminbar_logo’ ); if you wish.

    @mercime
    Participant

    @stars4321 yeah, BP Nicey is a child theme of bp-default and most probably wouldn’t have cause the registration glitch. Change to bp-default theme, deactivate recaptcha and plugins other than BuddyPress and see if /register/ still goes to home page.

    @mercime
    Participant

    @Ann_Whitt_Wen running BP Template Pack moves the following 13 files within 6 major folders to your active WP theme: https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#revise-templates. Looks like member folder files are missing. Double-check via FTP/cPanel that those 13 files are there. If not, go through the BP Template Pack process again. Or, copy over the missing files/folders from BP Template Pack plugin to your active theme while maintaining folder/file structure.

    #103562
    @mercime
    Participant

    == The links you provided linked me to a codex do_action hook page, which is nothing I want. I don’t need hooks.==

    @espeon the information contained in linked documents given by @nahummadrid may be nothing you want but those are what you need in order to modify the adminbar. No reason for sarcasm.

    #103559
    @mercime
    Participant

    @NrFive That was the layout of the BuddyPress parent theme pre-BP 1.2. It’s do-able but not easy as A-B-C.

    == every user created blog to be part of the main site ==
    It can be as simple as making your blog a multi-author blog in a single WP install. But even if you go multisite, you can achieve the same look and feel by creating the child theme and just changing main navigation in header.php to get navigation of main site with BP.

    #103556
    NrFive
    Participant

    Extra note:

    Trying to achieve this look & feel:
    http://ayudawordpress.com/wp-content/uploads/2008/06/blog-buddypress.jpg

    With pretty much every user created blog to be part of the main site…

    @mercime
    Participant

    @pjnu at least we know that there’s no error if you’re using bp-default theme, so it’s not a BuddyPress issue at all. What theme are you using exactly? Have you read your theme docs whether it requires activation of a membership plugin? I would contact theme author especially if it’s a premium theme for support. Good luck.

    #103552
    NrFive
    Participant

    Getting some errors trying to achive this

    `define(‘WP_DEFAULT_THEME’, ‘twentyten’);
    define( ‘TEMPLATEPATH’, ‘/customers/gameshrine.org/gameshrine.org/httpd.www/wp-content/themes/fishbook-buddypress-buddypack’); `

    This however does not work and gives me a blank screen, asked andrea hope she knows something.
    I’m guessing it’s a PHP error, but my webhost isn’t showing it… quite annoying trying to figure out the error….

    #103548
    PJ
    Participant

    Alright, that makes sense. Thank you @djpaul .

    PJ
    Participant

    @mercime

    WP=3.0.4
    BP=1.2.7

    Tried bp-default and didn’t see the error. Any thoughts on where I should look for that in the theme or ways to omit it? Thanks.

    #103543
    Nahum
    Participant

    i’d try removing the logo something like this in your functions.php or bp-custom.php…

    remove_action( ‘bp_adminbar_logo’, ‘bp_adminbar_logo’ );

    …and try applying your welcome message start here & here:

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/modifying-the-buddypress-admin-bar-not-working-in-bp-customphp/
    https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/

    #103530
    stoi2m1
    Participant

    @nahummadrid, Thanks for the response.

    You’ve got me thinking that I already have an issue then.

    For instance I have a page named music. The URL for it is myblog.com/music.

    If a user signed up and made their username music then their blog URL would be the same myblog.com/music.

    Or am I missing something?

    Maybe a prefix can be added to the blogs like what has been done for all of the other elements within wordpress.

    youlichika
    Member

    I find it, in admin dashboard, buddypress setting -> Profile Field Setup.

    #103501
    Nahum
    Participant

    You should be able to create a page called Activity and go to your wp >> reading >> settings and change it to static page and choose your activity page. that should put your activity stream up on the front page.

    but if you really want something like the twitters as you say..then those are not really live tweets happening. they are editorially run through a continous loop like the plugin you provided. thats what I think is what you’d want to do. I’ve been looking into the same thing for a while and it turns out it’s better to run the most recent Xnumber of activity updates in a scrolling activity loop so it looks active. running the activity refresh isn’t necessarily going to give you that same effect on the homepage if you don’t have constant activity. the closest to reaching this is the activity bar plugin, it just needs to display more than one activity at a time to accomplish this.

    Here’s some other related threads:
    https://buddypress.org/community/groups/creating-extending/forum/topic/scrolling-activity/
    https://buddypress.org/community/groups/buddypress-activity-stream-bar/forum/topic/scrolling-activity-display/

    Good luck. looking forward to seeing this hit the stage.

    #103498
    billy1111a
    Member

    Great! I just installed this one: https://buddypress.org/community/groups/rs-buddypress-activity-refresh/

    And it works great on my profile pages, but is the a way I can display the site wide activity on the homepage with some code?

    #103497
    Nahum
    Participant
    #103495
    Hugo Ashmore
    Participant

    Please read through this post and try a manual install for the reasons noted in that post.
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/forums-posting-problems-the-definitive-post/

    That needs to be attempted before being able to help that much further, this issue of forum error creating new topic crop up frequently and the solutions covered a few times in threads, it’s a cas of finding the right one for the circumstances.

    Also please try searching on a topic before posting as you may well find the answers or steps to follow without needing to post afresh.

    Try a search on ‘forum posting’ it returns quite a few threads on the subject.

    #103494

    Hello! I completed my first install of WordPress / Buddypress today and was extremely excited about switching after seeing how easy everything was to install…so impressive, I love it! However, I’ve been struggling all day with the “There was an error when creating the topic” issue mentioned above. I searched for hours on the Internet trying to find a solution and was thrilled to see this post! But unfortunately, nhla’s suggestion to check and uncheck the ‘Enable Discussion Forum’ didn’t work for me. :0( I desperately want a forum for my Word Press so I looked into installing the SimplePress plugin, but…. would definitely prefer to go the Buddypress route.

    Are there any other suggestions/fixes for this problem?

    I’m using a “one click install” of Word Press v3.0.4, and Buddypress v1.2.7.

    Any help or suggestions would be greatly appreciated, I don’t want to give up on Word Press!

    #103487
    @mercime
    Participant

    @r-a-y staying tuned for sure :-)

    sevenos
    Member

    Yes, actually I did open a ticket about this but they didn’t answer while they answer all my other tickets instantly. I’ll open another ticket adding what you’ve told me and try again.

    Thanks for the help after me admitting how few I know about WP :)

    #103480
    dyerrington
    Member

    I had some time earlier to create a little spider that basically:

    – Scans the extensions page (all 12 pages!) for the direct URL’s of each plugin
    – Extracts meta-data from each of the pages (title, rating, downloads, last updated, compatible, requires.. etc)
    – Normalizes a little bit
    – Dumps to text file for database import or CSV

    Anyhow, for about 30 minutes worth of work, I was able to get most of the meta-data into a report. Some pages threw errors, probably because I didn’t set a delay between fetches or something but I could easily improve on this and cron the process into a database. Anyhow, I was mostly curious about searching through the extensions more effectively. Here’s a sampling of the top 20 or so by downloads:

    # | Title, Version, Updated, Requires, Compatible, Downloads
    1 | Plugin: BuddyPress 1.2.7 92 days ago 3 3.0.4 446618
    2 | Plugin: W3 Total Cache 0.9.1.3 126 days ago 2.8 3.0.4 263812
    3 | Plugin: MapPress Easy Google Maps 2.28 70 days ago 3 3.0.4 120369
    4 | Plugin: All in One Webmaster 6.9.9.3 44 days ago 2.9 3.1 117468
    5 | Plugin: Tweet Blender 3.2.4 50 days ago 2.8.0 3.0.4 81710
    6 | Plugin: WP-Hashcash 4.5.1 296 days ago 2.9.2 71257
    7 | Plugin: Login With Ajax 3.0.3 53 days ago 2.8 3.0.4 60193
    8 | Plugin: Codestyling Localization 1.99.7 121 days ago 2.5 3.0.4 50702
    9 | Plugin: Transposh – translation filter for wordpress 0.7.0 10 days ago 2.8 3.1 40218
    10 | Plugin: Post video players, slideshow albums, photo galleries and music / podcast playlist 1.95 2 days ago 2.0.2 3.0.4 36651
    11 | Plugin: Author Avatars List 1 121 days ago 2.8 3.0.0 32541
    12 | Plugin: Buddypress-Ajax-Chat 1.3.8 31 days ago 2.9.1,1.2 30325
    13 | Plugin: BuddyPress Media 0.1.8.7 14 days ago 2.9,1.2 3.0.4,1.2.7 26729
    14 | Plugin: Twit Connect 2.56 77 days ago 2.7.0 3.0.4 20029
    15 | Plugin: Welcome Pack 2.1 223 days ago 2.9.x,1.2.3 3.0,1.2.4.1 17864
    16 | Plugin: Invite Anyone 0.7.1 51 days ago 2.8,1.1 3.0.1,1.2.7 16969
    17 | Plugin: BuddyPress Links 0.5 91 days ago 5.2,3.x,1.2.6 5.2.x,3.x,1.2.6 15916
    18 | Plugin: BuddyPress Group Email Subscription 2.7.9 46 days ago 2.9.1 1.2 3.0.1 1.2.5.2 15806
    19 | Plugin: BuddyPress Like 0.0.8 53 days ago 2.9 3.0.4 14836

    #103479
    calvinhsu
    Participant

    @acaps2007
    What I’ve found finally:

    (It’s based on this article:
    http://easyoutsource.com/blog/how-to-code-a-custom-adminbar-in-buddypress/)

    So if you just set your adminbar to be hidden in css rather than completely disable it in the wp-config.php, you could use to call the notification menu.

    If you’ve completely disabled adminbar, then use the following code instead(it’s copied from bp-core-adminbar.php):

    <?php
    global $bp;
    
    if ( !is_user_logged_in() )
    return false;
    
    echo '<li id="bp-adminbar-notifications-menu"><a>loggedin_user->domain . '">';
    _e( 'Notifications', 'buddypress' );
    
    if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    <span></span>
    <?php
    }
    
    echo '</a>';
    echo '<ul>';
    
    if ( $notifications ) {
    $counter = 0;
    for ( $i = 0; $i < count($notifications); $i++ ) {
    $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
    
    <li></li>
    
    <?php $counter++;
    }
    } else { ?>
    
    <li><a href=&quot;loggedin_user->domain ?>"></a></li>
    
    <?php
    }
    
    echo '</ul>';
    echo '</li>';
    ?>
    

    And as I have found out, the js effect (what you called the “mouse over” effect) is dealt automatically by bp-themes/bp-default/_inc/global.js

    In my case, I’m building a child theme of bp-default, so I don’t have to worry about js, just copy and paste css codes from bp-themes/bp-default/_inc/css/adminbar.css and adjust selectors accordingly.

    If you are not building a child theme of bp-default, then maybe you can try search in the global.js and make some copy and past.

    Good luck !

    #103476
    modemlooper
    Moderator

    Make sure the page.php file looks like this http://paste.ly/4Dyc

    Note: the comments template part

Viewing 25 results - 42,826 through 42,850 (of 68,948 total)
Skip to toolbar