Forum Replies Created

Viewing 40 posts - 81 through 120 (of 20,101 total)
  • Author
  • in reply to: Users photo #218485
     Radu
    Moderator

    Hi,

    I think you should re-generate the photos using a plugin like this one https://wordpress.org/plugins/regenerate-thumbnails/

    Also i think you should specify also the BP_AVATAR_FULL_HEIGHT and BP_AVATAR_FULL_WIDTH : https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/

    Also after that our theme wraps the avatar to certain sizes and for example for directory the avatar size can be increased using the next css snippet

    COPY CODE
    
    #buddypress #friend-list li div.item-avatar, #buddypress #member-list li div.item-avatar, #buddypress #members-list li div.item-avatar {
        width:150px;
        height:150px;
    }
    

    Also it may interfere with your current custom css, making the avatars non-centered, remove your custom css for that.

    Let me know
    Cheers
    R

    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: Functional installation. #218481
     Radu
    Moderator
    Not marked as solution
    in reply to: problem #218480
     Radu
    Moderator

    Hi,

    Most sure the issue it’s caused by a plugin that compress js files and/or move them into footer

    So switch off the optimizations or the plugin itself just to test, and purge cache then and check.

    Let me know

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    If you are using pmpro levels you should contact the paid memberships pro team since the questions for the payment flow trough pmpro are directly related to their plugin.

    Also check the membership options

    Ask the same on their support.

    https://wordpress.org/support/plugin/paid-memberships-pro/

    Cheers
    R

    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: User login problem #218476
     Radu
    Moderator
    Not marked as solution
    in reply to: Buddypress activity #218473
     Radu
    Moderator
    Not marked as solution
    in reply to: UNABLE TO SAVE MENU ITEM ICONS #218467
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo Posts objects aren’t loading (Urgent) #218399
     Radu
    Moderator
    Not marked as solution
    in reply to: Profile #218398
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook Login #218397
     Radu
    Moderator
    Not marked as solution
    in reply to: Kid`s date of birth #218394
     Radu
    Moderator

    The field that will be used to display ages and also when it converts from birthday to age.

    Cheers
    R

    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 remove breadcrumb item #218393
     Radu
    Moderator

    Hi,

    Here’s the reply from Kleo theme developer : In v3 they removed their breadcrumb function and now we are displaying a regular breadcrumb based on permalink and if they enabled Yoast breadcrumb the switch is done without any other settings.

    So if you will use Seo by yoast you should control the breadcrumbs from that.

    Cheers
    R

    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: Kleo Top Menu #218392
     Radu
    Moderator

    Hi,
    We are doing some test and we will get back to you soon.

    Cheers
    R

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

    Hi,

    Use this css snippet to fix that
    Use this Javascript snippet to fix that*edited

    COPY CODE
    
    jQuery(document).ready(function(){
        jQuery("input[name='signup_username']").on('change keyup paste',function(){
        jQuery(this).val(jQuery(this).val().toLowerCase());
         })
    })
    

    Cheers
    R

    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: PMPRO MEMBERS LIST and ACTIVATION KEY #218342
     Radu
    Moderator

    Hi,

    We had in the past theme versions issue with the activation key and we had fixed that, so make sure to have latest theme update and plugins updated.

    Also if the issue persists, try to switch child theme and empty cache if you have it and check again.

    Cheers
    R

    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: “Use of undefined constant YOUR_PLUGIN_DIR…” #218341
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Comment issue. #218337
     Radu
    Moderator
    Not marked as solution
    in reply to: View cart translation #218336
     Radu
    Moderator

    Hi @szmek9

    Can you tell me if you switch the theme to default wp theme that string will be translated or not please?

    Cheers
    R

    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 #218335
     Radu
    Moderator
    Not marked as solution
    in reply to: problem #218334
     Radu
    Moderator

    Hi,

    No matter what device i’m using while access your address i receive this loveofcouple.com

    Cheers
    R

    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: Customization doesn’t work #218333
     Radu
    Moderator
    Not marked as solution
    in reply to: Kid`s date of birth #218332
     Radu
    Moderator

    Hi,

    Using the next snippet will make the registration to starts from 13, you can change 3 with 17 to start from 1 year

    COPY CODE
    
    
    function my_custom_bp_datebox($html, $type, $day, $month, $year, $field_id, $date) {
        $current_year = date("Y");
        $allowed_year = $current_year - 13;
        if($type == 'year'){
       
            $html = '<option value=""' . selected( $year, '', false ) . '>----</option>';
    
            for ( $i = $allowed_year; $i >= 1920; $i-- ) {
                    $html .= '<option value="' . $i .'"' . selected( $year, $i, false ) . '>' . $i . '</option>';
            }
        }
        return $html;
    }
    add_filter( 'bp_get_the_profile_field_datebox', 'my_custom_bp_datebox',10,7);
    

    Cheers
    R

    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: Prevent user editing #218258
     Radu
    Moderator
    Not marked as solution
    in reply to: problem #218255
     Radu
    Moderator

    Hi,

    Yes you can use parent with no problem,the child theme it’s needed if you will want to edit php files from parent so if will not do that it’s ok to use only parent.

    Tried to see yo website from mobile but the provided url not works and also https://loveofcouple.com/ this it’s redirecting me here : https://loveofcouple.com/defaultsite cannot see what you see.

    Let me 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: activity page has some problem #218254
     Radu
    Moderator

    Your issue might be caused by the child theme or outdated plugins or theme or child theme files, if you switch off child theme and all plugins except buddypress,visual composer and k-elements, the issue can be reproduced?

    Make sure to have all updated
    Let me 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: How to remove breadcrumb item #218253
     Radu
    Moderator

    Hi,

    We are using the next logic to handle the v2 geodir breadcrumbs

    So for the v3 we should do some tests, you can try to play with the snippet until we test and find a solution for that, anyway it’s ok that you had find a workaround for that.
    Having page number of the archive on the breadcrumb it’s ok from my point of view, the single inconvenient seems to be 0 “Page 0” there should be checked if the issue comes from the plugin directly or not with generation of page 0.

    Cheers
    R

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

    Hi,

    No,

    On the left menu it’s present ? if yes the theme panel works as it should excepting that had disappeared from topbar ?

    If the theme options disappeared completely that may be caused by a plugin that uses redux framework our theme uses redux framework too.

    Try to switch off all plugins and see if the theme options appears as it should.

    Cheers
    R

    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: Update Kleo Failed #218251
     Radu
    Moderator

    Hi,

    For the theme updating problem, i recommend you to re-download it from theme forest and to upload the theme from wp-admin -> appearance -> add new.

    I recommend you to save the theme option from wp-admin -> theme options -> import/export for later use if it’s needed or not.

    After you do that, just delete the revolution slider plugin, then from wp-admin -> appearance -> install plugins, install it again, it will use latest revolution slider version available.

    Cheers
    R

    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: Some visibility issues #218250
     Radu
    Moderator

    Hi,

    For the breadcrumbs use the next css it will hide them on the buddypress

    COPY CODE
    
    .buddypress .breadcrumb {
        display: none;
    }
    

    For the visibility text use the next css to hide it

    COPY CODE
    
    .field-visibility-settings-notoggle {
        display: none;
    }
    

    I cannot reproduce the issue with the reply button it’s there for me

    I cannot see how the footer it’s on the middle of the page it asks to login

    Cheers
    R

    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: Theme’s native login link #218203
     Radu
    Moderator

    Hi,

    Just add this shortcode in a page named login from example

    COPY CODE
    
    [sq_login_form before_input="User: <strong>demo</strong>   Password: <strong>demo</strong>"]
    

    Let me know

    Cheers
    R

    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: Login page not found in the pages list #218201
     Radu
    Moderator
    Not marked as solution
    in reply to: LINK TO USERS PROFILE PAGE #218200
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook Login #218199
     Radu
    Moderator
    Not marked as solution
    in reply to: Facebook integration issue with mobile browsers #218197
     Radu
    Moderator

    Hi,

    Tried to reproduce it logging from iphone on your site where you report the issue and i was able, can you tell me what device brand and model, OS and what browser was used when you had tried ?
    Cheers
    R

    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 #218196
     Radu
    Moderator
    Not marked as solution
    in reply to: Profile info #218195
     Radu
    Moderator

    Hi,

    Just add this css should be ok

    COPY CODE
    
    .profile .bp-widget.info,.profile .bp-widget.more-info {width: 50% !important;display: block;float: left;}
    
    .profile .bp-widget.bprm_grp_prof_exprnc {clear: both;}
    

    Cheers
    R

    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: Prevent user editing #218194
     Radu
    Moderator
    Not marked as solution
    in reply to: Some issues with Swe #218193
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 81 through 120 (of 20,101 total)

Log in with your credentials

Forgot your details?