Forum Replies Created

Viewing 40 posts - 441 through 480 (of 576 total)
  • Author
  • in reply to: member cards #181975
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS to set a max height for the updates within the members directory, adjust the 50px value to suit your needs – and as always, clear all caches / CDN to see any changes.

    COPY CODE
    #buddypress ul.item-list#members-list li .item .update {
        max-height: 50px !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    You can use the below CSS to hide the element altogether if you so wish

    COPY CODE
    #buddypress ul.item-list#members-list li .item .update {
        display: none !important;
    }

    All the best,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Limit Members Directory #181858
     Kieran_SQ
    Moderator

    Hi,

    Thanks for contacting us about memberships. You can use the below snippet to hide users with the role ‘free’ in the BuddyPress member’s directory. You will need to use a bp-custom.php in your plugins folder to guarantee this to work properly all of the time.

    COPY CODE
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
    function bpdev_exclude_users($qs=false,$object=false){
        //list of users to exclude
         
        if($object!='members')//hide for members only
            return $qs;
        
         $excluded_user=join(',',bpdev_get_subscriber_user_ids());//comma separated ids of users whom you want to exclude
            
        $args=wp_parse_args($qs);
        
        //check if we are searching for friends list etc?, do not exclude in this case
        if(!empty($args['user_id']))
            return $qs;
        
        if(!empty($args['exclude']))
            $args['exclude']=$args['exclude'].','.$excluded_user;
        else 
            $args['exclude']=$excluded_user;
          
        $qs=build_query($args);
       
       
       return $qs;
        
    }
    
    function bpdev_get_subscriber_user_ids(){
      
        $subscribers= get_users( array( 'role' => 'free', 'fields' => 'ID' ) );
      
       return $subscribers;
    }

    If you do not already have a bp-custom.php file setup you can download the one I have attached for you that already contains the code from above. You should upload this file via ftp directly into the /wp-content/plugins/ folder.

    “I also would like to remove friendship and all subscriptions when someone reverts to Free from another membership level”. This would be a function suited to your third party memberships plugin and you should contact their development team to implement this for you.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Messages search bar display layout #181828
     Kieran_SQ
    Moderator

    Hi,

    Sorry to hear you’re having display issues with the messages page, please try the below CSS in your SweetDate Child theme’s style.css or in Theme Options > Styling Options > Scroll to: ‘Quick CSS’.

    COPY CODE
    #messages-bulk-management {
        margin-top: 40px;
        width: 100% !important;
    }

    Please purge your website cache, any CDN and also your local cache (Ctrl+F5) to see any changes. If this CSS does not work for you please update this ticket with admin credentials so I can access your site and look into a fix for you.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: member cards #181825
     Kieran_SQ
    Moderator

    Hi,

    Thanks for contacting us about the members directory layout. It is possible, but not advised, to force the height of these elements. By forcing the height you’ll be breaking the styles that govern the internal elements of each card – for example whether a user will have a background image on their profile card or not. If they do not, this won’t look great.

    However, the CSS to achieve this is below, please use in your BuddyApp Child theme’s style.css or in Appearance > Theme Options > Scroll to: ‘Quick CSS’

    COPY CODE
    #buddypress ul.item-list li .item-wrap {
        height: 400px !important;
        margin-bottom: 20px !important;
    }

    Please change the 400px value to suit your needs and increase or decrease the 20px for your desired space between each card. Please clear your website cache, CDN and local cache (Ctrl+F5) to see any changes.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Post meta style AND comment #181749
     Kieran_SQ
    Moderator

    Hi,

    When I submit the login information you have provided at the URL supplied I get the following error

    COPY CODE
    This site can’t be reached
    
    The webpage at https://roshdpack.com/administrator-marketing-web-pro-1396/ might be temporarily down or it may have moved permanently to a new web address.
    ERR_SPDY_PROTOCOL_ERROR

    Please temporarily disable the renaming / hiding of wp-admin / wp-login.php so I can login

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Group excerpt lenght #181740
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Post meta style AND comment #181723
     Kieran_SQ
    Moderator

    Hi,

    Thanks for contacting us about RTL issues you’re having, please try the below CSS in your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’.

    COPY CODE
    .single .with-meta.inline-meta article .article-meta {text-align: right !important;}
    article .post-header .post-meta {text-align: right !important;}

    Make sure to clear your website cache, any CDN and local cache (Ctrl+F5) to see any changes.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Pin size #181234
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Visual Composer fonts #181089
     Kieran_SQ
    Moderator

    Hi @josephchrasta,

    Thanks for contacting us about styling of the RSS widget, to undo the styling that is in place and force it to inherit your theme settings please use the below CSS in either your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’.

    COPY CODE
    .widget.widget_rss {
        font-weight: unset !important;
        font-family: Open Sans !important;
        text-transform: unset !important;
        font-size: inherit !important;
    }
    .widget.widget_rss a {
        font-weight: unset !important;
        font-family: Open Sans !important;
        text-transform: unset !important;
        font-size: inherit !important;
    }

    You will need to clear your website cache, CDN and local cache (Ctrl+F5) to see changes.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator

    Hi,

    I have logged into your site and added the below CSS to your child theme’s style.css to make the main area full width in the members directory

    COPY CODE
    /* Members directory full width */
    .directory .eight, .row .eight {
        width: 100%;
    }

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator

    Hi,

    Thanks for updating the ticket with the needed admin credentials, I have taken a look at your site and found the following in your child theme’s style.css

    COPY CODE
    .two.columns.hz-textbox {
        float: none;
    }

    I have changed this to

    COPY CODE
    .two.columns.hz-textbox {
        float: left;
    }

    Your form fields now work as expected, please clear your cache(s) (Ctrl+F5), and let me know if this works for you.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: limit the number of character and words #181058
     Kieran_SQ
    Moderator

    Hi @emmanuel,

    Thanks for contacting us today about limiting fields. You can use this plugin to limit the characters of profile fields (as well as other options) https://wordpress.org/plugins/advanced-xprofile-fields-for-buddypress/.

    You can also use the below snippet in WP Admin > SweetDate > General Settings > Scroll to: ‘Analytics Code’

    COPY CODE
    <script>
    jQuery(document).ready(function($) {
    $('#field_8').attr('maxlength', '140');
    });
    </script>

    Change field_8 to suit your needs and 140 to the number of characters you wish to limit it to. You can identify the ID for the field by right clicking it and selecting inspect. If you would like me to extract ID for you then please update the ticket with login credentials and tell me specifically which field you wish to limit.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Add full name to member pages problem #180252
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: SSL HTTPS #180104
     Kieran_SQ
    Moderator

    Hi,

    You’re getting the below error

    COPY CODE
    https://www.dickjanes.com/
    
    Unable to communicate securely with peer: requested domain name does not match the server’s certificate.
    
    HTTP Strict Transport Security: false
    HTTP Public Key Pinning: false
    
    Certificate chain:
    
    -----BEGIN CERTIFICATE-----
    MIIFezCCBGOgAwIBAgIJAIj/0qV4xPgXMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYD
    VQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEa
    MBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0
    cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2Vj
    dXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE3MTExNDE4MjMwMVoX
    DTE4MTAzMTIxMjUwNVowPTEhMB8GA1UECxMYRG9tYWluIENvbnRyb2wgVmFsaWRh
    dGVkMRgwFgYDVQQDEw9ldm9sdmVpdG5vdy5jb20wggEiMA0GCSqGSIb3DQEBAQUA
    A4IBDwAwggEKAoIBAQC1IMWz9zjVpYAbvM80ZC+kw2/hX+HaZkOkj3q6D5OwHWXQ
    wieHEXnnbpZIjNfjI4noJnaM71faZTP/EiUDJKPGOqIV4ZR7Yov9yrenPNdWLEOT
    Jkte1oSFw+w221UEFeP+ZufBMGwkWZ6G3kbJ26AWQj4K7qCYkjiuymjdQFxZWB6v
    Ih8VQNvxn6SCAfu4gp4rRktbhHUbAzUiUnXLrwahE53W5BnNx3FlP8UNIZs12Zgl
    JO8wPonjf2sMc0X9AiYMOZT3Rn0qnbwTp5ZlDtTeiMP8by/z8y7VdRzk4Mqx4Dh0
    gP0uyFiMV+N/g26vuPqVEvZuzsCGGj27vw5HxiVhAgMBAAGjggIEMIICADAMBgNV
    HRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8B
    Af8EBAMCBaAwNwYDVR0fBDAwLjAsoCqgKIYmaHR0cDovL2NybC5nb2RhZGR5LmNv
    bS9nZGlnMnMxLTc4OS5jcmwwXQYDVR0gBFYwVDBIBgtghkgBhv1tAQcXATA5MDcG
    CCsGAQUFBwIBFitodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9z
    aXRvcnkvMAgGBmeBDAECATB2BggrBgEFBQcBAQRqMGgwJAYIKwYBBQUHMAGGGGh0
    dHA6Ly9vY3NwLmdvZGFkZHkuY29tLzBABggrBgEFBQcwAoY0aHR0cDovL2NlcnRp
    ZmljYXRlcy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5L2dkaWcyLmNydDAfBgNVHSME
    GDAWgBRAwr0njsw0gzCiM9f7bLPwtCyAzjBxBgNVHREEajBogg9ldm9sdmVpdG5v
    dy5jb22CE3d3dy5ldm9sdmVpdG5vdy5jb22CFmFzc29jaWF0ZWRjYXJib25pYy5j
    b22CDWRpY2tqYW5lcy5jb22CGWdvbGRlbmdhYmxlc2luc3VyYW5jZS5jb20wHQYD
    VR0OBBYEFHh+Unlm4z9PpvQHNfeFeQUVh7WmMA0GCSqGSIb3DQEBCwUAA4IBAQAB
    PpN+yWkh2SLl8mb7n1faMoWaUBW2uIyzNDLR66/YKqYoTBN0V3RVKnVry5hyJHa4
    ei/gCYFtNbfSIlfMq3U7zJF78r0JeS74V9aT02YWpAM8O3cXYG8dTHR3/wAEkzZP
    v3tiWALNKO/J6tLhYrD9PWMRewHREcvUid7A/HAAOV/aeyoTNppoRt/ZB7zefb/J
    LAySylREBAa+E+a/VBNQX+5mdO9I38ViEwM1zs99GPhc3uWVizxkCzzsDaT0s2WV
    bhBYVWqGgJ1F0q+LChFZUIrWvGXGhwpw39Gr+Oil8KEvrCemip4alJ/kJADeugQT
    6tFpJ/0S4wiGjn6YanAb
    -----END CERTIFICATE-----
    -----BEGIN CERTIFICATE-----
    MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx
    EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT
    EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp
    ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3
    MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH
    EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UE
    CxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQD
    EypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEi
    MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzD
    BNliF44v/z5lz4/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOv
    K/6AYZ15V8TPLvQ/MDxdR/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23e
    cSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR/gd71vCxJ1gO7GyQ5HY
    pDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7n
    eTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMB
    AAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV
    HQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv
    9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8v
    b2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5n
    b2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ/MD0wOwYEVR0gADAzMDEG
    CCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkv
    MA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv/oV9PBO9sPpyIBslQj6Zz
    91cxG7685C/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2
    RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR/0yBOtg2DZ2HKocyQetawi
    DsoXiWJYRBuriSUBAA/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11
    GIo/ikGQI31bS/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2x
    LXY2JtwE65/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB
    -----END CERTIFICATE-----
    -----BEGIN CERTIFICATE-----
    MIIEfTCCA2WgAwIBAgIDG+cVMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVT
    MSEwHwYDVQQKExhUaGUgR28gRGFkZHkgR3JvdXAsIEluYy4xMTAvBgNVBAsTKEdv
    IERhZGR5IENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMTAx
    MDcwMDAwWhcNMzEwNTMwMDcwMDAwWjCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT
    B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHku
    Y29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1
    dGhvcml0eSAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3Fi
    CPH6WTT3G8kYo/eASVjpIoMTpsUgQwE7hPHmhUmfJ+r2hBtOoLTbcJjHMgGxBT4H
    Tu70+k8vWTAi56sZVmvigAf88xZ1gDlRe+X5NbZ0TqmNghPktj+pA4P6or6KFWp/
    3gvDthkUBcrqw6gElDtGfDIN8wBmIsiNaW02jBEYt9OyHGC0OPoCjM7T3UYH3go+
    6118yHz7sCtTpJJiaVElBWEaRIGMLKlDliPfrDqBmg4pxRyp6V0etp6eMAo5zvGI
    gPtLXcwy7IViQyU0AlYnAZG0O3AqP26x6JyIAX2f1PnbU21gnb8s51iruF9G/M7E
    GwM8CetJMVxpRrPgRwIDAQABo4IBFzCCARMwDwYDVR0TAQH/BAUwAwEB/zAOBgNV
    HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9BUFuIMGU2g/eMB8GA1Ud
    IwQYMBaAFNLEsNKR1EwRcbNhyz2h/t2oatTjMDQGCCsGAQUFBwEBBCgwJjAkBggr
    BgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMDIGA1UdHwQrMCkwJ6Al
    oCOGIWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2Ryb290LmNybDBGBgNVHSAEPzA9
    MDsGBFUdIAAwMzAxBggrBgEFBQcCARYlaHR0cHM6Ly9jZXJ0cy5nb2RhZGR5LmNv
    bS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEAWQtTvZKGEacke+1bMc8d
    H2xwxbhuvk679r6XUOEwf7ooXGKUwuN+M/f7QnaF25UcjCJYdQkMiGVnOQoWCcWg
    OJekxSOTP7QYpgEGRJHjp2kntFolfzq3Ms3dhP8qOCkzpN1nsoX+oYggHFCJyNwq
    9kIDN0zmiN/VryTyscPfzLXs4Jlet0lUIDyUGAzHHFIYSaRt4bNYC8nY7NmuHDKO
    KHAN4v6mF56ED71XcLNa6R+ghlO773z/aQvgSMO3kwvIClTErF0UZzdsyqUvMQg3
    qm5vjLyb4lddJIGvl5echK1srDdMZvNhkREg5L4wn3qkKQmw4TRfZHcYQFHfjDCm
    rw==
    -----END CERTIFICATE-----

    Your certificate is for www.dickjanes.com but your domain is dickjanes.com you’ll need to change the domain for the certificate to dickjanes.com to work properly.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Mobile Menu displays no Menu Options #179689
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS in Theme Options > General Setting > Scroll to: Quick CSS or in Appearance > Editor > KLEO Child > Style.css to remove the top bar if the users’ screen resolution is lower than 991px

    COPY CODE
    @media screen and (min-width: 991px) {
    .social-header.header-color {
        display: none !important;
    }
    }

    Make sure to clear any caching on WordPress, any CDN service and purge your local cache (Ctrl+F5) to see any changes. Caching on mobile devices can be very aggressive, you may need to delete your mobile browser data completely (apart from passwords and form data) to see these changes.

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: changing button colors #179636
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: customize the conformation email #179569
     Kieran_SQ
    Moderator

    Hi,

    To edit the content of the BuddyPress emails you can go to WP Admin > Emails > All Emails and then select the email you wish to edit. In your case it should be titled ‘[{{{site.name}}}] Activate your account’.

    You can customize the appearance of the emails by going to WP Admin > Emails > Customize or by installing a third party email template plugin like WP HTML Mail which can be found here in the WordPress plugin repository https://wordpress.org/plugins/wp-html-mail/.

    You can use the below snippet in your functions.php file to redirect users upon first time login. You should add this to Appearance > Editor > SweetDate Child > Functions.php

    COPY CODE
    function buddydev_redirect_on_first_login( $redirect_to, $redirect_url_specified, $user ) {
     
        //check if we have a valid user?
        if ( is_wp_error( $user ) ) {
            return $redirect_to;
        }
     
        //check for user's last activity
        $last_activity =  bp_get_user_last_activity( $user->ID );
     
        if ( empty( $last_activity ) ) {
            //it is the first login
            //update redirect url
            //I am redirecting to user's profile here
            //you may change it to anything
            $redirect_to = bp_core_get_user_domain($user->ID );
        }
     
        return $redirect_to;
    }
     
    add_filter( 'login_redirect', 'buddydev_redirect_on_first_login', 110, 3 );

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Translate not found #179560
     Kieran_SQ
    Moderator

    Hi,

    Thanks for getting back to me so quickly, I am going to forward this ticket to a developer to look into the translation issue for you, they’ll be in touch as soon as they can (Mon to Fri, East Europe Time)

    In the meantime, if it is urgent, please use the below snippet in your BuddyApp Child theme’s functions.php file. You can add this to the Child theme’s functions.php by going to Appearance > Editor > BuddyApp Child > Functions.php

    COPY CODE
    function change_translate_text_multiple( $translated ) {
    	$text = array(
    		'Have an account?' => 'New Translation 1',
    		'Sign in' => 'New Translation 2',
    	);
    	$translated = str_ireplace(  array_keys($text),  $text,  $translated );
    	return $translated;
    }
    add_filter( 'gettext', 'change_translate_text_multiple', 20 );

    Change ‘New Translation 1’ and ‘New Translation 2’ to suit your needs.

    Thanks

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Change #179527
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out to us about translations, you can use a plugin called LocoTranslate to translate your site into any language.

    Once you have installed the plugin and reviewed their documentation on how to use it, you should translate SweetDate and Paid Memberships Pro.

    If you want to only change a few strings you can use the below snippet in your child theme’s functions.php

    COPY CODE
    function change_translate_text_multiple( $translated ) {
    	$text = array(
    		'Old Text 1' => 'New Translation 1',
    		'Old Text 2' => 'New Translation 2',
    		'Old Text 3' => 'New Translation 3',
    	);
    	$translated = str_ireplace(  array_keys($text),  $text,  $translated );
    	return $translated;
    }
    add_filter( 'gettext', 'change_translate_text_multiple', 20 );

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: wp-admin error 500 #179413
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: wp-admin error 500 #179378
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Full width header on 2 column page #179081
     Kieran_SQ
    Moderator

    Hi,

    For pages please try this snippet instead of the one above as that is for posts

    COPY CODE
    add_action('kleo_before_main', 'sq7rdu_show_featured_before_content');
    function sq7rdu_show_featured_before_content() {
        if (is_page()) {
            if (has_post_thumbnail()) {
                echo '<div class="fullwidth-image-before-content">';
                echo the_post_thumbnail('full');
                echo '</div>';
            }
        }
    }

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: changing portfolio markup #178995
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: changing portfolio markup #178973
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: changing portfolio markup #178971
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Different Appearance in Chrome #178960
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Redirect to special url after user deletes his account #178901
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out to us today about custom development, the cleaned up version of your above could would be

    COPY CODE
    // redirect after account delete
    function action_bp_members_delete_account_after_submit() {
    
    wp_redirect(home_url( '/goodbye/' ));
    
    };
    
    add_action( 'bp_core_deleted_account', 'action_bp_members_delete_account_after_submit', 10, 0 );

    However I don’t think it is possible to redirect on bp_core_deleted_account, you should reach out to the BuddyPress support / dev teams at https://buddypress.org/support/ to see what their thoughts are.

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Search menu location in the top #178415
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: icon search #178323
     Kieran_SQ
    Moderator
    Hi, You're getting the following errors in the browser console (F12)
    Access to Font at 'http://clweb01.hosteur.net/~mairie-openclassrooms.fr/wp-content/themes/kleo/assets/font/fontello.woff2?54362609' from origin 'http://mairie-openclassrooms.fr' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://mairie-openclassrooms.fr' is therefore not allowed access.
    (index):1 Access to Font at 'http://clweb01.hosteur.net/~mairie-openclassrooms.fr/wp-content/themes/kleo/assets/font/fontello.woff?54362609' from origin 'http://mairie-openclassrooms.fr' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://mairie-openclassrooms.fr' is therefore not allowed access.
    (index):1 Access to Font at 'http://clweb01.hosteur.net/~mairie-openclassrooms.fr/wp-content/themes/kleo/assets/font/fontello.ttf?54362609' from origin 'http://mairie-openclassrooms.fr' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://mairie-openclassrooms.fr' is therefore not allowed access.
    (index):1 Failed to load http://clweb01.hosteur.net/~mairie-openclassrooms.fr/wp-admin/admin-ajax.php: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://mairie-openclassrooms.fr' is therefore not allowed access.
    It appears you recently went from a development site to launch, if this is correct you will need to use phpMyAdmin or a plugin (Better Search & Replace etc) to find the old URL's and replace with the new URL. Always make sure you have a valid backup of the database and WordPress files before making changes like this. Kieran.
    in reply to: few questions #178311
     Kieran_SQ
    Moderator

    Hi,

    1. You can change the visibility of this item by editing the home page with Elementor (process is above), clicking the element and scrolling all the way to the end in the left panel (see screenshot).

    2. Please add the below CSS to your SweetDate Child theme’s style.css or Quick CSS (process is above)

    COPY CODE
    .members img.avatar-94.photo {width: 188px !important;}
    .members .search-item .avatar {width: 188px !important;height: 188px !important;margin: -80px auto 25px !important;}
    .members .avatar span.online, .members .avatar span.offline {top: 30px !important;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Website is crashing after edit — Please help #178143
     Kieran_SQ
    Moderator

    Hi,

    When I visit your site I do not see the pilcrow in bbPress (see screenshot) since sending you the CSS to remove it, please try clearing your cache to see any changes. If you continue to see it please send me a few links as to where you see it.

    To remove the buttons on the other inputs please use the below CSS

    COPY CODE
    input#qt_field_213_sofbg-axcell {display: none !important;}
    input#qt_field_213_close {display: none !important;}
    input#qt_field_213_more {display: none !important;}
    input#qt_field_213_code {display: none !important;}
    input#qt_field_213_li {display: none !important;}
    input#qt_field_213_ol {display: none !important;}
    input#qt_field_213_ul {display: none !important;}
    input#qt_field_213_strong {display: none !important;}
    input#qt_field_213_em {display: none !important;}
    input#qt_field_213_block {display: none !important;}
    input#qt_field_213_del {display: none !important;}
    input#qt_field_213_ins {display: none !important;}
    input#qt_field_214_sofbg-axcell {display: none !important;}
    input#qt_field_214_close {display: none !important;}
    input#qt_field_214_more {display: none !important;}
    input#qt_field_214_code {display: none !important;}
    input#qt_field_214_li {display: none !important;}
    input#qt_field_214_ol {display: none !important;}
    input#qt_field_214_ul {display: none !important;}
    input#qt_field_214_strong {display: none !important;}
    input#qt_field_214_em {display: none !important;}
    input#qt_field_214_block {display: none !important;}
    input#qt_field_214_del {display: none !important;}
    input#qt_field_214_ins {display: none !important;}

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Website is crashing after edit — Please help #178055
     Kieran_SQ
    Moderator

    Hi,

    Please add the below CSS to your SweetDate Child theme’s style.css or to Quick CSS

    Remove pilcrow bbPress

    input#qt_bbp_reply_content_sofbg-axcell {display: none !important;}

    Remove all buttons except for link and img in BuddyPress profile edit

    COPY CODE
    input#qt_field_212_sofbg-axcell {display: none !important;}
    input#qt_field_212_close {display: none !important;}
    input#qt_field_212_more {display: none !important;}
    input#qt_field_212_code {display: none !important;}
    input#qt_field_212_li {display: none !important;}
    input#qt_field_212_ol {display: none !important;}
    input#qt_field_212_ul {display: none !important;}
    input#qt_field_212_strong {display: none !important;}
    input#qt_field_212_em {display: none !important;}
    input#qt_field_212_block {display: none !important;}
    input#qt_field_212_del {display: none !important;}
    input#qt_field_212_ins {display: none !important;}
    

    With regards to changing the text from img to image you could try the below snippet in your SweetDate Child theme’s functions.php file

    COPY CODE
    // Translate img to image
    add_filter('gettext', 'translate_reply');
    add_filter('ngettext', 'translate_reply');
    function translate_reply($translated) {
    $translated = str_ireplace('img', 'image', $translated);
    return $translated;
    }

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Top Menu Notification and Messages numbers are cut off #177702
     Kieran_SQ
    Moderator

    Hi,

    You can try the below CSS which will make the notifications inline.

    COPY CODE
    a.notify-contents.js-activated {
        padding-right: 30px;
    }
    .kleo-notifications {
        right: -25px;
        margin-top: -10px;
    }

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Remove comments link on map bubble #177691
     Kieran_SQ
    Moderator

    Hi,

    You could try using the singular class with width 100%

    COPY CODE
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="streetAddress"] {
        width: 100% !important;
    }
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Website is crashing after edit — Please help #177630
     Kieran_SQ
    Moderator

    Hi,

    You will need to download a clean copy of SweetDate on overwrite the parent theme functions.php file via FTP.

    With regards to the snippet at the end what is it you were trying to achieve?

    COPY CODE
    /* BuddyPress Profile cover compatibility */
    add_filter( 'bpcp_profile_tag', 'sweeet_bpcp_tag');
    function sweeet_bpcp_tag( $tag ) {
        $tag = 'div#profile';
        return $tag;
    }

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Remove comments link on map bubble #177562
     Kieran_SQ
    Moderator

    Hi,

    I have updated the CSS to make the address appear inline-block with some small padding so it does not run as one piece of text.

    COPY CODE
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressLocality"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressRegion"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="postalCode"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressCountry"],
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="streetAddress"] {
        display:inline-block!important;padding-left:3px;
    }

    To remove the home icon with it’s text please try the below CSS

    .geodir-bubble-meta-side .geodir-i-location {display: none !important;}

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Remove comments link on map bubble #177533
     Kieran_SQ
    Moderator

    Hi,

    You can show the entire address by using the below CSS in your KLEO Child theme’s style.css or in Quick CSS

    COPY CODE
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressLocality"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressRegion"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="postalCode"], 
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="addressCountry"],
    .geodir-bubble-meta-side .geodir_more_info.post_address span[itemprop="streetAddress"] {
        display:block!important;
    }

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: User Messages – reorder tabs #177393
     Kieran_SQ
    Moderator

    Hi,

    Please try adding the below snippet to the end of your KLEO Child theme’s functions.php file by going to Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    function add_settings_subnav_tab() {
    
        //reorder messages tabs
        buddypress()->members->nav->edit_nav( array(
            'position' => 10,
        ), 'compose', 'messages' );
    
        buddypress()->members->nav->edit_nav( array(
            'position' => 11,
        ), 'inbox', 'messages' );
    
        buddypress()->members->nav->edit_nav( array(
            'position' => 12,
        ), 'sentbox', 'messages' );
    
         buddypress()->members->nav->edit_nav( array(
            'position' => 20,
        ), 'starred', 'messages' );
    
    }
     
    add_action( 'bp_setup_nav', 'add_settings_subnav_tab', 100 );

    Thanks,

    Kieran.

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Membership Levels – Add Other Functions #177385
     Kieran_SQ
    Moderator

    Hi,

    To add more options to the table via Theme Options > Memberships please use the below code at the end of your functions.php file by going to WP Admin > Appearance > Editor > KLEO Child > Functions.php

    COPY CODE
    add_filter('kleo_pmpro_level_restrictions', 'my_custom_levels');
    
    function my_custom_levels($kleo_pay_settings) {
        $kleo_pay_settings[] = array(
                'title' => __('New Option A','kleo_framework'),
                'front' => __('Option A','kleo_framework'),
                'name' => 'new_option_a'
            );
        $kleo_pay_settings[] = array(
                'title' => __('New Option B','kleo_framework'),
                'front' => __('Option B','kleo_framework'),
                'name' => 'new_option_b'
            );
        $kleo_pay_settings[] = array(
                'title' => __('New Option C','kleo_framework'),
                'front' => __('Option C','kleo_framework'),
                'name' => 'new_option_c'
            );
        return $kleo_pay_settings;
    }

    Adjust the code to suit your needs.

    With regards to the icon question I will refer this ticket to one of our developers who may be able to assist you. They’ll be in touch as soon as they can (Mon-Fri East Europe Time).

    Thanks,

    Kieran

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

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

Viewing 40 posts - 441 through 480 (of 576 total)

Log in with your credentials

Forgot your details?