Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,651 through 19,675 (of 68,969 total)
  • Author
    Search Results
  • #168869
    @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.

    Techknowledgic
    Participant

    about 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!

    shanebp
    Moderator

    In
    \buddypress\bp-xprofile\bp-xprofile-screens.php

    See
    do_action( ‘xprofile_updated_profile’, bp_displayed_user_id(), $posted_field_ids, $errors );

    Developer ICAN
    Participant

    Thanks hugo

    #168853
    Hugo Ashmore
    Participant

    No 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.

    #168852
    Developer ICAN
    Participant

    Hi,

    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!

    #168846
    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. 🙂

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

    #168837
    @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.

    #168833
    @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

    #168832
    kezako
    Participant
    #168829

    In reply to: 1.7 Download

    meg@info
    Participant
    #168827
    ericreynolds007
    Participant

    Thank 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

    #168824
    Uncle Jimmy
    Participant

    By 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.

    #168819
    oliredman
    Participant

    That’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.

    Georg
    Participant

    Okay, 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!

    @mercime
    Participant

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

    #168814
    Hugo Ashmore
    Participant

    The 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/

    #168811
    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/

    #168807
    oliredman
    Participant

    Got 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!

    #168806
    Hugo Ashmore
    Participant

    Please read the codex documentation, there are guides there on the theme compatibility and template hierarchy – first port of call should always be the docs.

    #168805
    Hugo Ashmore
    Participant

    This is buddypress support, question is probably better served on bbPress support really.

    #168804

    In reply to: 1.7 Download

    aces
    Participant
    #168803
    aces
    Participant
    #168795
    Developer ICAN
    Participant

    Hi,

    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?

Viewing 25 results - 19,651 through 19,675 (of 68,969 total)
Skip to toolbar