Forum Replies Created

Viewing 40 posts - 5,641 through 5,680 (of 20,101 total)
  • Author
  • in reply to: 406 error on log in #171649
     Radu
    Moderator

    Hi,

    Hope you have solved.

    FYI: The 406 error it’s a server error and our theme cannot interfere with that, see here the technical explanation for that: http://www.checkupdown.com/status/E406.html , so calling to the hosting provider should be solved the issue.

    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: Global search for multisite with ajax search #171648
     Radu
    Moderator

    No problem
    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: favorite count #171647
     Radu
    Moderator

    Hi,

    I think it can be placed there but, the kleo likes don’t have the possibility to see who likes that, so if it’s ok I will look for a workaround.

    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 Posts resizing with custom CSS #171646
     Radu
    Moderator

    Hi,

    This is how it looks for me by default

    But if you still need to adapt the size on kleo posts but only there, you will have to add a specific class to the row that contains or directly to the Kleo Posts element from visual composer backednd(see screenhsot)

    Then you will have this css rule

    COPY CODE
    
    @media (max-width: 1199px) and (min-width: 992px) {
        .responsive-cols.kleo-masonry.mycustomclassname {
            width: 50% !important;
        }
    }
    

    Or this one, test both, see what’s ok for you.

    COPY CODE
    
    @media (min-width: 992px) {
        .responsive-cols.kleo-masonry.mycustomclassname {
            width: 50% !important;
        }
    
    }
    

    Change the width 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: Many responses in the forum linked to ADMIN #171644
     Radu
    Moderator

    The theme can be changed from wp-admin -> appearance -> themes, press activate on twenty seventeen or tweentysixteen.

    Then look again if the replies are linked to the admin on bbpress.

    After you look at that, you can revert the previous theme back, from wp-admin -> appearance -> themes

    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: Paid Members Ship Pro #171643
     Radu
    Moderator

    Hi,

    If you had chosen to restrict the community to private, make sure to have the pmpro related pages added in wp-admin -> appearance -> theme options -> Make my site private -> Page Exceptions

    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: Paid Members Ship Pro #171642
     Radu
    Moderator

    Hi,

    If you had chosen to restrict the community to private, make sure to have the pmpro related pages added in wp-admin -> appearance -> theme options -> Make my site private -> Page Exceptions

    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: Blog meta author link #171639
     Radu
    Moderator

    Hi,

    You’re welcome

    If you are satisfied by our client support service please leave a positive review about this on the themeforest.net KLEO page : https://themeforest.net/item/kleo-next-level-wordpress-theme/reviews/6776630

    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
    Not marked as solution
    in reply to: Portfolio expand window dimension #171635
     Radu
    Moderator

    Hi,

    You’re welcome

    The theme settings from parent and child are separated, example : if you have child theme activated and you have made your theme adjustments using the child theme, when you activate the parent theme the theme options remain in child theme to can have that in both variants you should import from child theme to parent theme the theme settings that can be imported/exported from wp-admin -> theme options -> import/export.

    So, settings from child to parent and vice-versa are separated, you will have to import the theme settings from one to another.

    Hope all clear now, if not let me know.

    You’re very 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

    Hi,

    If you remove all css and you see that(wired layout ) it’s because you have a line height to big (350px)

    Please take a look at the video: https://drive.google.com/file/d/0Bxo5b6iHWRMwdFRWMFRKZEthSHc/view

    This how it looks on mobile, as you can see there is no mobile menu toggle… cuz it’s hidden by a quick CSS code.

    I’ve made some adjustments live on inspect console how it should look and works in my opinion as UX on mobile devices

    see the video: https://drive.google.com/file/d/0Bxo5b6iHWRMwb0J4T2M2bU1nUjQ/view

    watch both videos in HD

    IF you want to have header bigger let me know where on mobile? on dekstop? and how ? draw me over or made a screenshot that points there with explicative notes how you need that to can solve your header problem 🙂

    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: how to get amp version for my buddyapp theme? #171632
     Radu
    Moderator

    Hi,

    You can test this plugin: https://wordpress.org/plugins/amp/ I’ve tested successfully with BuddyApp in a post page, you should add /amp ad the end of the URL, but I don’t think this will work with BuddyPress

    https://buddypress.org/support/topic/bp-and-amp/

    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 conflict with Woocommerce #171628
     Radu
    Moderator

    Hi,

    I think for that thing ( scrolling in another section than Don )you should ask the plugin developer since in that page the plugin modifying the default behaviour.

    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 ADD SEARCH PRODUCTS IN MOBILE MENU #171626
     Radu
    Moderator

    Hi,

    To have search menu item first instead of latest use the next code

    COPY CODE
    
    function kleo_search_menu_item($items, $args)
    {
        if (sq_option('ajax_search', 1) == 'logged_in' && !is_user_logged_in()) {
            return $items;
        }
    
        $location = sq_option('menu_search_location', 'primary');
    
        if ($args->theme_location == $location) {
            $form = kleo_get_search_menu_item();
            $items = '<li id="nav-menu-item-search" class="menu-item kleo-search-nav">' . $form . '</li>' . $items;
        }
    
        return $items;
    }
    
    

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

    NOTE: Child theme needs to be installed and activated.

    The results will pull rest of the menu items.

    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: Total blog items and “Load More” button #171542
     Radu
    Moderator

    Hi,

    Sorry I’ve forgotten to mention.

    The snippet should be added to wp-content/themes/buddyapp-child/functions.php

    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

    Hi,

    Ok I see that thanks you for reporting, please let us 1-2 days to investigate and to fix the issue.

    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: Media link in buddypress showing dobble #171536
     Radu
    Moderator
    Hi, RE-saving theme options may helps, give a try it will regenerate the dynamic.css. I've tried to reproduce that in my local install and I cannot the counter are there! Try to deactivate all plugins except BuddyPress and child theme to test if one of those causes that Let me know Cheers R.
     Radu
    Moderator
    Not marked as solution
    in reply to: Problems after update to 4.2.9 #171534
     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: “Add element” not working #171533
     Radu
    Moderator

    Hi,

    Please update the theme to the latest version, if it’s already, deletes the plugins Visual Composer and K-elements from wp-admin -> plugins ->

    Then go to Appearance -> install plugins and install the plugins back.

    Let me know, if not works please provide admin credentials to check

    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: Search feature returning secured information #171532
     Radu
    Moderator
    Not marked as solution
    in reply to: Portfolio expand window dimension #171531
     Radu
    Moderator

    Hi,

    Just copy the file

    /wp-content/themes/kleo/page-parts/portfolio-masonry.php
    to child theme
    /wp-content/themes/kleo-child/page-parts/

    then edit the file in the child theme line 155

    That’s all

    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
    in reply to: API Facebook #171530
     Radu
    Moderator

    No problem
    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: Demo Import #171529
     Radu
    Moderator

    Hi,

    I saw that and I’ve tried to reproduce that on our demo and on my local install and I cannot! The issue can be caused by one of your plugins.

    So, with the provided account there is no access to the plugins section, and just deactivate all plugins except BuddyPress and check if you encounter the same issue.

    If yes update the theme or reupload it cuz that it should work I’ve tested on both installs demo and mine.

    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 doc link that you had send it’s part of rtDating, one of their theme.

    In our theme, you can hide the cover upload links using this css

    COPY CODE
    
    
    .profile-cover-action {
        display: none;
    }
    
    a#change-cover-image {
        display: none !important;
    }
    

    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: private messages issues #171523
     Radu
    Moderator
    Not marked as solution
    in reply to: rtMedia in activity streams & notifications #171522
     Radu
    Moderator

    Hi,

    I don’t have any idea,

    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: Place Order is Disabed #171521
     Radu
    Moderator
    Not marked as solution
    in reply to: Many responses in the forum linked to ADMIN #171520
     Radu
    Moderator

    Hi,

    Let me know if you are using the default wp theme the same! if yes it means that has nothing to do with our theme but if yes follow the next paragraph.

    the -1 response can be caused by some third party plugins or child theme modifications I recommend you to deactivate all plugins and to check again if the issue disappears enable plugins back one by one and check until you find the cause. Also if it’s the same with all plugins de-activated de-activate also the child theme besides the all plugins and check.

    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: Paid Members Ship Pro #171519
     Radu
    Moderator

    Hi,

    TO can see those pages as GUEST you should turn off the maintenance plugin!!!!

    Just I’ve turned off and the payment flow works as it should

    As you can see I’m able to choose package and to complete with my details.

    I will enable back the plugin, so when you test it just de-activate it.

    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: Specific Search Fields #171517
     Radu
    Moderator
    Not marked as solution
    in reply to: Home Page Image Issue #171516
     Radu
    Moderator
    Not marked as solution
    in reply to: Problems after update to 4.2.9 #171438
     Radu
    Moderator

    Hi,

    The hover issue on notifications and cart fixed

    Just add the next function to functions.php child theme (wp-content/themes/kleo-child/functions.php)

    COPY CODE
    
    function sqr_fix_hover_22082017() {
    	
    	echo '
    <style>
    .open .kleo-toggle-submenu { display:block !important; }
    </style>
    	';
    
    }
    add_action('wp_footer', 'sqr_fix_hover_22082017');
    
    

    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
    in reply to: Portfolio expand window dimension #171437
     Radu
    Moderator

    Hi,

    Let me know if you have solved that, cuz there I see more than 3 per lines and also a lot of portfolio items (multiple lines) if you haven’t solved just explain to me what you need to achieve.

    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
    Not marked as solution
    in reply to: Membership Level and Forum Role #171432
     Radu
    Moderator

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

    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
Viewing 40 posts - 5,641 through 5,680 (of 20,101 total)

Log in with your credentials

Forgot your details?