Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,676 through 2,700 (of 31,071 total)
  • Author
    Search Results
  • #275200

    In reply to: creating custom layout

    Venutius
    Moderator

    With bp you can overload the user profile pages and replace their code with your own. The templates are located in the plugins/buddypress/bp-templates directory, either bp-legacy or bp-nouveau depending on your config. in that directory you would look in buddypress/members/single and you will see the various profile templates. You overload these by creating alternative files in themes/my-child-theme/buddypress/members/signle/ etc..

    #275173
    arthur836
    Participant

    Step 1: Create a group and a forum
    Step 2: Let users auto-join your group
    Step 3: Have new topics automatically added to your group
    Step 4: Hide the group elements from your theme
    Step 5: Remove any ability to access groups

    #275160
    eriam
    Participant

    Oh thanks for that, but the forums had been deprecated in general? or just in the groups? Cause i’m still having the same error on my forums, do you know about that? (my theme is already updated)

    Actually in my site
    http://kapytal.bisneland.com/wp-content/uploads/2018/07/Captura-de-pantalla-2018-07-11-a-las-12.03.16.png

    Actually in the demo site
    http://kapytal.bisneland.com/wp-content/uploads/2018/07/Captura-de-pantalla-2018-07-11-a-las-12.06.57.png

    Reference: https://aardvark.ghostpool.com/community/forums/

    #275150
    Venutius
    Moderator

    That function has been deprecated, it simply needs to be deleted, are you sure it’s in BuddyPress/members/…? Typically it’s an overload of this file that is at issue, check with your theme creator to see if they need to update.

    #275146
    mbfit
    Participant

    Right now I have this:
    <form action=”” method=”post” class=”standard-form” id=”activation-form”>

    <label for=”key”><?php _e( ‘Activation Key:’, ‘buddypress’ ); ?></label>
    <input type=”text” name=”key” id=”key” value=”<?php echo esc_attr( bp_get_current_activation_key() ); ?>” />

    and that should be overwritten with:

    <form action=”” method=”get” class=”standard-form” id=”activation-form”>
    <form action=”” method=”post” class=”standard-form” id=”activation-form”>
    <label for=”key”><?php _e( ‘Activation Key:’, ‘buddypress’ ); ?></label>
    <input type=”text” name=”key” id=”key” value=”” />
    <input type=”text” name=”key” id=”key” value=”<?php echo esc_attr( bp_get_current_activation_key() ); ?>” />

    This is in my buddypress/bp-legacy/buddypress/members/activate.php
    I’ll assume we should put this in the child theme?

    #275140
    r-a-y
    Keymaster

    Yes, you edit wp-content/themes/pro/buddypress/members/activate.php with the following:
    https://buddypress.trac.wordpress.org/changeset/11766/trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php

    This is mentioned in the sticky thread:

    BuddyPress 3.1.0 is now available!

    #275135
    gnasralla
    Participant

    Hello Keymaster and y’all, I tried changing the theme to WP Twenty fifteen but I still got the same issue when I crop profile images… I get the image handles close together like a bold dot and when I try to expand the handles with the arrow handle the image size and handles get reduced to a tiny dot. Even the loader looks different with the upload button to the side instead of in the middle.

    #275110
    sandrasteen
    Participant

    Hello,I have the same problem, notification and settings pages are not showing. I didnt do any migration in this case, I installed the theme and buddypress from scratch.

    I really need to solve this issue because my client is really on my neck. We have been at it for 2 days now.

    MorgunovVit
    Participant

    WordPress 4.9.7
    BuddyPress 3.1.0
    Theme: OceanWP (but the same problems with Twenty Seventeen v1.6.)

    Hi!

    It seems that I am faced with a problem.
    The new BuddyPress template called Nouveau, fails and stops displaying the navigation menu in the user profile and group profile. The block with the main navigation simply disappears (I mean navigation in which items such as Activity, Friends, Groups, etc. are displayed), only the sub navigation of the section remains.
    I tried to disable all plugins, but navigation did not appear. Also, I changed the theme from the ocean to the WP on Twenty Seventeen – no results. And only after switching from Nouveau to the old BuddyPress template was the navigation displayed.
    Could You help me, please?
    Thanks!

    —————–
    The List of using plugins:
    BadgeOS Version: 1.4.11
    BadgeOS BadgeStack Add-On Version: 1.0.1
    BadgeOS Community Add-On Version: 1.2.4
    BadgeOS LearnDash Add-On Version: 1.0.2
    BadgeOS Suggested Achievements Add-On Version: 1.0.1
    bbPress Version: 2.5.14
    BuddyPress Version: 3.1.0
    BuddyPress for LearnDash Version: 1.2.5
    Elementor Version: 2.1.2
    H5P Version: 1.10.3
    LearnDash & bbPress Integration Version: 2.0.2.1
    LearnDash Course Grid Version: 1.4.1
    LearnDash LMS Version: 2.5.8.2
    LearnDash LMS – Notifications Version: 1.2.0
    LearnDash ProPanel Version: 2.1.3
    Ocean Demo Import Version: 1.0.9
    Ocean Extra Version: 1.4.17
    SVG Support Version: 2.3.15
    Tin Canny LearnDash Reporting Version: 2.9.3
    Uncanny LearnDash Toolkit Version: 2.4.2
    WP Translitera Version: p1.2.5

    #275087
    ectabro
    Participant

    I tryed to desactivate all plugins already, and theme doesn’t cause any probleme, i have buddypress in it

    #275074
    T
    Participant

    If I go to wp-content/themes/pro/buddypress/members > activate.php, the code doesn’t line up with what’s posted in github. Here’s what I have:

    <div id="buddypress">
    
    	<?php do_action( 'bp_before_activation_page' ); ?>
    
    	<div class="page" id="activate-page">
    
    		<?php do_action( 'template_notices' ); ?>
    
    		<?php do_action( 'bp_before_activate_content' ); ?>
    
    		<?php if ( bp_account_was_activated() ) : ?>
    
    			<?php if ( isset( $_GET['e'] ) ) : ?>
    				<p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', '__x__' ); ?></p>
    			<?php else : ?>
    				<p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', '__x__' ), wp_login_url( bp_get_root_domain() ) ); ?></p>
    			<?php endif; ?>
    
    		<?php else : ?>
    
    			<form action="" method="get" class="standard-form cf man" id="activation-form">
    
    				<label for="key"><?php _e( 'Please provide a valid activation key.', '__x__' ); ?></label>
    				<input type="text" name="key" id="key" value="" />
    
    				<p class="submit">
    					<input type="submit" name="submit" value="<?php esc_attr_e( 'Activate', '__x__' ); ?>" />
    				</p>
    
    			</form>
    
    		<?php endif; ?>
    
    		<?php do_action( 'bp_after_activate_content' ); ?>
    
    	</div><!-- .page -->
    
    	<?php do_action( 'bp_after_activation_page' ); ?>
    
    </div><!-- #buddypress -->

    Are you sure I edit this in my theme? Or do I go into this instead? bp-templates/bp-legacy/buddypress/members > activate.php

    #275071
    r-a-y
    Keymaster

    It’s probably something to do with your theme’s CSS if I had to guess.

    Try switching temporarily to one of the WordPress default themes to see if it works. If it does, can you list your theme? Perhaps we can hardcode some CSS rules so the cropping box is correctly-sized.

    #275069
    r-a-y
    Keymaster

    It’s a problem with your theme.

    You need to alter the /members/activate.php template in your theme. The template might be named /registration/activate.php as well:
    https://github.com/buddypress/BP-Default/commit/baa3be909bb353e2a20a16a0e6da5219b4a73627

    Henry Wright
    Moderator

    Check out the “Displaying Extended Profile Fields on Member Profiles” article

    Displaying Extended Profile Fields on Member Profiles

    #275067
    r-a-y
    Keymaster

    If you’re using a custom theme that has overriden the activation template, your problem will occur.

    Read the second point in the following thread for a fix:

    BuddyPress 3.1.0 is now available!

    #275064
    vesterde
    Participant

    I also think this is a bug, but while we wait for an official response, I’ve managed to work around it.

    Technically, this only happens if you’re using the Nouveau template, legacy still works fine.

    There are two steps to fix the issue. Firstly, in your theme folder create the folder(s) buddypress/common/js-templates/messages and inside messages, create index.php.

    Into index.php here, copy the contents of the buddypress plugin file (within the plugin folder) bp-templates/buddypress/common/js-templates/messages/index.

    Inside the newly copied index.php file, go to line 37, where the input named “send_to” is located and change it to this:

    Github gist #1

    That was the first step, the second one is to add the following filter to functions.php:

    Github Gist #2

    That fixed it for me.

    The problem seems to be 2 things.

    Firstly, the link being generated on for the user list view has “…#compose?r=…”, which is meant to use the compose view as a backbone view I presume, but that ends up not switching to the compose at all, so switching out # for / makes it go to the correct location.

    Secondly, the input field has no code (PHP or Javascript within the Backbone engine) that should take the query variable and inject it as the recipients username. The code itself does exist (bp.Nouveau.getLinkParams), I just don’t know why it wasn’t implemented here somehow.

    Hope this helps.

    #275021
    Henry Wright
    Moderator

    You can add CSS to your child theme’s style.css file. That is the usual place to add your custom declarations.

    #275009

    In reply to: Status Updates on Page

    Venutius
    Moderator

    Could you ask your theme developer to raise the bugs with the plugin developers. Strange how they all seem to be giving you issues.

    You could write your own plugin I suppose? Don’t think there’s any other off the shelf options

    #275008

    In reply to: Status Updates on Page

    russ2204
    Participant

    Theme developer says the plugins suggested above are not robust and are buggy.

    Can anyone suggest another option please?

    Venutius
    Moderator

    By default, BP does not put lines under the fields in the register page. presumably it’s your theme that is adding these?

    #274980

    In reply to: Status Updates on Page

    Venutius
    Moderator

    Something with your theme maybe?

    #274949
    akkoxe
    Participant

    I think it is not a problem of plugins or themes, I checked everything, creating another site, deactivate plugins, change themes. But it’s because of the multi-site. Because without multisite it working. Check please.

    #274930
    Venutius
    Moderator

    The activition email that you are sending out has the link formatted exactly the same as I would expect. On my test system when I click that link it automatically populates the input box with the activation key, on your system is does not fill the input box and it needs to be manually pasted in place. Seems to point to something different about your activate.php file. I don’t suppose you’ve made changes to this, or maybe your theme has?

    dekoningalex
    Participant

    Hi,

    When clicked on the activation link in the mail it takes you to the site only to have it say: ‘Please provide a valid activation key.’

    After that is an input field for an activation key. If you copy the key from the url and place it into the input field and press submit it works. Obviously, it should do this automatically and it doesn’t.

    The issue is not theme nor plugin related as it still occurs when the default theme is activated and only the buddypress plugin is activated. All the above mentioned versions are updated to the latest.

    site: https://www.poke-spot.com

    Create an account here to replicate issue: https://www.poke-spot.com/sign-up

    Thanks in advance.

    #274891
    Venutius
    Moderator

    Have you ruled out plugin or theme conflicts?

Viewing 25 results - 2,676 through 2,700 (of 31,071 total)
Skip to toolbar