Forum Replies Created

Viewing 40 posts - 7,201 through 7,240 (of 20,101 total)
  • Author
  • in reply to: Can’t get Geomywp to work #159644
     Radu
    Moderator
    Not marked as solution
    in reply to: Masonry post description #159643
     Radu
    Moderator

    Check it now

    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 – Need full shortcodes list #159641
     Radu
    Moderator

    Hi,

    All docs about the shortcodes and the paraments are located at this address https://archived.seventhqueen.com/documentation/kleo#shortcodes if an element isn’t here yes you should look for it in VC

    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 not display on smartphone #159640
     Radu
    Moderator

    Fixed,
    I’ve used this CSS

    COPY CODE
    @media(max-width:991px) {
        #header span.caret {
        display: block !important;
        width: 100%;
        height: 100%;
        line-height: 30px;
        position: absolute;
        top: 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
    in reply to: Monetize shortcodes #159556
     Radu
    Moderator

    Hi,

    It was built to run shortcodes also but somehow it doesn’t!

    Please replace this file content: /wp-content/plugins/sq-kleo-monetizer/load.php

    With this one: https://pastebin.com/raw/cXdJK6HM

    This will be fixed in next theme update

    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: Resize background image #159554
     Radu
    Moderator

    Hi,

    I don’t understand Spanish, how can I help you?

    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: line on user buddypress activity #159553
     Radu
    Moderator
    Not marked as solution
    in reply to: Single.php #templates #159550
     Radu
    Moderator
    Not marked as solution
    in reply to: Can I hide the left menu for not logged in users #159548
     Radu
    Moderator

    Hi,

    The css code it works maybe do you have something cached?

    The image shows that the CSS provided by me has effect

    Try to check from incognito mode after you place the code in functions.

    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: PHP7 compatibility #159547
     Radu
    Moderator

    @CD

    Can you please make sure to have KLEO version 4.2.3 and then to provide the log of the errors that you get using php7, 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: Trouble with adding a simple icon and text #159546
     Radu
    Moderator

    You’re welcome
    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: Buddypress profil picture upload on mobile #159545
     Radu
    Moderator

    Hi,

    Add this CSS

    COPY CODE
    input#bp-browse-button {
        pointer-events: all !important;
    }

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

    NOTE : Child theme needs to be installed and activated.

    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

    Hi,

    The content of the shortcode it’s rendered somehow into pre and code tags

    If you de-activate rest of the plugins except buddypress and featured member plugin from buddydev it looks ok?

    Using default wp theme twenty sixteen it’s displayed in same tags ? code and pre ?

    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

    Great

    You’re welcome

    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: make members searchable by only one specific field #159539
     Radu
    Moderator
    Not marked as solution
    in reply to: Avatar not cropping. VERY tiny dot (pic) #159537
     Radu
    Moderator

    Hi,

    I’ve followed your steps trying to reproduce that but I cannot, maybe it’s something isolated at you?

    Did you have latest theme version?

    IF you de-activate child theme ( if you have it ) it works?

    If you de-activate all plugins except BuddyPress 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: mobile sticky menu #159536
     Radu
    Moderator

    Hi,

    Pelease check now it should be ok

    I’ve added tthis css to quick css area instead the old one that maakes alaso the topbar fixed

    COPY CODE
    
    @media(max-width:991px){
        
        div#undefined-sticky-wrapper.is-sticky .kleo-main-header{
        position: fixed !important;
        width: 100%;
        margin-top:-35px;
        }
    
    }
    

    1. I’ve added the logo also on the retina field in theme options -> header options.

    2. It’s ok now

    3. The resize ooption it’s available only on desktop since the theme doens’t have the fixed menu on mobile cannot benefit for the resize funciton.

    If you really need the resize funciton on mobile you can get a quote from our development team at this address dev@seventhqueen.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: line on user buddypress activity #159530
     Radu
    Moderator
    Not marked as solution
    in reply to: Specific Results #159529
     Radu
    Moderator

    Hi,

    I don;t have a plug and pay solution to check what sex it’s logged in but this can be done by using this function xprofile_get_field_data()

    Using this function you should be able to conditionate as you need

    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: Can I hide the left menu for not logged in users #159494
     Radu
    Moderator

    Hi,

    Add this function instead the laura solutions

    COPY CODE
    
    
    function hide_sidemenu_guest() {
        if(!is_user_logged_in()) {
            ?>
            <style>
                div#sidemenu-wrapper {
                    display: none;
                }
    
                div#page-wrapper,#header {
                    padding: 0 !important;
                }
    
            </style>
    
            <?php
        }
    
    }
    
    add_action('wp_head', 'hide_sidemenu_guest');
    

    The code will be added to wp-content/themes/buddyapp-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
     Radu
    Moderator
    Not marked as solution
    in reply to: menu not display on smartphone #159491
     Radu
    Moderator

    Hi,

    Somehow the site was working for 2-3 minutes then stays in loading :

    I need to see the live site to can investigate further, let me know when it works

    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: Conditional menu not working on mobile? #159487
     Radu
    Moderator

    I cannot see that, maybe it’s a cache issue ?

    TRy from another phone or incognito mode

    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: Masonry post description #159486
     Radu
    Moderator

    Hi,

    Sorry for the late reply, you run on php7 ?

    Can you please provide FTP credentials ? to take a closer look?

    On mine the excerpt it’s limited using that solution and also on other users install.

    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: Problem with “ShowDown” plugin – site crashes #159485
     Radu
    Moderator

    Hi,

    In the first instance, please enable wp debug to see what error it’s there and provide here the debug.log file

    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

    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: Admin Bar WordPress #159484
     Radu
    Moderator

    Hi,

    This snippet it works, I’ve tested

    For me (Admin) it’s shown but for subscriber it’s hidden

    COPY CODE
    
    add_action('init', 'add_admin_bar_for_admins');
    
    function add_admin_bar_for_admins() {
        if (current_user_can('Administrator') OR current_user_can('Editor') ) {
            show_admin_bar(true);
        }else {
            show_admin_bar(false);
        }
    }
    

    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,

    Did you have tried to use the native buddyPress emailing templates ?

    Wp-admin -> emails ->

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

    <?php add_user_meta( $user_id, 'user_status', '0' ); ?>

    Then you can redirect with this function from example

    COPY CODE
    
    function sq7_rdu_redirect( $redirect_to, $request, $user ) {
    $redirect_to = 'http://google.com/my-super-link/';
    return $redirect_to;
    }
    add_filter('login_redirect', 'sq7_rdu_redirect');

    links : https://wordpress.stackexchange.com/questions/117522/send-user-activation-email-when-programmatically-creating-user

    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 Layout #159480
     Radu
    Moderator

    Hi AdamK,

    I’ve replied you here : https://archived.seventhqueen.com/forums/topic/profile-cover-image-3#post-159479

    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 cover image? #159479
     Radu
    Moderator

    Hi AdamK,

    For having full width cover profile go to wp-admin -> theme options -> buddypress-> set on for Enable Full width Profile Header and additionaly for the groups the same.

    For change profile display name use this plugin : https://wordpress.org/plugins/buddypress-real-names/

    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: PHP7 compatibility #159478
     Radu
    Moderator

    Hi @CD

    WE have fixed in the past this kind of errors under php7

    You are on wp engine ?

    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

    You’re welcome
    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: Live Notifications Menu CSS #159476
     Radu
    Moderator

    Guys, can you confirm if the live notifications issue it happens only when you add the live notifications menu item in another place then the main menu? from example top bar?
    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: Live Notifications Menu CSS #159475
     Radu
    Moderator

    Hi,
    It’s on the list, we will be fixed this week, we will let you know
    Thank you for your patience

    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: Contact form 7 and Login #159474
     Radu
    Moderator

    It works with php7 but sometimes may see some notices in debug.log file

    The forum isn’t unreachable.

    For the captcha o registration page, i cannot investigate since the forum isn’t recheable

    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: Registration email options #159473
     Radu
    Moderator

    Hi,

    Make sure you have an email template created for that case, if you don’t have it create it

    I have all those like that by default

    This is what code contains the activation email

    COPY CODE
    Thanks for registering!
    
    To complete the activation of your account, go to the following link: <a href="{{{activate.url}}}">{{{activate.url}}}</a>

    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 issue #159472
     Radu
    Moderator

    You’re welcome

    Have a nice week
    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: Can’t get Geomywp to work #159471
     Radu
    Moderator
    Not marked as solution
    in reply to: WP Event Manager #159467
     Radu
    Moderator

    Great
    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 AREA #159466
     Radu
    Moderator

    Ok then
    There is not a certain limit, you can add your desired fields.
    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: BuddyPress & Theme Customiser #159460
     Radu
    Moderator

    Hi,

    On my local I cannot reproduce that issue, do you run somehow PHP7?

    Do you encounter the same issue on localhost and also on live?

    Did you have tried to re-download the theme and to re-upload theme files over the existing one?

    It’s hard to guide you since I cannot reproduce this on my local install

    Cheers
    R.

    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 - 7,201 through 7,240 (of 20,101 total)

Log in with your credentials

Forgot your details?