Forum Replies Created

Viewing 40 posts - 6,521 through 6,560 (of 20,101 total)
  • Author
  • in reply to: Incorrect Mobile Menu but can’t find where to fix #164368
     Radu
    Moderator

    Ok then

    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: Featured Images on CDN #164361
     Radu
    Moderator

    First, i need to see page URL where the images are not served from CDN

    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: the online activity time; Important. #164360
     Radu
    Moderator
    Not marked as solution
    in reply to: Change the color of the first accordion #164359
     Radu
    Moderator

    Hi,

    Just use this CSS

    COPY CODE
    
    .panel-kleo .panel:nth-of-type(1) {
        background-color: red;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    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: Accordion disables dropdown menu #164355
     Radu
    Moderator
    Not marked as solution
    in reply to: Subscribe button doesn’t work #164354
     Radu
    Moderator

    Hi,

    Most sure it’s an error in ajax request, where I can see that (page url)

    Try to enable wp debug to see if some errors appear in debug.log file after you press on the button

    Follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    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: Translation Issue #164352
     Radu
    Moderator

    Hi,
    For the month’s translation

    I see but the month list its part of BuddyPress, can you try please to use default wp theme? to see if it’s the same using a default wp theme? Anyway try to re-sync the buddypress language file and save it then look for the month strings

    The “successfully logged out” message it’s from our theme but it’s translatable field, try to sync in loco translate the kleo_framework language file, after you translate to make sure to empty all caches.

    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: There’s some problem I don’t know how to solve #164351
     Radu
    Moderator

    Hi,

    Are you referring to the top header links? social icons? that you set in wp-admin -> theme options -> social icons ?

    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: facebook-function-login.php edits #164350
     Radu
    Moderator
    Not marked as solution
    in reply to: Some functionality missing in my swwetdate theme #164349
     Radu
    Moderator

    Empty the cache if you have it if still not works provide admin credentials and url in a private reply.

    Add this css

    COPY CODE
    
    #whats-new-options {
        opacity: 1 !important;
        display: block !important;
    }
    
    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: Why user can’t publish nothing? #164348
     Radu
    Moderator
    Not marked as solution
    in reply to: Display membership level to other member #164347
     Radu
    Moderator

    Hi,

    Follow this https://archived.seventhqueen.com/forums/topic/display-membership-level-on-public-profile#post-156233

    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: Avatars #164345
     Radu
    Moderator
    Not marked as solution
    in reply to: Home Register #164344
     Radu
    Moderator

    To be clear!

    The “home register” can be the register page only if you don’t have required profile fields in BuddyPress ( Users -> Profile Fields ).
    Then you should redirect users from original register BuddyPress page to the “home-register” page using this code

    COPY CODE
    
    /* Redirect to Profile if Loggedin */
    add_action( 'template_redirect', 'redirect_to_specific_page2' );
    function redirect_to_specific_page2() {
        if ( bp_is_register_page() && !is_user_logged_in () ) {
            $current_user = wp_get_current_user();
            $profileurl = $current_user->user_login;
            wp_redirect( home_url().'/home-register/', 301 );
            exit;
        }
    }
    

    Then replace home-register with your desired from wp_redirect( home_url().’/home-register/’, 301 ); line

    NOTE : Child theme needs to be installed and activated.

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    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: Home Register #164343
     Radu
    Moderator

    Hi,

    1. In dashboard > Settings > Buddypress > Pages > Register page should be “Register” not “Home Register”

    2. The kleo_register (home register) shortcode will redirect member afteer complete the displayed fields and press register to the original buddypress register page only there are some additional fields to be completed.

    So you want to redirect user in what case ? after they are loggin ?

    If you really need to add or edit existing fields there here is responsable file : wp-content/plugins/k-elements/shortcodes/templates/kleo_register.php but you will need to know some php and html, if you want to rewrite the shortcode i recommend you to copy this file in /wp-content/themes/kleo-child/k_elements

    So, in child theme k_elements folder will have to change where we need

    For the submenu not working i don’t understand exactly where are you referring but make sure to have all plugins update not kleo and buddypress, also try to re-save permalinks from wp-admin -> settings -> permalinks.

    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: 404 Page #164342
     Radu
    Moderator
    Not marked as solution
    in reply to: Some Questions #164341
     Radu
    Moderator
    Not marked as solution
    in reply to: KLEO Lightbox Style Settings? #164340
     Radu
    Moderator

    Hi,

    The css to makes that white isntead of black it’s next

    COPY CODE
    
    .rtmedia-container .mfp-content .rtm-lightbox-container { background: #ffffff !important; }
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta { background-color: #fff !important; }
    
    
    #buddypress .rtmedia-like-info {background:#fff !important;}
    
    #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons {
        color: #000 !important;
    }
    .rtmedia-container ul#rtmedia_comment_ul li, .rtmedia-activity-container ul#rtmedia_comment_ul li {
        background-color: #fff !important;
        }
    
        .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments {
        background-color: #fff !important;
    }
    
    #buddypress #rt_media_comment_form {background:#fff !important;}
    
    div#rtmedia-single-media-container {
        background: #fff !important;
    }
    

    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: Featured Images on CDN #164280
     Radu
    Moderator

    Hi,

    Maybe it was caused by the import in the past where the paths remains the old one, try to re-upload those images and check again

    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: searchable profile fields display ascii characters #164279
     Radu
    Moderator

    Hi,

    Where can i see that live 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: Slider homepage missing and add filter in search #164277
     Radu
    Moderator
    Not marked as solution
    in reply to: Header issue #164274
     Radu
    Moderator

    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: Buy button in the menu bar #164273
     Radu
    Moderator

    Hi,

    Go to wp-admin -> appearance -> menus

    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,

    That it’s so odd, try to update them to latest version if you don’t have it and,

    I think that it’s caused by customizations from quick CSS, can you copy all those and save it for later use then remove it from the theme and test if it behaves normally.

    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: NO send button after writing public message #164271
     Radu
    Moderator

    Hi,

    Add this css

    COPY CODE
    
    #whats-new-options {
        display: block !important;
        height: auto;
        visibility: visible;
    }
    

    Wp-admin -> theme options -> Styling Options -> Quick css

    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 stuck on “Login Successful, redirecting” #164269
     Radu
    Moderator

    HI,

    Cannot reproduce that, isn’t a general problem, it seems to be only on you.

    If you know exact the things that i need to reproduce it let me know

    Also try to reproduce with all plugins deactivated and also the child theme.

    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 make date of birth invisible for members #164268
     Radu
    Moderator

    Hi,

    I see,

    For this matter we cannot help at virus or spam cleaning, you can ask that on the hosting support, or maybe to restore an old backup where your site wasn’t affected

    For security we recommend this plugins:

    https://wordpress.org/plugins/wordfence/
    https://wordpress.org/plugins/sucuri-scanner/

    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: questions #164267
     Radu
    Moderator
    Not marked as solution
    in reply to: Override kleo_ajax_search #164266
     Radu
    Moderator
    Not marked as solution
    in reply to: SQ Monetizer Error When Buddypress is Deactivated #164264
     Radu
    Moderator

    Hi,

    This it’s fixed, please wait few hours max 1 day then an update notice will appear in your wp-admin -> dasuboard -> updates

    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: Sections of Homepage and Search Forms Not Working #164262
     Radu
    Moderator

    Hi,

    Technically each user should log in at least one time to become “active users” then BuddyPress will show the profiles in search results.\
    Try to add this function

    You can try to activate manually accounts with this kind of function that updates the user status in database

    COPY CODE
    <?php 
    $user_id = get_current_user_id();
    add_user_meta( $user_id, 'user_status', '0' );
    ?>

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    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: Mail reception problem #164260
     Radu
    Moderator
    Not marked as solution
    in reply to: Visual Composer Internet Explorer Issues #164257
     Radu
    Moderator
    Not marked as solution
    in reply to: Visual Composer Internet Explorer Issues #164256
     Radu
    Moderator
    Not marked as solution
    in reply to: layout and buttons not the same as advertised #164255
     Radu
    Moderator

    Hi,

    This is how demo it looks

    Comparative with your screenshots, the displayed profile doesn’t have a cover photo uploaded, and if it’s your profile it’s normal buttons add friend and sent message to not appears.

    Also make sure to have all BuddyPress components activated like friends connection and private messaging

    My screenshots was taken from iphone view.

    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: GeoDirectory Homepage Widget Settings are Missing #164254
     Radu
    Moderator

    Hi,

    The GEodirectory settings are there : wp-admin -> geodirectory -> design

    And the map shortcode attributes can be changed from wp-admin -> pages -> edit your homepage then in header content

    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: sort posts #164252
     Radu
    Moderator

    Hi,


    @johnburgess
    please use Kleo posts and use the build query and add the posts name in the “Individual Posts/Pages/Custom Post Types” field.


    @professeur

    Even if you add the complete name of the post?

    The posts it’s in multiple languages ?

    Does it happen only with that post?

    I cannot reproduce on my local install the posts area appearing if I need to do something special 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: Menu #164251
     Radu
    Moderator

    Hi,
    For making more spacing available on the sidebars use that CSS

    COPY CODE
    
    .template-page {
        padding: 0 !important;
    }
    
    .sidebar {
        padding: 0 !important;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    For the headers, I need to see live example, cuz I’m “blind” in this way

    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: Facebook login on mobile not working #164229
     Radu
    Moderator

    Ok let me know
    Cheers

    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
Viewing 40 posts - 6,521 through 6,560 (of 20,101 total)

Log in with your credentials

Forgot your details?