Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'custom activity page'

Viewing 25 results - 501 through 525 (of 831 total)
  • Author
    Search Results
  • #143429
    tweekage
    Participant

    @WPwebbouw I’m using my own custom theme and used the custom theme plugin for it.

    @modemlooper I have done that. I used one I made in the past that works on other pages and even made another one with the code that was in this forum also and that didnt work. I just cant figure this out haha.

    I noticed all of the pages “members, activity, etc” never needed code int he page for it to work. I did put [bbp-forum-index] in the page for the forum to pop up.

    https://www.dropbox.com/s/0ixigjkptharbms/forums.PNG <– an image of what my page looks like in admin with my options.

    https://www.dropbox.com/s/d0ldzkromrx5l6q/forum%20page.PNG <– Result.

    https://www.dropbox.com/s/jt0j9kbwfd0q22l/fullpage.php <– is the file I currently use which I did remove the sidebar call at the bottom.

    #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?

    #142503
    grafics
    Participant

    Sorry – didn’t explain that very well, too many hours messing with this.
    I am referring to the “My Account” link in the top buddybar. The drop down has the profile, activity, etc links – those are fine. We just want to redirect the top “My Account” link to the custom page.

    #142146
    83 Oranges
    Participant

    I followed 2 steps to successfully display usernames in the BP members directory & other pages instead of default Display names:

    1st step was to install the BP Usernames only plugin: https://wordpress.org/extend/plugins/buddypress-usernames-only/
    This replaced display names across the site by usernames however, when I used the search box on the members directory to search a member, it returned results with members display names again and not usernames. To resolve this, I additionally followed step 2 explained here: http://customwebdesignseo.com/activity/p/3002/

    #141922
    r-a-y
    Keymaster

    You could also wrap modemlooper’s code with a few conditionals:

    `<?php
    // see if the activity component is active and if we’re currently on an activity permalink page
    if ( bp_is_active( ‘activity’ ) && bp_is_single_activity() ) :
    // add our mini activity loop
    if ( bp_has_activities( ‘include=’ . bp_current_action() ) ) :
    while ( bp_activities() ) : bp_the_activity();
    ?>

    <meta property="og:description" content="”/>

    <?php
    endwhile;
    endif;
    endif;
    ?>`

    This can also be turned into a tiny plugin, so if you don’t like adding huge chunks of code into your header.php, you could hook into the ‘bp_head’ action:
    http://pastebin.com/CPAk4D16 (paste the following into wp-content/plugins/bp-custom.php)

    #141721
    @mercime
    Participant

    @websitevala The code provided here is custom to the theme used. Please start a new topic of your own where you should provide more information about your installation.

    #141433
    Hugo Ashmore
    Participant

    Have a read through the compatibility steps again as they are quite detailed.

    Essentially you have things back to front, it’s not the BP markup you are looking for (#container doesn’t actually appear in index pages it’s written to header.php) but you custom themes markup which must be reflected in the BP templates, so at a quick glance comparing page.php to activity/index.php you need to add your themes single_wrap element after #content and move the sidebar call to the position just before #content is closed, in other words your custom themes files are the correct markup structure and you need to replicate that in the BP template pages.

    #141116
    4ella
    Participant

    Hi , sorry I am not able to help you with your thumbnail problem but at least I will bump this thread for you and will ask you how did you get custom post type into activity page ? I have also created custom post type section (with the help of gravity forms form which generate a custom post type post which I see in standalone page) but I can’t get to see it in activity page too, can you post here the code to appear the content of custom post type in the activity page?

    #141091

    In reply to: Group Sub nav links

    lbrocka
    Participant

    Thank modemlooper – I totally agree about unsupported plugins and warned the client, but he is crazy about having this group home page and all the extra info sections. Everything was working well until the last buddypress update. The problem seems to be that both the group frontpage and Activity are directing to mysite.com/group.
    I am thinking that creating a custom activity page may more what we want. building on the trick above – if I create a custom page template, such as group-activity.php – not sure where to put this. We are using a child theme.
    Then – remove the default Activity sub-nav item and add a new custom sub-nav link
    Any reason that won’t work?

    juanmaguerrero
    Participant

    In fact the entire modifications (not only the preloader.gif) are made in the not-ideally-correct way, since all will be gone with any update. I’m asking for help since weeks ago on https://buddypress.org/community/groups/creating-extending/forum/topic/help-at-making-a-plugin-how-to-replace-bp-code/ and now on buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-can-i-make-a-custom-activity-loop-into-a-plugin-that-will-replace-the-default-one/ if I can manage to solve that automation I have all the code ready to pack as a plugin with a lot of improvements. @shawn38 do you know how to get this done?

    #138966
    modemlooper
    Moderator

    A component will create a directory much like members or activity. url.com/recipes

    On a users page it will have a tab recipes that list a users added content. The activity stream in my opinion should not be edited. It’s a listing of all site activity not individual content. That should be added via a component.

    The BuddyPress skeleton component is an example plugin to learn the complexity of creating what you desire

    Norman
    Participant

    I went there and the file I found has the lines applied already.

    I have an update from Parallelus (author of Salutation theme), they are telling me this has to do with the fact I need up update the theme to the newest version. I am using version Version 1.4.3.1 and they released version v1.5.1. On the change log, they list:

    2012-08-07 – Update (v1.5.1)



    Fixed the HTML title element, not showing on home page
    – Updated files:
    header-default.php
    framework/theme-functions/filters-and-actions.php

    Fix for BP avatars on WP post comments
    – Updated files:
    comments.php

    BP admin bar style updates for skins
    – Updated files:
    style-default.css
    style-skin-1.css
    style-skin-2.css
    style-skin-3.css
    assets/images/icons/admin-bar-sprite.png

    Forgot a couple things in the last change log :)
    – Updated files:
    change log.txt

    2012-08-06 – Various updates (v1.5)



    BuddyPress v1.6 compatibility updates
    – Updated files:
    activity/entry.php
    activity/post-form.php
    blogs/blogs-loop.php
    groups/groups-loop.php
    groups/single/forum/topic.php
    forums/forums-loop.php
    members/members-loop.php
    members/single/member-header.php
    members/single/member-header.php
    members/single/messages/messages-loop.php
    members/single/messages/single.php
    assets/css/buddypress.css
    assets/css/source/buddypress.css
    framework/theme-functions/buddypress.php
    framework/data/example-bp-custom.php
    style-default.css
    style-skin-1.css
    style-skin-2.css
    style-skin-3.css
    comments.php

    Fixed a typo reference to “header” in the footer background.
    – Updated files:
    framework/layout-settings/admin-options-footer.php

    Modified the title elemen for better SEO plugin compatability.
    – Updated files:
    header-default.php

    Removed redundant call to duplicate function
    – Updated files:
    framework/theme-functions/buddypress.php

    Fixed BP forum reply textarea height.
    – Updated files:
    assets/css/source/buddypress.css
    assets/css/buddypress.css

    Removed duplicate ‘ago’ in groups loop
    – Updated files:
    groups/groups-loop.php

    Fixed Read more »

Skip to toolbar