Search Results for 'custom activity page'
-
AuthorSearch Results
-
November 16, 2012 at 8:23 am #145122
In reply to: Register page not found/No User Profiles
@mercime
Participant== Activity, Groups and Members pages display on the menu bar, but Register does not? ==
You can just add it to the custom menu in Appearance > Themes
== Also if I try and go straight to the URL (entreacting.com/register) it just takes me to the home page. ==
That happens when you’re logged in and go to the register page. Log out and check if you can go to the register page just to double-check everything’s in working order.
== Also I cannot edit my user profile. when I click me name on the right it takes me to “Page not found” ==
Strange. Re-upload BuddyPress manually to wp-content/plugins/ i.e., via FTP/cpanel/etc.
October 31, 2012 at 5:10 am #144293meandering
ParticipantWow thanks for this amazing help!
I did it and I’m getting excited! (Though I didn’t see the “ tags at all for some reason.)
Some pages still seem to have issues fitting:
http://onlinefashionweek.net/activity/
http://onlinefashionweek.net/members/pataphor/forums/
http://onlinefashionweek.net/members/pataphor/friends/I was thinking it might be easier to remove the sidebar, but I wasn’t sure how to go about it.
On the other hand, this test forum I made fits great!
http://onlinefashionweek.net/forums/forum/test-forum
So maybe if I could make them all fit, maybe with that custom CSS somehow, it would be cool.
Although, on a separate note, I’m not sure why Forums is blank …
http://onlinefashionweek.net/forums
Ai yi yi, my head now officially hurts. : )
Really appreciate this insanely helpful support!
October 30, 2012 at 2:45 pm #144256tvansant
ParticipantI found a way to make the default page for members to be the profile page.
`http://www.buddyboss.com/making-profile-the-default-landing-page-in-buddypress/`
and
`https://codex.buddypress.org/extending-buddypress/bp-custom-php/`October 26, 2012 at 8:44 pm #144042Sean Infinitee
ParticipantHey guys-hoping you can help me figure out what I’m doing wrong…if I can’t hide or remove the “community” tab then it would seem to be a pretty simple concept to change the order of the tab, but no luck with the above…not that php or css savvy but the instructions here are pretty straightforward so any help is appreciated!
Using latest wordpress version and just installed buddypress yesterday so I would assume it is also the latest version.
My website is http://www.defendersofturntablism.org
I added the line `define( ‘BP_DEFAULT_COMPONENT’, ‘preferred_default_tab’ ); to wp-config.php above ‘//MySQL settings – You can get this info from your web host **//`
Created bp-custom.php in plugins folder and added
`function bbg_change_profile_tab_order() {
global $bp;$bp->bp_nav = 10;
$bp->bp_nav = 20;
$bp->bp_nav = 30;
$bp->bp_nav = 40;
}
add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );`Unfortunately all this has done is add the above line of code to the header of my site…can anyone help me figure this out??! Seems like it should be very simple. Ideally I want to have see the community tab go away and have the members section contain the buddypress activity, groups, forums, etc.
Thanks in advance!!
October 25, 2012 at 4:41 am #143918EthanVan
SpectatorWe have started out with the following plugins and will be tailoring them to our specific needs:
BP (Obviously)
BP Profile As Homepage
BP Activity Stream Hashtags
BP Docs
BP Friends Online
BP Profile Privacy
BP reCAPTCHA
BP Verified
WP Custom Login Page
Easy Instagram
BP Skeleton Component (for all custom plugins)The above mentioned plugins (aside from BP) will be highly modified and contain only traces of the original code. Credit will be given to the original developers for the provision of the base plugin state and inspiration that leads us to our end result.
October 18, 2012 at 2:47 pm #143652In reply to: Need help with Custom Code
shanebp
Moderatorimo, It’s not clear what you’re trying to do.
On a ‘single activity page’ – you mean the profile activity page for a specific member ?And on that page you want to display, in a sidebar, the 20 most recent updates from all users ?
In your code, you’re only looking for updates that include an image [bpfb_images]
So you only want the 20 most recent updates from all members that include an image ?
If so, you’d be better off writing a custom query. Then you won’t have to do all that string parsing.October 16, 2012 at 9:09 am #143526In reply to: Changing slugs with bp-custom.php: No change!
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: newslugforgroupsThis seems to only occur in the activity feed – everywhere else, your suggestion seems to work just fine.
October 14, 2012 at 7:38 pm #143429In reply to: Making Forum page full screen
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.
October 12, 2012 at 9:36 pm #143367In reply to: Posting to activity stream issues
fibis
ParticipantI’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.1Now 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?
September 26, 2012 at 10:03 pm #142503In reply to: change “My Account” link
grafics
ParticipantSorry – 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.September 20, 2012 at 12:46 pm #142146In reply to: display username in members directory
83 Oranges
ParticipantI 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/September 17, 2012 at 7:27 pm #141922In reply to: Activity content outside the loop, in the head?
r-a-y
KeymasterYou 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)September 14, 2012 at 8:58 pm #141721In reply to: Activity Page Help Please
@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.
September 11, 2012 at 11:27 am #141433In reply to: [Resolved] Buddypress fixing alignment issues
Hugo Ashmore
ParticipantHave 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.
September 6, 2012 at 11:15 am #1411164ella
ParticipantHi , 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?
September 6, 2012 at 1:39 am #141091In reply to: Group Sub nav links
lbrocka
ParticipantThank 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?September 4, 2012 at 8:15 pm #140997juanmaguerrero
ParticipantIn 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?
August 9, 2012 at 3:26 pm #138966In reply to: Customizing Status updates
modemlooper
ModeratorA 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
August 8, 2012 at 5:18 pm #138851Norman
ParticipantI 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.phpFix for BP avatars on WP post comments
– Updated files:
comments.phpBP 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.pngForgot a couple things in the last change log
– Updated files:
change log.txt2012-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.phpFixed a typo reference to “header” in the footer background.
– Updated files:
framework/layout-settings/admin-options-footer.phpModified the title elemen for better SEO plugin compatability.
– Updated files:
header-default.phpRemoved redundant call to duplicate function
– Updated files:
framework/theme-functions/buddypress.phpFixed BP forum reply textarea height.
– Updated files:
assets/css/source/buddypress.css
assets/css/buddypress.cssRemoved duplicate ‘ago’ in groups loop
– Updated files:
groups/groups-loop.phpFixed Read more »