Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,901 through 5,925 (of 32,561 total)
  • Author
    Search Results
  • Larenholtz
    Participant

    All of my users can not login to there account. They get redirected to the Home page. I can login to my admin account true website.com/wp-login but not from the login-widget.

    What to do.

    website http://www.npf-forum.se
    latest wordpress
    latest bb press
    latest buddy press
    genesis child theme latest.
    And have also uploaded a backupp from my host and with that updated the database
    I have cleard the cach several times
    I have created a new user-account wich doesnet work to login with.

    I´m, stuck

    #253372
    noobiestrikesagain
    Participant

    Hey,

    I’m trying to remove bp_add_friend_button from bp_member_header_actions by using

    remove_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );

    It is not working.
    While I was able to remove follow button (Buddypress Follow plugin) with the following code:
    remove_action( 'bp_member_header_actions', 'bp_follow_add_profile_follow_button' );

    The same code for friendship button is not working.

    I have also tried the following code:

    function remove_add_friend() {
    	 remove_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );
    }
    add_action( 'after_setup_theme', 'remove_add_friend', 11 );

    Any solution to the problem?

    Thanks!

    prdufresne
    Participant

    I was able to override the offending settings by adding a few lines in the custom css file of my theme. Below are the changes I made to resolve the issue, in case anyone else runs into a similar problem

    #buddypress table.profile-fields td.label {
        color: #555555;
        display: table-cell;
    }
    justarandomuser
    Participant

    I just found a little problem on my website.
    As an admin I can edit directly on the Front-End the profiles of my users if there is bad data.

    I show the fields like this (I have only 1 group):

    <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    // many things are going on here! but nothing special
    <?php enwhile; ?>

    The problem is… EMPTY fields are not in the output!

    I tried to put array('hide_empty_fields' => 0) into bp_the_profile_field() but this doesn’t work.

    I handle everything (display of the profile, editing of the profile fields etc) in <my-theme>/buddypress/members/single/cover-image-header.php

    Please help me 🙁

    ndh01
    Participant

    I found I have to declare it in my theme as noted here https://buddypress.trac.wordpress.org/ticket/6570:

    bp_set_theme_compat_feature( 'legacy', array(
    	'name'     => 'cover_image',
    	'settings' => array(
    		'components'   => array( 'xprofile', 'groups' ), /* or you can only use array( 'xprofile' ) to restrict the cover image to users */
    		'width'        => 1170,
    		'height'       => 225,
    		'callback'     => 'swifter_theme_cover_image', /* function that will return to BuddyPress the css to attach to the theme_handle */
    		'theme_handle' => 'swifter',
    	),
    ) );
    ndh01
    Participant

    The two options: Group Cover Image Uploads & Cover Image Uploads checkboxes do not show up in admin->settings->BuddyPress->Options when my custom theme is active (created before cover images existed natively in BP). However when switching to 2015 theme, I see the options available. Obviously this is a theme issue, but not sure why it would not show up on my theme.

    Thanks for your help!

    navyspitfire
    Participant

    I’ve removed the “upload avatar” area from my registration page and instead am using the profile fields “upload photo” field. I’d like the single members page to use the photo uploaded as their avatar.

    I’m using the Sweet Date theme and in the single members theme file is the hook <?php bp_displayed_user_avatar( array('type' =>'full','width' => 580, 'height' => 580) ); ?>. Does anyone know the hook for me to use the image the user uploads via the “upload photo” field?

    obidos
    Participant

    Hi there,

    I am creating a custom theme and need to integrate BuddyPress. I am working locally.

    I have a custom template and created the activity loop. This works great. Now I want to show the post-form at the top of my activity loop. Which I have done by calling in activity/post-form.php. However, you type in the textarea box and hit post comment and nothing happens. Any ideas?

    I know the activity feed is working on /activity so everything is setup correctly with my theme. I just want to show it in a column on my new template page.


    <div id="buddypress">
    <div class="activity-comment">
    <?php locate_template( array( 'buddypress/activity/post-form.php' ), true ); ?>
    </div>
    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&action=activity_update' ) ) : ?>
    <?php while ( bp_activities() ) : bp_the_activity(); ?>

    <?php locate_template( array( 'buddypress/activity/entry.php' ), true, false ); ?>

    <?php endwhile; ?>
    <?php endif; ?>
    </div>

    justarandomuser
    Participant

    Currently I am chaning some BP files to fit them to my Theme.

    The following file I change:
    <my-theme>\buddypress\members\single\messages\message.php

    To check if the current message sender is also the sender of the message just before, I create a class (see below) in the following file:
    <my-theme>\buddypress\members\single\messages\single.php

    class cs_GLOBAL_Msg_Sender_Holder {
      public $last_sender;
    }

    In message.php at the end I write:
    cs_GLOBAL_Msg_Sender_Holder::$last_sender = bp_get_the_thread_message_sender_name();

    At the top of message.php I write:

    <?php if (cc_GLOBAL_Msg_Sender_Holder::$last_sender != bp_get_the_thread_message_sender_name()) : ?>
    // show message with avatar
    <?php else : ?>
    // show message without avatar because it's the same sender like before
    <?php endif; ?>

    But this doesn’t work and breaks AJAX because BP (?) doesn’t like cs_GLOBAL_Msg_Sender_Holder::$last_sender = ...

    What can I do to pass variables like this?

    Or can I get the current AND last sender of a message with global $thread_template; ?

    #253264

    In reply to: Mobile members page

    Henry Wright
    Moderator

    Yes, try letting your theme’s author know via their support channel. Hopefully they can release a fix.

    #253263

    In reply to: Mobile members page

    cazooba
    Participant

    I am using a wordpress theme – called WOffice.. Should I contact them?

    #253262

    In reply to: Mobile members page

    shanebp
    Moderator

    The members search box is visible on mobile when using a standard WP theme like 2013.

    So there is most likely an issue with your theme.

    To confirm, trying switching momentarily to a WP theme.

    #253252
    MD FAKRUL ISLAM
    Participant

    @mfalk75

    I faced the same issue when I copied the buddypress.css from buddypress/bp-templates/bp-legacy/css to mythemes/buddypress/css

    Here is the code below I used to get rid of this…

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-parent-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Hope it helps..

    #253250
    Andrew Tegenkamp
    Participant

    I was using the code example at https://codex.buddypress.org/developer/bp_user_query/#code-examples and found it works great for removing users from the Member’s Directory list based on an xprofile field.

    However, when I change the order using the default Order By dropdown it seems the user that is removed comes back. I’m using the 2014 theme and default BP templates. Is there something else that needs to be done to get that to persist?

    Debug wise, I’ve tried add

    The POST source from Firebug below mentions a couple things about scope and filter but I’m not sure if that’s the place to look and why the action bp_before_directory_members doesn’t seem to fire on the Order By update:

    action=members_filter&cookie=bp-activity-oldestpage=1&bp-members-scope=all&bp-members-filter
    =active&object=members&filter=active&search_terms=&scope=all&page=1&template=

    Thanks!

    LavishDhand
    Participant

    WordPress 4.5.2
    BuddyPress 2.5.2

    Hi!

    I have moved my website from one Godaddy hosting account to other, it always worked fine before the move. No BuddyPress activation emails are being sent now.

    What have I tried so far? I have tried –

    1 – switching to Twenty Twelve, Twenty Thirteen, Twenty Fourteen etc themes
    2 – with Other plugins deactivated
    3 – SMTP (Gmail), when mail() did not work
    4 – MailGun. I am on MailGun now, configured to my domain name
    5 – with BP Email to WP Mail From Bridge plugin on and off. In all above conditions.

    I can send contact form7 messages without a problem, which makes me think that WordPress mails are working fine. I have not been able to send a single BP activation email after the move.

    Kindly help
    Thank you

    #253219
    andy60rm
    Participant
      Resolution today

    my personal steps
    1. restore latest wp backup with version 4.5.1
    2. complete remove of buddypress
    3. disactivation of the following plugins (i don’t know exactly the cure but bp works now)

    INACTIVE Cryout Serious Theme Settings 0.5.6
    INACTIVE Huge IT Slider 3.1.82
    INACTIVE mathtex latex equation editor 1.1.5
    INACTIVE Ultimate Tables 1.6.3
    INACTIVE WP-Polls 2.73
    INACTIVE WP-Pro-Quiz 0.37

    #253203
    andy60rm
    Participant

    After installing Buddypress plugin, visual editor does not works correctly.

    Wordpress 4.5.2
    BuddyPress latest version

    Plugins installed
    =================
    BAW Login/Logout menu 1.3.3.
    Contact Form 7 4.4.2
    Contact Form DB 2.10.9
    Cryout Serious Theme Settings 0.5.6
    Huge IT Slider 3.1.82
    Limit Login Attempts 1.7.1
    Link Library 5.9.12.18
    LinkedIn Auto Publish 1.3.2
    mathtex latex equation editor 1.1.5
    New User Approve 1.7.3
    Peter’s Login Redirect 2.9.0
    Recent Posts Widget With Thumbnails 4.9.2
    SI CAPTCHA Anti-Spam 2.7.7.7
    Simple Share Buttons Adder 6.1.5
    TablePress 1.7
    Testimonials Widget 3.3.0
    Tooltips 3.5.9
    Twitter Follow Button 1.0.2
    Ultimate Tables 1.6.3
    User Access Manager 1.2.6.7
    WP Content Copy Protection Premium (YOOPlugins) 1.8.32
    WP Statistics 10.1
    WP Support Plus Pro 7.0.1
    WP Twitter Feeds 1.4.8
    WP-Polls 2.73
    WP-Pro-Quiz 0.37
    WP-SpamShield 1.9.8

    Henry Wright
    Moderator

    I added it at the end of my theme’s functions.php file. I’m using Twenty Fifteen to test.

    Night Hawk
    Participant

    Really, I don’t know why, but is not working…

    I add it like this in my themes faction.php

     add_filter( 'bp_after_has_activities_parse_args', function( $retval ) {
       $retval['action'] = array(
            'activity_update',
            'activity_comment',
            'updated_profile',
        );
        return $retval;
    } );
    

    but nothing works.

    #253182
    vaughancavca
    Participant

    My theme doesn’t seem to have any BP files, although I’ve found another create.php file in the themefolder > blogs folder, it’s completely different to the one I’ve been working with. Could this be a conflict with the BP one?

    #253175
    sharmavishal
    Participant

    you need to ask this to the theme author…its not a bp issue… if you want to custom the register page check index-register.php in the codex

    #253174
    sharmavishal
    Participant

    members-loop.php customize it and add that to your child theme

    #253159
    shanebp
    Moderator

    Some themes include BP files.
    To see if that is the case with your theme, try switching momentarily to a WP theme like 2013.

    hassansarwar
    Participant

    Hello,

    I have been a wordpress user for a very long time and I also do themes and stuff every now and then. This time around I have a client who wants me to create a corporate community on his existing website with the following functions:

    User Profiles, User can follow each other, User can make guest posts (which will be approved by the administrator), Users can share links/videos, FAQ, Webinars etc.

    Since this is new for me – I would like to know if I can do all this using BuddyPress and how should I start? Would I be able to do this with BuddyPress or should I go with a third party tool and integrate it with wordpress manually. Also, If it helps; I am using the theme Jupiter by Artbees on the website currently.

    I also have no experience with MultiSite so anyone who can guide me a bit about it would be great.

    Thanks,
    H.

    fidelleon
    Participant

    WordPress 4.5.1
    BuddyPress 2.5.1
    Geodirectory framework and Geodirectory’s Modern theme.

    Buddypress mails get sent but only using the plain text version. I have modified one of the templates with different wording for HTML and plain text, and no matter what, the system always send the plain text version, so it seems like some part of the system is deciding to just take such version.

    My WordPress instance doesn’t have (and very likely won’t have) a local SMTP server so I’m using “Easy WP SMTP” to communicate with Google servers. I also use BP Registration Options to get account validations.

Viewing 25 results - 5,901 through 5,925 (of 32,561 total)
Skip to toolbar