Forum Replies Created

Viewing 40 posts - 7,961 through 8,000 (of 20,101 total)
  • Author
  • in reply to: Facebook sign up button #153913
     Radu
    Moderator
    Not marked as solution
    in reply to: Bug issue from Grid masonry columns rows setting #153910
     Radu
    Moderator

    Hi,

    Do you have somehow Combine theme JS files -> ON in wp-admin -> theme options -> modules and speed ?

    Use this CSS

    @media(min-wdith:992px) {
    .responsive-cols.per-row-4 > * {width:24.9% !important;}
    }

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

    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: Kleo and WP/BP-Idea-Stream #153909
     Radu
    Moderator

    Hi,

    Glad if you have solved but if you have modified the plugin file on the plugin update this will be rewritten ask the plugin author how you can overwrite the plugin template in 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 don’t use Google font ? #153908
     Radu
    Moderator

    Hi,

    If you want to not use google fonts read this ticket it allows you to add any font you want to your website

    https://archived.seventhqueen.com/forums/topic/how-can-register-japanese-font/#post-94592

    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: Show Custom Post Type CPTs and use kleo masonry #153907
     Radu
    Moderator

    Hi the kleo post templates are located in kleo theme directory

    Most probably you will have to copy from example the content-audio.php file to child theme and to rename it to content-tabbuddypress.php and inside build your loop template and then form your snippet instead of calling get_template_part( ‘bpawesome’ ); you will have to call get_template_part( ‘content’, ‘tabbuddypress’ ); kind of

    Read here how the get template works https://konstantin.blog/2013/get_template_part/

    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: Posting Photos In The Status Update/Activity Feed #153906
     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: change icon #153902
     Radu
    Moderator

    Hi,
    can you please provide admin credentials to can view the members page and also a screenshot that points out the icon ?
    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,

    Please follow this article link : https://archived.seventhqueen.com/kleo/article/remove-kleo-wordpress-tinymce

    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: Adding smilies to messages and comments #153895
     Radu
    Moderator

    Thank you for providing this

    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 issues I would like to get ride #153894
     Radu
    Moderator

    Hi,

    IT sees the site it’s public

    Add this CSS

    COPY CODE
    
    @media(max-width:620px) {
        .logo img {max-width:400px;}
    }
    
    @media(max-width:530px) {
        .logo img {max-width:300px;}
    }
    
    @media(max-width:440px) {
        .logo img {max-width:250px;}
    }
    

    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: Quick contact form #153893
     Radu
    Moderator

    Hi,

    Using Contact Form 7 Plugin you are able to create the fields that you need then paste the form shortcode to wp-admin -> theme options -> Layout settings -> Contact form text*

    That’s all
    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 issues I would like to get ride #153888
     Radu
    Moderator

    Hi,

    The problem it’s because the logo it’s to wide it should be little tweaked with CSS

    Please provide to me correct login data to can give you a accurate 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: How to Change The “leave a Replay” Label #153887
     Radu
    Moderator

    What div wraps ?! what do you mean the button should be on the right side?

    Q: how do we add that div back into the comment form? or can we just ass CSS?
    R: The function removes the div? the function doesn’t write any div, as you can see in function content.

    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,

    If you de-activate all plugins except woocommerce this will work ? also try to de-activate the child theme when disable plugins

    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: Essential Grid in a Tab #153885
     Radu
    Moderator

    Hi,

    We have contacted the essential grid team we are waiting the response and we will let you 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: Problem with hiding toolbar for some roles #153878
     Radu
    Moderator

    Hi,

    De-activate for hiding admin bar plugins

    Set hide admin bar from admin -> theme options -> misc then add this code to child theme ( wp-content/themes/kleo-child/functions.php )

    COPY CODE
    
    add_action('after_setup_theme', '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);
        }
    }
    

    Instead of editor role add your desired

    Note : Child theme needs to be installed and activated

    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: Styling the search form #153876
     Radu
    Moderator

    Hi again
    You’re welcome
    .page-id-7504 .kleo-search-form #searchform .input-lg {
    border: 2px solid #003300;
    }

    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,

    This isn’t possible, we already working on the portfolio shortcode to improve it we will take in consideration also the subcategory scenario

    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 #153874
     Radu
    Moderator
    Not marked as solution
    in reply to: rt Media update 4.3 #153873
     Radu
    Moderator

    If you de-activate your child theme? Is it the same?

    I’m using rtmedia 4.3 and I cannot see 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: Support with creating a couple of things #153870
     Radu
    Moderator

    Hi,

    1. For that you should search for a plugin that gives you this possibility and this kind of plugin should be named like BuddyPress notes kind of, in the wp repository this kind of plugin doesn’t exist maybe on CodeCanyon or in another place with premium plugins or hire a developer to develop this functionality for you.

    2. Personally, i don’t know a plugin that can do that, maybe using a guestbook plugin?

    3. there is no matching logic for KLEO theme and even using SweetDate your needs cannot be covered by default and it should be modified by a WordPress developer.
    To can have achieve that functionality in KLEO you should hire a wp developer

    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: Adsense Plugin that works with Paid Membership Pro? #153869
     Radu
    Moderator

    If you use those in widget area the php codes sure will not work and you will have to use shortcodes

    All pmpro conditional shortcodes are here :

    So you will have to place your banner code inside the shortcodes

    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: Little bug detected #153731
     Radu
    Moderator

    Ok added to buglist we will let you 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: Capcha for kleo_register shortcode #153729
     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: Styling the search form #153728
     Radu
    Moderator

    TRy using next instead of : .page-id-7504 .kleo-search-form #searchform .input-lg::placeholder {color:#fff;}

    COPY CODE
    
    .kleo-search-form #searchform .input-lg::-webkit-input-placeholder { /* Safari, Chrome and Opera */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-moz-placeholder { /* Firefox 18- */
      color: #fffff;
    }
     
    .kleo-search-form #searchform .input-lg::-moz-placeholder { /* Firefox 19+ */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-ms-input-placeholder { /* IE 10+ */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg::-ms-input-placeholder { /* Edge */
      color: #fffff;
    }
     
    .kleo-search-form #searchform .input-lg:placeholder-shown { /* Standard one last! */
      color: #fffff !important;
    }
    
    .kleo-search-form #searchform .input-lg:placeholder-shown { /* Standard one last! */
      color: #fffff !important;
    }
    
    .kleo-search-form #searchform .input-lg::-webkit-input-placeholder { /* Safari, Chrome and Opera */
      color: #fffff !important;
    }
     
    .kleo-search-form #searchform .input-lg:-moz-placeholder { /* Firefox 18- */
      color: #fffff;
    }
    

    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: Sliders disabled via CSS on responsive screen sizes #153725
     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: Capcha for kleo_register shortcode #153724
     Radu
    Moderator

    Hi,

    Most sure there it’s something out of date, you should update theme to latest version (4.1.8) and also the K-elements and Visual composer plugins you can update those from wp-admin -> appearance -> install plugins.

    Then that option should appear there

    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 #153723
     Radu
    Moderator
    Not marked as solution
    in reply to: Portfolio Issue #153722
     Radu
    Moderator
    Not marked as solution
    in reply to: Essential Grid in a Tab #153721
     Radu
    Moderator

    It’s ask me to login, so provide also an account in a private reply to can see the behaviour 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: Bugs and Issues #153720
     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
     Radu
    Moderator

    They are looking ok 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: Isotope #153718
     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: Site Activity, Sidebar Avatar, Notifications #153717
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    No, there no quick solution for that right 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: Adsense Plugin that works with Paid Membership Pro? #153715
     Radu
    Moderator

    Hi,

    This conditional tag it works make sure to not making something wrong

    COPY CODE
    
    //1,2 represents id's of packages that you want to see your message
     
    if(pmpro_hasMembershipLevel(array(1,2), get_current_user_id())){
        echo 'banner code'
    ;}
    }
    

    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: Breadcrumb as shortcode & Header right widget #153714
     Radu
    Moderator

    Hi,

    1. The theme doesn’t have any shortcode for breadcrumbs.

    2. You should add a secondary menu and in that you will have to add a menu item from example your link that will be transformed to a button style by choosing Menu Style.

    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: Sliders disabled via CSS on responsive screen sizes #153706
     Radu
    Moderator

    MAke sure to not have this on in wp-admin -> revolution slider -> choose your slider

    If that it’s ok

    Add this CSS to wp-admin -> theme options -> stylion options -> quick CSS

    COPY CODE
    
    
    @media(max-width:767px) {
    	.rev_slider_wrapper { display: block !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
Viewing 40 posts - 7,961 through 8,000 (of 20,101 total)

Log in with your credentials

Forgot your details?