Forum Replies Created

Viewing 40 posts - 8,881 through 8,920 (of 20,101 total)
  • Author
  • in reply to: How can i force the translation? #146204
     Radu
    Moderator

    Hi,

    Please send a screenshot from the files where you have added you own strings, to make translation to work you should add a text domain

    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: WooCommerce product-category pages: Add content #146203
     Radu
    Moderator

    Hi,

    Please use this function : https://archived.seventhqueen.com/general/article/add-shortcodes-content-woocommerce-shop-page

    And instead the is_shop check use is_product_category()

    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: Email Link Redirect #146121
     Radu
    Moderator

    Hi,

    The email notification system it’s default from buddypress, the email settings for buddypress are located in wp-admin -> emails

    Access email section and find your case.

    If you want to modify that please ask this on the buddypress forums.

    I saw that you redirect guest users to packages, so there i think it should be created custom a functionality, we don’t have 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: Messaging Feature Not Working Correctly #146120
     Radu
    Moderator

    In browser console do you have any error ?

    Leave also the wp admin credentials to take a look

    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: Custom Title/Breadcrumb #146119
     Radu
    Moderator

    Hi,

    Here are the CSS selectors first it’s for the page title and the second for the breadcrumb

    COPY CODE
    
    section.main-title h1.page-title {
        font-size: 20px;
        font-weight: lighter;
    }
    
    .kleo_framework.breadcrumb.kleo-custom-breadcrumb, .kleo_framework.breadcrumb.kleo-custom-breadcrumb a {
        font-size: 11px;
    }
    

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

    Hi

    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);
        }
    }
    

    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: Site activity and social share #146104
     Radu
    Moderator

    Hi,

    Do you have the latest version of WordPress ? If not update those

    Do you have the latest version of Kleo theme ? If not update those

    Do you have the latest version of plugins installed ? If not update those

    If you de-activate all plugins it works ? if yes enable back plugins one by one to identify what causes this.

    If you de-activate the child theme it works ?

    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 Membership Pro Levels Page Not Displaying Correctly #146103
     Radu
    Moderator

    Done please check,

    Problem was caused by this order settings

    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: Easy Knowledge Base Incorrect Grouping #146102
     Radu
    Moderator

    Fixed please 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: Buddypress, Bootstrap and related errors #146091
     Radu
    Moderator
    Not marked as solution
    in reply to: Woo commerce help #146090
     Radu
    Moderator

    Hi,

    I don’t know similar plugin like 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: How to add a third button? #146089
     Radu
    Moderator

    Hi,

    In this case should be created an additional JS that correct that.

    Here it’s the JS and can be added to wp-admin -> theme options -> General settings -> Javascript code

    COPY CODE
    
    <script>
    
    jQuery( document ).ready(function() {
        kleoCheckButton();
    });
    var myTimer;
    jQuery(window).scroll(function() {
    	if(myTimer) {
    		window.clearTimeout(myTimer);
    	}
    
    	myTimer = window.setTimeout(function() {
    		// actual callback
    		kleoCheckButton();
    	}, 200);
        
    });
    
    
    function kleoCheckButton(){
        if(jQuery('.kleo-go-top').hasClass('on')){
            jQuery('.kleo-additional-floating-button').attr('style', 'right: 160px;');
        } else {
            jQuery('.kleo-additional-floating-button').attr('style', 'right: 80px;');
        }
    }
    
    </script>
    
    
    

    Adjust 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: Membership Checkout #146084
     Radu
    Moderator
    Not marked as solution
    in reply to: Notifications #146083
     Radu
    Moderator

    Hi,

    It means that one of the admins has send a sitewide notice thru buddypress (see the screenshot)

    While sending a private message and you check sitewide notice all users will receive that.

    This it’s generated by BuddyPress not form KLEO 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: Changing images #146082
     Radu
    Moderator

    Hi,

    There are theme problems or just you don’t know how to configure some plugins ?

    Let me know how can i help you regarding the 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 Show Thumbnail on Recent Post Widget #146081
     Radu
    Moderator

    Hi,

    Not the CSS causes that.

    In the first instance update theme to latest version

    https://archived.seventhqueen.com/documentation/kleo#updates

    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: Member Directory… Search Form #146080
     Radu
    Moderator

    Hi,

    Because the sweetdate it’s older than KLEO

    On my sweet date install last active it’s default option.

    If you want so many featured from KLEO to sweet why you don’t use directly KLEO ?!

    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 Activity Plus and other issues #146079
     Radu
    Moderator
    Not marked as solution
    in reply to: change filter categories #146078
     Radu
    Moderator
    Not marked as solution
    in reply to: Geo Directory Map and Page Title #146077
     Radu
    Moderator
    Not marked as solution
    in reply to: Button color default: Change #146076
     Radu
    Moderator
    Not marked as solution
    in reply to: Unable to save the Theme options #146074
     Radu
    Moderator

    Hi again,

    In this case, it means you can have some PHP file added into child theme or some PHP code that it’s added in child theme functions.php (wp-content/themes/kleo-child/functions.php) that can causes 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: Pageable content #146073
     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: Content Aware Sidebars does not work #146072
     Radu
    Moderator

    An from example another kind of widget appears ? other than profile widget ?

    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: Installation service #146069
     Radu
    Moderator
    Not marked as solution
    in reply to: How to center faq on page #146068
     Radu
    Moderator
    Not marked as solution
    in reply to: kleo_ajax_results #146067
     Radu
    Moderator
    Not marked as solution
    in reply to: Button color default: Change #145950
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Submenu font size #145947
     Radu
    Moderator

    Hi,

    Using this selector

    COPY CODE
    
    .kleo-main-header li.menu-item.open .dropdown-menu, .kleo-main-header li .kleo-toggle-submenu {
        font-size: 17px;
    }
    

    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: Installation service #145946
     Radu
    Moderator
    Not marked as solution
    in reply to: change filter categories #145943
     Radu
    Moderator
    Not marked as solution
    in reply to: Unable to save the Theme options #145942
     Radu
    Moderator

    Hi,

    You will have to enable wp debug to find our what’s going on.

    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 saving theme options action 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: Geo Directory Map and Page Title #145941
     Radu
    Moderator
    Not marked as solution
    in reply to: Double primary field in signup #145940
     Radu
    Moderator
    Not marked as solution
    in reply to: Easy Knowledge Base Incorrect Grouping #145934
     Radu
    Moderator

    I saw that it seems to be a bug, we will have to investigate this next week we will get into this

    Please let the wp admin credentials and FTP to can fix it live on your site

    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: BP Profile Search #145926
     Radu
    Moderator
    Not marked as solution
    in reply to: Member Directory… Search Form #145924
     Radu
    Moderator

    I see, but i don’t have plug and play code for that. And no quick solution to achieve even with the default theme you don;t have that option, ask please on the buddypress forums for 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: How to center faq on page #145922
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 8,881 through 8,920 (of 20,101 total)

Log in with your credentials

Forgot your details?