Forum Replies Created

Viewing 40 posts - 1,601 through 1,640 (of 2,655 total)
  • Author
  • in reply to: Profile page – make profile fields un-clickable #3087
     SQadmin
    Keymaster

    Thanks for sharing. Glad it works.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Member Activity Removal #3066
     SQadmin
    Keymaster

    Hi, There are lots of places where that appears. Please specify the page you are referring to

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: blog posts #3065
     SQadmin
    Keymaster

    When you are not logged in the register form appears so you have to modify this template like the one with the search form: page-parts/home-register-form.php
    http://d.pr/n/hU5O

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Activity-comment style-issue #3064
     SQadmin
    Keymaster

    Thank you. Appreciate it

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: where the fields to create your account? #3056
     SQadmin
    Keymaster

    Please follow the instructions I sent and it will work. Map the buddypress register component with your Register page and it will look like on our demo.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: where the fields to create your account? #3053
     SQadmin
    Keymaster

    Sure. You can follow video tutorial for an initial setup: https://archived.seventhqueen.com/video-tutorials
    You need to match Buddypress component pages from Settings -> Buddypress -> Pages

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Match people by birthdate #3051
     SQadmin
    Keymaster

    Yes the code was made to match @sv1aud need where he had 3 separate fields for the date.
    We will see if we can do something to render the normal date field

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: blog posts #3049
     SQadmin
    Keymaster

    I replied above: https://archived.seventhqueen.com/forums/topic/blog-posts#reply-3044

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Video Button not playing video #3048
     SQadmin
    Keymaster

    Hi,
    There was a problem when non-alphanumeric characters were in the button text. Please replace the contents of the file from sweetdate/framework/shortcodes/shortcodes.php with this https://archived.seventhqueen.com/files/shortcodes.txt

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: blog posts #3044
     SQadmin
    Keymaster

    Now it shows on the home page. I had to add id like this:
    [do_widget id=kleo_recent_posts-3]
    Where the id is the widget id took from the debug

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     SQadmin
    Keymaster

    Thank you. We greatly appreciate it!

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Profile page – make profile fields un-clickable #3042
     SQadmin
    Keymaster

    Hi,
    Yes it can be done.
    Add this code to wp-content/plugins/bp-custom.php to make Buddypress not generate the links:

    COPY CODE
    
    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: "Read More" Not working on mobile view #3041
     SQadmin
    Keymaster

    Yes, on Chrome seems to be the problem. Will check and let you know.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: City Field #3040
     SQadmin
    Keymaster

    We wanted to release the update this week so I don’t think it will be available in this one.
    This one will include Revolution slider as the main feature

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Membership plugin configuration #3039
     SQadmin
    Keymaster

    Hi, Similar topic here: https://archived.seventhqueen.com/forums/topic/forum-visibility

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: where the fields to create your account? #3038
     SQadmin
    Keymaster

    Hi,
    You question is not so clear but I’ll try to guess what you meant.
    Profile fields can be set from WP admin -> Users -> Profile fields. Fields that appear on the registration page are the ones from the Base group.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Video Button not playing video #3037
     SQadmin
    Keymaster

    Give us a link to have a look. Use the “Set as private reply” checkbox if you want just us to see the info.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Video Tutorial #3035
     SQadmin
    Keymaster

    Fixed. Thanks for letting us know

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Please help my homepage #3026
     SQadmin
    Keymaster

    Hi,
    First you should go to Sweetdate -> HOmepage and choose your form type. If you choosed Search or Mixed you need to configure the search form in Sweetdate -> Buddypress
    You also have this telling you what to do on homepage: “Please configure your form fields under Sweetdate -> Buddypress”

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Top Link Colors #3023
     SQadmin
    Keymaster

    Hi,
    Add this css to Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    .top-links, .top-links a {color:red}
    

    modify it with your color.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Icon on Image Hover #3022
     SQadmin
    Keymaster

    Hi,
    Please add the following code to your sweetdate-child/functions.php file. It replaces the heart with a camera icon.
    To view all possible icons available:
    http://fortawesome.github.io/Font-Awesome/icons/
    Make sure to have the child theme activated

    COPY CODE
    
     
    add_action('after_setup_theme','kleo_replace_heart');
    function kleo_replace_heart()
    {
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
    }
     
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WMPL to translate profile fields #3020
     SQadmin
    Keymaster

    Revert the previous solution if it didn’t worked and try editing the buddypress/bp-xprofile/bp-xprofile-template.php and replace:
    line 513

    COPY CODE
    
    $html .= apply_filters( 'bp_get_the_profile_field_options_select', '<option' . $selected . ' value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '">' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</option>', $options[$k], $field->id, $selected, $k );
    
    

    line 552

    COPY CODE
    
    $html .= apply_filters( 'bp_get_the_profile_field_options_multiselect', '<option' . $selected . ' value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '">' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</option>', $options[$k], $field->id, $selected, $k );
    

    line 578

    COPY CODE
    
    $html .= apply_filters( 'bp_get_the_profile_field_options_radio', '<label><input' . $selected . ' type="radio" name="field_' . $field->id . '" id="option_' . $options[$k]->id . '" value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '"> ' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</label>', $options[$k], $field->id, $selected, $k );
    

    line 618

    COPY CODE
    
    $html .= apply_filters( 'bp_get_the_profile_field_options_checkbox', '<label><input' . $selected . ' type="checkbox" name="field_' . $field->id . '[]" id="field_' . $options[$k]->id . '_' . $k . '" value="' . esc_attr( stripslashes( $options[$k]->name ) ) . '"> ' . esc_attr( stripslashes( __($options[$k]->name )) ) . '</label>', $options[$k], $field->id, $selected, $k );
    

    The lines might not be the same but you’ll see something similar that gets replaced

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Recently Active User Groups Display Issue #3019
     SQadmin
    Keymaster

    Hi,
    That happens because of the title being too long and goes on 2 lines. This css will fix it. Add the code to Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    #groups .group-item:nth-child(2n+1) { clear: left;}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Widgets Disappeared #3018
     SQadmin
    Keymaster

    Strange. Thanks for sharing this with us. We will try too.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Contact Form 7 #3017
     SQadmin
    Keymaster

    Hi,
    From the Contact Form 7 plugin page copy the code for your form. It shows like this:
    http://d.pr/i/XBhz

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: "Read More" Not working on mobile view #3015
     SQadmin
    Keymaster

    🙂 the S2 worked. with default browser and Dolphin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: "Read More" Not working on mobile view #3012
     SQadmin
    Keymaster

    Hm.. I tested it on Android and worked. Will test on other devices and see what happens

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Changed Buddypress fields and now profile doesn't show #3010
     SQadmin
    Keymaster

    Hi, You need to define your group name like in this topic: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: "Read More" Not working on mobile view #3009
     SQadmin
    Keymaster

    Hi, The “Read more” from Homepage carousel?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Sidebar on the Profile page – possible? #3008
     SQadmin
    Keymaster

    Hi,
    Please wait for a stuff member to respond to your question. Topics are responded in the order they arrive.
    You added the next reply after just 5 minutes of waiting…

    That is simply done from our options panel: Sweetdate -> Buddypress -> Sidebar

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Member Activity Removal #3006
     SQadmin
    Keymaster

    Hi,
    Please add this css to Sweetdate -> Styling options -> Quick css box:

    COPY CODE
    
    .activity-content span.time-since {display:none;}
    

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Activity-comment style-issue #3005
     SQadmin
    Keymaster

    Hi, Thank you for noticing this and telling us about it.
    Please add this css that will fix the alignment. We will include the fix in next update.
    div.activity-comments form.ac-form {clear:both;}

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Video Tutorial #3003
     SQadmin
    Keymaster

    We are checking what’s wrong with it and will fix it. Thanks

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: blog posts #2995
     SQadmin
    Keymaster

    Give me acces to your site to take a look,. I think is quicker. Send a reply and check “Set as private reply”

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     SQadmin
    Keymaster

    Hi,
    Here goes;
    1. Copy sweetdate/members/member-header.php to sweetdate-child/members/member-header.php and remove line 35 and 36.
    You need to activate the sweetdate-child theme

    2. Another file to copy to sweetdate-child in the same location as in the parent theme: members/single/profile/change-avatar.php
    Rename the avatar string in the file with the one you desire
    There are some other avatar strings that come from Buddypress core that could be changed following this url:
    http://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/

    3. This is also handled by Buddypress. Add this code to wp-content/plugins/bp-custom.php. If the file doesn’t exit create it:

    COPY CODE
    
    function bbg_change_subnav() {
    	global $bp;
    	$bp->bp_options_nav['activity']['friends']['name'] = 'Connections';
    }
    add_action( 'bp_setup_nav', 'bbg_change_subnav', 999 );
    

    Cheers.
    PS: Please rate our theme and work if you like

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Chat plugin #2990
     SQadmin
    Keymaster

    Hi, I think it is a matter of choise. If you think the extra things in the professional version will help you then its worth. I think talking with Facebook friends and an unbranded version would be nice for the users to have. You should see what it means to have an active Cometchat license to be able to use Facebook chat

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Instagram Plugin #2988
     SQadmin
    Keymaster

    Hi, First one should work fine since it uses wigdets, shortcodes. Second one has just widget so you can only display in sidebar.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How To Change Wording… #2987
     SQadmin
    Keymaster

    Hi,
    I don’t have a solution for the counting members unfortunately. For your second question this link has the solution: http://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/
    the file is located in sweetdate/activity/activity-loop.php

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Bugs in Registration Page #2980
     SQadmin
    Keymaster

    Fixed it in this week upcoming version

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Title Padding #2977
     SQadmin
    Keymaster

    Hide the title with this css added to Quick css box from Sweetdate -> Styling options:

    COPY CODE
    
    .directory.members.buddypress .search-result h2 {display:none}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 1,601 through 1,640 (of 2,655 total)

Log in with your credentials

Forgot your details?