Search Results for 'buddypress'
-
AuthorSearch Results
-
July 26, 2013 at 6:22 pm #168869
In reply to: Theme compatibility issue
@mercime
Participant@robsimm the code you posted in pastebin.com shows you didn’t make any changes to the BP template files to make it compatible with your CStar theme. Cool. D
Based on the premise above, create a new file named buddypress.php and post the code found at http://pastebin.com/5uzN2S8a Save file and upload to your theme folder in server.
July 26, 2013 at 4:08 pm #168865Techknowledgic
Participantabout the size of the images I think it’s a CSS problem and I will try to get I solved
about the second problem I found the registration page but there is no registration button
here is the log in page or the main forum page http://www.techknowledgic.com/forums
and here is the registration page which I found it after I click on the log in which I will be redirected to this page http://www.techknowledgic.com/wp-login.php and then I have to click register and I go to this page http://www.techknowledgic.com/buddypress/register
so please guys anyone can help me get the registration button to the maain forums page?
Thanks!
July 26, 2013 at 1:30 pm #168857shanebp
ModeratorIn
\buddypress\bp-xprofile\bp-xprofile-screens.phpSee
do_action( ‘xprofile_updated_profile’, bp_displayed_user_id(), $posted_field_ids, $errors );July 26, 2013 at 1:20 pm #168855Developer ICAN
ParticipantThanks hugo
July 26, 2013 at 10:53 am #168853Hugo Ashmore
ParticipantNo the whole point of the bundled styles is not to lend any particular visual styles over and above basic layout stuff otherwise it would have never been possible to implement BP theme compatibility, these styles have to slot into any theme, themes we have no way of predicting in terms of their own visual style. it is up to you to add whatever additional styles you need for BP to sit with your theme.
Or find a theme that has been pre-built to use BP.
July 26, 2013 at 10:00 am #168852Developer ICAN
ParticipantHi,
Yeah i see those files thanks! i was just asking whether there was any nice style i could just apply to it rather than downloading a full theme!
Thanks in advance!
July 26, 2013 at 8:00 am #168846In reply to: [Resolved] Registration/Activation Broken
Uncle Jimmy
Participant@mercime lol ..I forgot to mention my theme didn’t have a page.php file!, ha! ..so when I dropped one in there, poof! there was my reg/act pages..Made my day! lol, and yes, my other pages seemed fine..just lucky grappling around if ya ask me, lol.
The theme is as basic as they come so I could build from the ground up, but your right!, if it would have been a purchased theme from RocketTheme [with most assuredly a page.php file] it would have blown my site to bits! lol!
As to forum assistance – I totally understand and deeply appreciate you all with all my heart, you wonderful people have brought open source to the table and I love you all! My entire site is WordPress/BuddyPress/bbPress and is only possible because of you all.
I apologize if my remark sounded offensive, I certainly didn’t mean for it to.
I am having other issues with BuddyPress but I’ll tackle those one Topic at a time now that I’m get’n familiar with the many Forums BuddyPress.org has.
Most people probably do have Themes with page.php files so I WAS fortunate in this case and it probably is an unusual case.
I’m more of an artist than a code junky but it has become necessary for me to familiarize myself with it to deal with a perpetual shoestring budget. I do hope to not be too much of a pest around here.
Again, thanks so much for being here. 🙂
July 26, 2013 at 6:58 am #168842In reply to: [Resolved] Recent active members widget by group
ananwebman
Participant/*** RECENTLY ACTIVE WIDGET *****************/ class BP_Core_Recently_Active_Widget extends WP_Widget { function __construct() { $widget_ops = array( 'description' => __( 'Avatars of recently active members', 'buddypress' ), 'classname' => 'widget_bp_core_recently_active_widget buddypress widget', ); parent::__construct( false, $name = _x( '(BuddyPress) Recently Active Members', 'widget name', 'buddypress' ), $widget_ops ); } function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', $instance['title'] ); echo $before_widget; echo $before_title . $title . $after_title; ?> <?php if ( bp_has_members( 'user_id=0&type=active&per_page=' . $instance['max_members'] . '&max=' . $instance['max_members'] . '&populate_extras=1' ) ) : ?> <div class="avatar-block"> <?php while ( bp_members() ) : bp_the_member(); ?> <div class="item-avatar"> <a href="<?php bp_member_permalink() ?>" title="<?php bp_member_name() ?>"><?php bp_member_avatar() ?></a> </div> <?php endwhile; ?> </div> <?php else: ?> <div class="widget-error"> <?php _e( 'There are no recently active members', 'buddypress' ) ?> </div> <?php endif; ?>Can I change from Member Id to group ID around here please?
July 26, 2013 at 2:45 am #168837In reply to: Weird theme integration
@mercime
Participant@hugodisasters
– Change to Twenty Twelve theme and check the BP pages if has at least some styles applied.
– View source code of site to check if the files I mentioned above are in source.If yes to both, then something’s blocking BP from enqueueing BP’s JS and CSS files in your deTube theme. Check theme’s functions.php file if there’s something like add_theme_support(buddypress). If so, remove it.
July 26, 2013 at 12:58 am #168833In reply to: Changing Single Group Page Layout
@mercime
Participant@ericreynolds007 the single group’s home.php documents clearly which template file goes with which element of the component https://buddypress.trac.wordpress.org/browser/tags/1.8/bp-templates/bp-legacy/buddypress/groups/single/home.php
July 26, 2013 at 12:53 am #168832In reply to: Favorite activity counter, Bug ?
kezako
Participantok i find an open ticket : https://buddypress.trac.wordpress.org/ticket/3794
July 26, 2013 at 12:18 am #168829In reply to: 1.7 Download
July 25, 2013 at 11:34 pm #168827In reply to: Changing Single Group Page Layout
ericreynolds007
ParticipantThank you. I appreciate the help. What’s the best way to identify the template it’s using? Just go through the hierarchy of template files that Buddypress uses for a single group? 🙂 Eric
July 25, 2013 at 11:11 pm #168824In reply to: [Resolved] Registration/Activation Broken
Uncle Jimmy
ParticipantBy copying [page.php] from this directory;
/christianitees/wp-content/plugins/buddypress/bp-themes/bp-default/page.php
to this directory;
/christianitees/wp-content/themes/rt_gantry_wp/page.php
my Registration and Activation Pages immediately appeared…wahoooo!
Guess I’d call this RESOLVED!
The repeatedly referred to [https://codex.buddypress.org/developer/theme-development/template-hierarchy/#base-templates] clued me what to do.
Hope this helps someone cause I didn’t get a response from the forum.
July 25, 2013 at 7:14 pm #168819In reply to: Edit Buddypress Registration Page Template
oliredman
ParticipantThat’s what I read – but the way my site is built it uses a lot of partially-customised plugins which all need to interact with each other in non-standard ways, so I don’t want to upgrade them without testing them all together first; I’ll stick with 1.7 for the moment. Thanks again.
July 25, 2013 at 7:10 pm #168818Georg
ParticipantOkay, at least I found out roughly whats happening: The buddypress legacy group forums (which I have since I started a community originally with buddypress 1.6x) is working fine in 1.8. However, newly created legacy group forums in 1.8 do give above error notice and the forums do not work at all.
Was this mentioned somewhere in the update notes? If not, it should be, because it created quite some trouble.
Even worse then is what I described above, that I can’t simply switch and convert to the new bbpress 2.3 group forums, since then all attachments are lost to normal user interface (and since we have several hundred documents attached, manually reassigning them somehow is not an option).
For now, I had to switch back to buddypress 1.7.3 where newly created groups have functioning forums and the attachments using U Forum Buddypress Attachments plugin are included.
I had a rough look at the sql database and can’t imagine an easy quick way to migrate attachments from U Forum Buddypress Attachments plugin to e.g. GD bppress attachments, which would work with bbpress 2.3 group forums.
Does anyone have a clue whether and how that would be possible in an automated way? Otherwise I can’t update buddypress without losing functionality of either creating new groups with working forums or losing all previous attachments in posts!
July 25, 2013 at 6:49 pm #168816@mercime
ParticipantIs there some default CSS i can get anywhere just to style up my community in a default way as i’ve no styles currently set in my theme for BuddyPress?
Strange. BP Theme Compatibility enqueues buddypress.css and buddypress.js – can you check in source code if you can see reference to both? What theme are you using?
July 25, 2013 at 6:22 pm #168814In reply to: Changing Single Group Page Layout
Hugo Ashmore
ParticipantThe codex is your friend, please check for guides there first.
This page ought to explain your templating options, you should be able to work out how to manage a modified layout from this:
https://codex.buddypress.org/developer/theme-development/template-hierarchy/July 25, 2013 at 5:24 pm #168811In reply to: Edit Buddypress Registration Page Template
Hugo Ashmore
Participant?
You can use a file named buddypress.php this will be used ahead of page.php if found, you can edit that as much as you’d like.
In BP 1.8 we have extended this to be far more flexible to use component names or actions, etc.
You perhaps needed to read this page or perhaps you did and just haven’t upgraded?
https://codex.buddypress.org/developer/theme-development/template-hierarchy/July 25, 2013 at 3:58 pm #168807In reply to: Edit Buddypress Registration Page Template
oliredman
ParticipantGot it – doesn’t look like it’s doable in 1.7xx, as according to the codex BP can only use one template for all BP pages. When I upgrade I’ll have another look. Thanks, Hugo!
July 25, 2013 at 3:52 pm #168806In reply to: Edit Buddypress Registration Page Template
Hugo Ashmore
ParticipantPlease read the codex documentation, there are guides there on the theme compatibility and template hierarchy – first port of call should always be the docs.
July 25, 2013 at 3:46 pm #168805In reply to: Sitewide Forum statistics
Hugo Ashmore
ParticipantThis is buddypress support, question is probably better served on bbPress support really.
July 25, 2013 at 2:48 pm #168804In reply to: 1.7 Download
July 25, 2013 at 2:45 pm #168803In reply to: How to change the text i Groups
aces
ParticipantJuly 25, 2013 at 1:45 pm #168795In reply to: How to: Modify the bp admin bar
Developer ICAN
ParticipantHi,
I’ve trying to mimic the functionality of the BP admin bar in the latest release of BuddyPress – thats 1.9 – can someone point out how i can do this? I want to place it somewhere else on my site and t urn off the top one?
-
AuthorSearch Results