Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,701 through 5,725 (of 32,560 total)
  • Author
    Search Results
  • sharmavishal
    Participant

    this should fix it for u

    THEME UPDATE – VERSION 3.0.11 (June 7th 2016)

    Updates and fixes.

    Updated to Slider Revolution v5.2.5.3.
    Fixed BuddyPress multi-field checkboxes being output twice.
    Fixed some PHP notices.

    danbp
    Participant

    I’m unable to reproce this issue.

    Check following tables for duplicate entries in DB
    wp_bp_xprofile_fields and wp_bp_xprofile_groups (wp is the table prefix; could be different on your install)

    Provide the list of used & activated plugins.

    Did you found a similar issue mentionned on Salutation support ?
    Note that it’s a premium theme for which we can’t assist you, as we have no access to it’s code or support.

    jodys
    Participant

    I did more testing. It’s not the theme.

    I have two other groups of fields that have single select radio buttons. When I changed the type of field to multi-select radio button instead of checkboxes, it worked.

    #254734

    In reply to: global avatar

    sharmavishal
    Participant
    sharmavishal
    Participant

    can u test this on default 2015 or 2016 theme and let me know if the issue still remains?

    #254729
    sharmavishal
    Participant

    @sjoerdlagraauw as r-a-y mentions test this version of bp

    BuddyPress 2.6.0 Release Candidate 1 now available for testing

    regarding @mention as danbp suggested its not a bp issue. i checked this myself. its working in default 2016 theme of wp. but NOT working for other paid themes i have.

    mostly paid themes or custom themes use their own jss/css stuff in their own custom manner which creates an issue.

    if you got jss/css issues best of be asked at the custom themes support

    #254725
    santhosh46
    Participant

    Hi ! i Creating social community website using buddyapp theme . i just want to know how to keep two types of activities . For eg Main Activity for user posting Ideas and Secondary Activity for user posting competence process . while posting i need to choose which type of activity i am posting. Get assistance on this will more greatful .

    Thanks in advance.
    Santoz

    #254724
    Sjoerdlagraauw
    Participant

    Just to make sure I understand. Is it a theme problem of will it be solved in the next update of Buddypress @sharmavishal, @r-a-y and @danbp? Cause there are some other issues with ajax in this theme as well.

    I am in no hurrie so if it will be solved next week that would save me a lot of searching and debugging 😉

    Thanks for all the help!

    jodys
    Participant

    I’m using WordPress Version 4.5.2, BP Version 2.5.3 and installed Salutation WP Theme.

    I have set up extended profile fields using multi-select checkboxes. It appears that I have set up the fields correctly. See screen shot #1. However, when a user tries to edit their personal interests they see duplicate fields on the edit screen. See screen shot #2.

    How do I remove the duplicate fields on the user’s edit screen?

    https://www.dropbox.com/sh/xc4suyybb8la56s/AAB752JqHXWBviJlkj68ANm9a?dl=0

    I am very new to Buddypress and would appreciate any help you can provide.

    danbp
    Participant

    I tested your code and got first a page not found error while trying to send a private message from the new position.
    I deactivated both action hook in cover and home files.
    Disallowed cover image option. And tested again and everithing worked.
    Allowed cover image and worked also.

    So i confirm that your code works and all buttons show up (with active href’s), at least with Twenty Sixteen theme, at the members profile page bottom.

    In resume, the only thing you have to do is to deactivate the original action hook in both files (so you can allow/disallow cover images).

    Forgot to mention that there is a litle error in your code line 133
    <?= wpautop(xprofile_get_field_data("About me", bp_displayed_user_id() ) ); ?>

    Should be
    <?php wpautop(xprofile_get_field_data("About me", bp_displayed_user_id() ) ); ?>

    danbp
    Participant

    I made some changes on BuddyPress theme

    – if don’t show what you did, how could it be possible to help you ?

    Revert back step by step to find what you did wrong.

    #254694
    danbp
    Participant

    @bryanbatcher,

    you can use a function within bp-custom.php
    Something like:

    function bpfr_remove_nav_tabs() {
    
    	bp_core_remove_nav_item( 'messages' ); 
       // and so on for each item you want to remove
    
    }
    add_action( 'bp_setup_nav', 'bpfr_remove_nav_tabs', 15 );

    References
    nav-item
    http://hookr.io/plugins/buddypress/2.4.3/functions/bp_core_remove_nav_item/
    sub-nav-item

    bp_core_remove_subnav_item

    For the header thing, see template file and made your modification from within a child-theme.
    – profile pic and username: bp-templates/bp-legacy/buddypress/members/single/member-header.php
    – cover image: bp-templates/bp-legacy/buddypress/members/single/profile.php

    marcelo2605
    Participant

    I made some changes on BuddyPress theme and now private and public message buttons appears when current user saw his Friends tab.

    I removed this line: do_action( 'bp_member_header_actions' ); from cover-image-header.php file and now the messages buttons appears in user current Friend’s tab, with no href value.

    #254658
    sharmavishal
    Participant

    danbp is right…i tested @mentions on kleo/boss themes and didnt work….it worked on 2016 wp theme

    #254645
    danbp
    Participant

    @sjoerdlagraauw,

    out of the box, i have no idea. Something is apparently called to early. It’s difficult to say “what”. Have you tested with a Twenty theme ?
    Maybe check also all your js file version, ensure also the’re unique. If you find two with diff. version #, remove the oldest…

    Search also on forum for missing @mention or @mention not working….

    That’s even debuging… you have to search long and hard. 😉

    Masoud
    Participant

    @shanebp
    hi. tnx for answer and patience. got 5 more minutes? 🙂
    i read and worked on what you said. and if i want to be honest, i could’t do anything special unfortunately.
    now, i want to ask your opinion about this idea:
    i’ve come up with the idea of hiding that field. (not email field), how?
    with the use of if condition… (if it’s not empty show it. if it has data, hide it)!
    ——-
    i’ve created a custom-meta with this code in theme functions:

    add_action( 'personal_options_update', 'my_save_extra_profile_fields' );
    add_action( 'edit_user_profile_update', 'my_save_extra_profile_fields' );
    function my_save_extra_profile_fields( $user_id ) {
    if ( !current_user_can( 'edit_user', $user_id ) )
    	return false;
    /* Copy and paste this line for additional fields. */
    add_user_meta( $user_id, ‘person_relation’, 30318 );
    update_usermeta( absint( $user_id ), 'person_relation', wp_kses_post( $_POST['person_relation'] ) );
    update_user_meta( $user_id, 'person_relation', $_POST['person_relation'] );
    }

    and used it in my buddypress signup form, to get data from users. ok?
    after what you said, i went to edit.php (copy to my theme buddypress folder…)
    and added these codes. but it seems that they do not recieve/send data at all.
    it looks like they are empty!! 😐
    after <?php at the start,
    i added :

    global $user, $user_id;
    $person_relation = get_the_author_meta( 'person_relation', $user->ID );
    $user_id = get_current_user_id();

    and in the <form> ,
    i added this piece of code (not working)
    then copied and changed the “save changes button”.
    so there is 2 buttons. one is for my-custom-meta, and the other is for buddypress form.
    buddypress edit page
    if user writes the name and click save. the box/button, all should gone. and i have to see the data in Users admin panel.
    but nothing is getting save… and i dont know where am i doing it wrong

    <?php if( $person_relation == '' ): ?>
    <tr>
    <th><label for="person_relation">Invitor's Name</label></th>
    <td>
    <input type="text" name="person_relation" id="person_relation" value="<?php update_usermeta( $user_id, 'person_relation', $_POST['person_relation'] ); ?>" class="regular-text" /><br />
    <span class="description">Please enter your invitor's name.</span>
    </td>
    </tr>
    <input type="hidden" id="userID" value="<?php echo $user_id ?>"/>
    <div class="submit">
    <input type="submit" name="profile-group-edit-submit" id="profile-group-edit-submit" value="<?php esc_attr_e( 'Save Name', 'buddypress' ); ?> " />
    </div>
    <input type="hidden" name="person_relation" id="person_relation" value="<?php update_usermeta( $user_id, 'person_relation', $_POST['person_relation'] ); ?>" />
    <?php add_action( 'personal_options_update', 'my_save_extra_profile_fields' ); ?>
    <?php add_action( 'edit_user_profile_update', 'my_save_extra_profile_fields' ); ?>
    <?php do_action( 'xprofile_profile_field_data_updated'); ?>
    <?php endif; ?>

    so sorry for long description. tnx for help.
    any suggestions do you have?

    #254626
    danbp
    Participant

    Private message

    A user must have friends to send private messages or visit the profile of another user to send him a msg.

    Messages

    To get it to work, you need also to enable following options in BP settings:
    – Friend Connections
    – Private messaging
    Additionnally, if you want to be notified by email
    – Notifications

    Whatever the option you activate, best practice is to control how it works on your config. To do that, use only WP, BP and one of Twenty’s theme before activating a third party theme and any other plugin.
    This will ensure you that BP is fully working on a standart WP config.

    Mention

    @mention use AJAX which can in some case, mostly with sophisticated themes or frameworks, lead to conflict. In that case, the culprit isn’t BP or WP, but the theme or a plugin whose code (generally) use a different standart as WP.

    If you get issues with mention or messaging, activate wp_debug in wp-config and check your browser JS console to track down errors. The one or the other can give you precious debug information. You can also use a debug tool like Firebug.

    #254617
    andreaguzzonato
    Participant

    Hi, I have wordpress 4.5.2 and buddypress 2.5.3.
    I use woffice theme and can’t create my own user menu.
    Well, i can create it, but it doesn’t go to replace buddypress default menu, but it just get added to it.
    img

    What can i do?
    Thanks for helping!

    willenglishiv
    Participant

    howdy,

    Website is https://mobile.foodiechats.com
    WP Version is 4.5.2
    BuddyPress is 2.5.3

    SO the theme I’m using (BuddyBoss) actually allows for tagging to occur in blog posts. (or in this case a custom post type)

    Is there a way to trigger a notification based on that? Replies I think trigger but it would be nice to have a notification that says “user tagged you in a comment”

    danbp
    Participant

    add this from within your child-theme style.css:

    #buddypress .standard-form#signup_form div.submit {
    	float: left!important;		
    	background-color: orange!important;
    	height: auto!important;
    }
    
    #buddypress .standard-form div.submit input {
    	margin: -12px 3px 3px 3px!important;
    }
    #254573
    myndphunkie
    Participant

    Hi Guys,

    BuddyPress v2.5.3
    Wordpress v4.5.2
    My own theme created with Artisteer

    Getting blank notifications for every user. Seems to happen when something is triggered (ie: user is mentioned in the activity wall or something else).

    Never used to happen, can only assume an update has caused it.

    Has anyone else had this? Is there a log file I can check to see what’s going on?

    Thanks

    #254566

    In reply to: register page problem

    Masoud
    Participant

    solved it.
    hopefully someone from wordpres.org helped me.
    here is the link for anyone in the future faced the same problem as me.
    wordpress.org page

    the answer was:
    If you want to add some user meta info in user database while registration you need to use “user_register” filter like below code:Add code in your themes function.php file

    add_action( 'user_register', 'my_user_meta_save', 10, 1 );
    function my_user_meta_save( $user_id ) {
        if ( isset( $_POST['first_name'] ) )
            update_user_meta($user_id, 'first_name', $_POST['first_name']);
    }
    #254555

    In reply to: Hide All Members Tag

    danbp
    Participant

    No idea ! The snippet doesn’t change any URL, it only remove the count part of the original text.
    Check your theme or any custom function using a redirection. Sorry, can’t help you for this issue.

    pierjeant
    Participant

    I am new to BP I have version BP 2.5.3 and WP 4.5.2. I love PB registration form that is simple and redirect new member to the email for activation. simple and efficient. I have a question regarding the registration form
    How can I move the ” complete signup” button to the left (under confirme Paswword). I have members saying it is hard to see way to the right on large screens.(or making it with an orange background?)
    I am not a programmer so I do not know PHP (but I know how to copy paste !!!!! 🙂
    If you can also mention the path for the file and also how to may be place it in my child subtheme’s folder so it does not get erased at the next update….(new to wordpress too, even at 72 there is still some learning todo!> Thanks!

    dainismichel
    Participant

    i have an important project to finish, so i can’t post my setups right now — but honestly — i was hoping that others would post reasonable plugin and theme combinations that work well when installed. basically, combos where you can configure some settings, sure, but where you don’t have to do custom programming just to get basic community registration, splog protection, and member interaction to work properly.

Viewing 25 results - 5,701 through 5,725 (of 32,560 total)
Skip to toolbar