Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1,326 through 1,350 (of 32,488 total)
  • Author
    Search Results
  • Mathieu Viet
    Moderator

    Hi @jozifirecracker,

    What’s the theme name you are using?

    #316135
    haitianguy
    Participant

    Hi, i feel like im doing this properly but i never get the right result. i have a custom meta called “featured” in activity meta. For testing purposes the meta values are 1,2,3,4 my goal is to have an activity loop order activities by the meta value. i’ve checked the documentation and i came up with this.

    
    <?php
    
    get_header(); ?>
    
    <?php get_template_part('page-parts/general-title-section'); ?>
    
    <?php get_template_part('page-parts/general-before-wrap');
    
    $atts =  array(
    			'title'            => 'Latest Activity',// title of the section.
    			'pagination'       => 1,// show or not.
    			'load_more'        => 0,
    			'display_comments' => 'threaded',
    			'include'          => false,     // pass an activity_id or string of IDs comma-separated
    			'exclude'          => false,     // pass an activity_id or string of IDs comma-separated
    			'in'               => false,     // comma-separated list or array of activity IDs among which to search
    			'sort'             => 'DESC',    // sort DESC or ASC
    			'page'             => 1,         // which page to load
    			'per_page'         => 5,         // how many per page.
    			'max'              => false,     // max number to return.
    			'count_total'      => true,
    
    			// Scope - pre-built activity filters for a user (friends/groups/favorites/mentions).
    			'scope'            => false,
    
    			// Filtering
    			'user_id'          => false,    // user_id to filter on
    			'object'           => false,    // object to filter on e.g. groups, profile, status, friends
    			'action'           => false,    // action to filter on e.g. activity_update, new_forum_post, profile_updated
    			'primary_id'       => false,    // object ID to filter on e.g. a group_id or forum_id or blog_id etc.
    			'secondary_id'     => false,    // secondary object ID to filter on e.g. a post_id.
    
    			// Searching
    			'search_terms'     => false,         // specify terms to search on.
    			'use_compat'       => bp_use_theme_compat_with_current_theme(),
    			'allow_posting'    => false,    // experimental, some of the themes may not support it.
    			'container_class'  => 'activity',// default container,
    			'hide_on_activity' => 1,// hide on user and group activity pages.
    			'for'              => '', // 'logged','displayed','author'.
    			'role'             => '', // use one or more role here(e.g administrator,editor etc).
                'for_group'        => '',// group slug.
    		);
    
    		$atts['meta_query']= array(
                                        array(
                                            'key' => 'featured',
                                            'value' => '0',
                                            'type' => 'numeric',
                                            'compare' => '!=',
                                            ),
                                            'meta_type' => 'numeric',
                                    'orderby' => 'meta_value_num',
                                    'meta_key' => 'featured',
                                    'order' => 'DESC'
                                    );
    
     ?>
    			<div id="buddypress">
    	
    
    		<?php do_action( 'bp_before_activity_loop' ); 
    		
    		
    		
    	
    
    if ( bp_has_activities( $atts ) ) : ?>
    
                <div class="<?php echo esc_attr( $atts['container_class'] ); ?> 
                <?php if ( ! $atts['display_comments'] ) : ?> hide-activity-comments<?php endif; ?>">
    
                    <ul id="activity-stream" class="activity-list item-list">
    
    					<?php while ( bp_activities() ) : bp_the_activity(); ?>
    						
    						<?php bp_get_template_part( 'buddypress/activity/entry' ); ?>
    					<?php endwhile; ?>
    
    					<?php if ( $atts['load_more'] && bp_activity_has_more_items() ) : ?>
                            <li class="load-more">
                                <a href="<?php bp_activity_load_more_link() ?>"><?php _e( 'Load More', 'buddypress' ); ?></a>
                            </li>
    					<?php endif; ?>
                    </ul>
    
    				<?php if ( $atts['pagination'] && ! $atts['load_more'] ) : ?>
                        <div class="pagination">
                            <div class="pag-count"><?php bp_activity_pagination_count(); ?></div>
                            <div class="pagination-links"><?php bp_activity_pagination_links(); ?></div>
                        </div>
    				<?php endif; ?>
    
                </div> 
    
            <?php else : ?>
                <div id="message" class="info">
                    <p><?php _e( 'Sorry, there was no activity found. Please try a different filter.', 'buddypress' ); ?></p>
                </div>
            <?php endif; ?>
            
    ?>
    			</div>
    		
    
    		<?php do_action( 'bp_after_activity_loop' ); ?>
    
    <?php get_template_part('page-parts/general-after-wrap'); ?>
    
    <?php get_footer(); ?>
    

    everything here works except for the order. for some reason it always orders by activity ID. am i missing something here? Thanks in advance im going crazy with this.

    #316125
    jshawpro
    Participant

    Hi.
    I’m having an issue with Groups that causes the activity to show “Load More” instead of showing latest group updates/posts. Filters also do not work for me on group activity stream.

    I have it setup to show the groups Activity feed by default instead of a homepage for the group.

    If set a homepage for the group and then navigate to ‘Activity’ everything works as it should.
    Filters work. However, my requirement is to have latest posts load first by default.

    I’m using Buddypress Nouveau on a custom WordPress theme based on Underscores.

    Any insight or troubleshooting ideas would be greatly appreciated!

    All the best,
    Justin

    #316123
    techbot
    Participant

    Well, I downloaded the 2019 theme, disabled all plugins and deleted the Buddypress plugin. Then I re-uploaded the Buddypress plugin fresh… still no pages πŸ™ I’ve tried both uploading the .zip from my computer AND searching through the WordPress plugins panel.
    I’m at a loss here. To be fair, it DOES say that it’s untested with WordPress 5.6. I just noticed that

    #316120
    iamthewebb
    Participant

    ahh no you certainly should not be missing all that, it may be worth disabling, deleting the plugin then re-installing and activating with default theme (2019) and other plugins disabled.
    Either some files are missing or another plugin is interfering with the initial setup process.

    #316116
    techbot
    Participant

    I’m using Buddypress 6.4.0 on WordPress 5.6 and it’s not installing the default pages. I’ve tried this with the Twenty Twenty default theme as well as dropping all my other plugins for the install, but it’s just not creating those pages πŸ™ I don’t want to list my website here, as it contains adult material, but any suggestions would be appreciated

    #316073
    larnoult
    Participant

    Hey,
    A lot of my (impatient) users double or triple click on the “post update” button (#aw-whats-new-submit), thus creating duplicated activities.
    I only found this 5 year old topic , where @henrywright suggested to insert jquery code in the post-form.php (in a child theme). Which I did:

    <?php
    /**
     * BuddyPress - Activity Post Form
     *
     * @version 3.1.0
     */
    
    ?>
    
    <?php
    /*
     * Template tag to prepare the activity post form checks capability and enqueue needed scripts.
     */
    bp_nouveau_before_activity_post_form();
    ?>
    
    <h2 class="bp-screen-reader-text"><?php echo esc_html_x( 'Post Update', 'heading', 'buddypress' ); ?></h2>
    
    <div id="bp-nouveau-activity-form" class="activity-update-form"></div>
    <script>
    
        jQuery( 'input#aw-whats-new-submit' ).click( function() {
    		jQuery( "input#aw-whats-new-submit ").attr( "disabled", true );
    		jQuery(this).addClass( "loadingBP" );	
        });
    </script>
    <?php
    /*
     * Template tag to load the Javascript templates of the Post form UI.
     */
    bp_nouveau_after_activity_post_form();
    

    Unfortunately, clicking on the button (although it’s the right selector) does not trigger the jQuery event.. I’m puzzled! Any help welcomed!
    Thanks

    #316071
    Candace
    Participant

    I tried the themes 2020 and 2021. It doesn’t show up in those themes either.

    I have only made changes to CSS, not template changes or overrides

    #316070
    iamthewebb
    Participant

    ahh apologies, not sure why the top nav didn’t load for me on one of the pages.
    Have you switched themes to 2019 or similar to ensure it does appear, if it does do you overload any files in your theme? Alas this isn’t my area of expertise, although little is πŸ˜‰

    #316063
    Candace
    Participant

    WordPress 5.6
    BuddyPress 6.4

    I recently installed BuddyPress. Everything was working fine, but now the main nav on the profile page disappeared except on the profile homepage.

    So I see it here: https://cloudninemeeple.com/members/aunrea/
    but not here: https://cloudninemeeple.com/members/aunrea/profile/
    or anywhere else in the profile area.

    I have my own theme I made and have only made some CSS changes since installing the plugin. The CSS is not hiding the nav (I checked).

    I have a lot of plugins but I deactivated all plugins except BuddyPress and that did not help.

    I can’t figure out why it disappeared when it was there before.

    #316061
    shanebp
    Moderator

    If an update is available, yes you will see an update notice.

    Your login issue is most likely related to your theme or some other plugin or custom code.
    Check if it is a theme issue by momentarily switching to a WP theme like 2019.

    #316025
    iamthewebb
    Participant

    You can overload pages https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/#overloading-template-compatibility-theme-files

    If you create a child theme, copy the template file then you can make changes to the template to move components etc.

    #316000
    rcwild
    Participant

    Greetings,

    I have a problem that has me stumped. Thank you in advance for any help you might be able to offer. Website is canyonguidesinternational.org

    Started with MemberPress and Divi theme. Added BuddyPress to provide users the ability to create extended user profiles. Added a BuddyPress integration plugin provided by MemberPress. The only other plugins installed are reCaptcha and WordFence.

    The problems …

    WITH BUDDYPRESS DISABLED
    Things work fine, except of course I cannot access BuddyPress features.

    WITH BUDDYPRESS ENABLED β€” LOGGED IN AS ADMIN
    Things work fine. Can access BuddyPress features. BUT trying to get to homepage keeps redirecting me to …/members. I have the homepage set to static page HOME and cannot find any other place that could be causing the redirect. I can get to other pages using the navigation menu, but not the homepage.

    WITH BUDDYPRESS ENABLED β€” LOGGED OUT
    Going to home page gives me this message: “Please provide a valid activation key.” I can get to other pages using the navigation menu, but not the real homepage.

    #315964
    shanebp
    Moderator

    Try switching to a WP theme like 2019.
    If the error goes away, you know there is some conflict with woffice.

    #315961
    tht1
    Participant

    Hey there!

    I really love your plugin. I really hope everthing will work good and we be able to use it!
    I work now on localhsot.
    my issue now – the send message privately not working. nothing appen after pressing the button

    some things that maybe help for you to know:
    * local host
    * php version – 7.3.5
    * wordpress version – 5.5.3
    * I try to switch theme – astra or buddyx – issue still there.
    * try to work with and without the addon “BuddyBuilder – BuddyPress Builder for Elementor”
    * after pressing the button the link looks good – from the friend I want to send to – the link is coming back to my profile and them
    http://club.local/the members page/my page/messages/compose/?r=heythere
    but there is nothing unser “send message”

    what can help me to solve the problem?
    thank you very much!

    #315946
    dshelby
    Participant

    HI,

    I have the same concern.

    Particularly since WP uses the ‘username’ as a unique id and a login. Meaning its not only shown in profiles and BP member information, its also used in Url paths like member and author links. Not to mention individual plugins and themes might directly reference and use ‘username’ in ways you might not anticipate. Which would mean lots of audits of all the themes, plugins and updates you use on the site. and a huge testing effort.

    It seems to me that trying to shut down all those threats is time consuming, exhausting and prone for mistakes.

    Why not just use ‘username’ as a unique id and turn off the ability to login by ‘username’. That way if ‘username’ is plastered all over the place, it does not matter so much — as it can not be used to login and access data.

    I certainly hope WP is working on a solution to fix this issue, which I see as a security issue. (As in, you need two pieces of data to log in. Username and password. publicly providing 1 of those pieces of data (the username) severely increases security risk, problems, and issues.)

    In the mean time,
    I used hook action wp_authenticate to do my own login (that does not use the unique id ‘username’ ).
    For more information on that hook action see https://developer.wordpress.org/reference/hooks/wp_authenticate/

    Depending on where you put the ‘wp_authenticate’ solution this change can survive updates with out reapplication.

    To be even more complete you can turn it off in the wordpress code, which would mean your changes would have to be reapplied after updates.

    willypt
    Participant

    Hello. I’am using this theme https://themeforest.net/item/vikinger-buddypress-and-gamipress-social-community/28612259 and this plugin https://codecanyon.net/item/snax-viral-frontend-uploader/16540363.

    I’m also, of course, using buddypress on my website- But for some reason, the notifications are showing blank. See example: https://imgur.com/a/CXL2yFF

    Can I get a help, please ?

    #315845
    josemarin
    Participant

    Good afternoon,
    Have created a php file which we would like to integrate on the group post button, this is every time any user write a post and click on submit the post, apart from continue with it process, also execute my php file…, but I am unable to find where ti insert it.
    Could anyone point me to the correct file and how to insert it?
    We are using a child-Theme and BP-Nouveau.
    Thks.

    #315844
    harlandit
    Participant

    I am having trouble getting our intranet member page working. I have buddy press installed and set to the correct page, but when I go to the page I briefly see a message saying it is loading but doesn’t load anything up. The all members button shows the correct number of users in our system so it is linking to the DB correctly.

    I did see a post about the last activity needing to be populated….I ran that script and it is populated correctly. We use the Woffice theme and all users are authenticated through LDAP.

    Any thoughts on how to get this resolved?

    #315824
    craigburdett
    Participant

    I created a fresh install of WordPress, removed all themes except TwentyTwenty and all default plugins. Installed Buddypress from the WP repository. Activated. This is a fresh install set up to troubleshoot this Buddypress problem in another install.

    I can add users in the backend. If BP is disabled, users can register using the default registration.

    No WP errors are created or logged. A single proxy error is thrown. Noted below with real domain masked.

    Any suggestions?

    ********************

    1. Which version of WordPress are you running?
    Wordpress 5.5.3

    2. Did you install WordPress as a directory or subdomain install?
    Subdirectory

    3. If a directory install, is it in root or in a subdirectory?
    subdirectory

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    Fresh installation

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    yes

    6. Which version of BP are you running?
    Version 6.4.0

    7. Did you upgraded from a previous version of BP? If so, from which version?
    No. Fresh install

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    None

    9. Are you using a standard WordPress theme or customized theme?
    No

    10. Which theme do you use ?
    Twenty-twenty

    11. Have you modified the core files in any way?
    No

    12. Do you have any custom functions in bp-custom.php?
    No

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    None

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
    One error noted in proxy_error_log
    2020/12/01 13:37:19 [error] 31520#0: *5156884 “/var/www/vhosts/DOMAIN.com/httpdocs/testing2/register/index.html” is not found (2: No such file or directory), client: 143.244.45.55, server: DOMAIN.com, request: “POST /testing2/register/ HTTP/2.0”, host: “DOMAIN.com”, referrer: “https://DOMAIN.com/testing2/register/&#8221;

    All debug options enabled in wpconfig but WP throws no errors or creates a log file.

    15. Which company provides your hosting?
    1and1 dedicated server

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Apache & nginx

    17. Which BP Theme are you using?
    None additional

    18. Have you overloaded any BuddyPress template files.
    Touched none

    19. Any other site customisations that might have a bearing on the issue?
    Fresh install

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    Buddypress Nouveau (but also tried with Buddypress Legacy)

    #315814
    jpderboghossian
    Participant

    Hello,
    I installed BP on my site and it was working well. But now, the “standard member front page” is gone. The page where you have your menu items: activity, messages, notifications, friends, groups, etc. What I mean by “standard member front page” is this:

    Example Profile Page

    I don’t understand how this page can disappear. Now when you login the website defaults to a “you’re now logged in as X” page. And if you navigate to the member directory and click on your profile, there is just a list of your friends and groups. No activity, no messages, no notifications tabs.

    In addition to BP, I’m using the Profile Builder plugin, and Profile Builder Customization Toolbox. In the Appearance> customization > BuddyPress nouveau settings, I have selected the enable default front page for member profiles. I also have selected the display the biographical info from the member’s WordPress profile.

    WP version:5.5.3
    BP version: 6.4.0
    Theme: Werkstatt
    website: queerarmenianlibrary.com

    #315805
    cloe193
    Participant

    Hello @angrywarrior

    I have tried to remove from admin.php and create.php the code part that displays this option too. But it does nothing..

    Can you please tell me please where did you put the new modified files admin.php ?

    I use a child-theme

    Thank you very much!

    #315787
    kristifers
    Participant

    I have looked for any documentation but I cannot find anything that explains this hook system. For example, in bp-nouveau/buddypress/members/register.php the hook bp_nouveau_signup_hook() shows up several times. The hook has two arguments which change depending where they are in the code.

    How to hook into these from my child theme to add content?

    #315774
    shanebp
    Moderator

    BuddyPress is free.
    To find out if your theme is compatible, you need to try it and find out.

    #315769
    lahnsteiner10
    Participant

    I want to buy BuddyPress. Do you know if its compatible with the theme:
    I use Bridge Child Version: 1.0.0 from Qode Interactive.

    It’s a bit urgent – please help πŸ™‚

Viewing 25 results - 1,326 through 1,350 (of 32,488 total)
Skip to toolbar