Forum Replies Created

Viewing 40 posts - 7,041 through 7,080 (of 20,101 total)
  • Author
  •  Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .main-color .hr-title abbr, .main-color .kleo_ajax_results h4 span, .main-color #buddypress .activity-read-more a {
        background: #fff;
    }
    

    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: Only one youtube video seems to load funny #160970
     Radu
    Moderator

    Ok
    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 url and breadcrumbs not showing. #160968
     Radu
    Moderator

    Hi,

    But the link doesn’t contain the /blog/ you should change the permalink structure to do that
    You can try this plugin https://wordpress.org/plugins/custom-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: New filter for groups #160967
     Radu
    Moderator

    Hi,

    The group types cannot be easily added there, I’ve tried but I cannot see any quick solution for that.
    You can try to make a list of links for every group type in goup page or where you need and show it as menu type.

    Links example :

    http://localhost/kleo/groups/type/vips/
    http://localhost/kleo/groups/type/default/

    If you cannot handle that I recommend you to hire a developer to help you, since those are not theme problems.

    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: memberships vs. subscribers #160965
     Radu
    Moderator

    Hi,

    To can view all new registered members also under pmpro you should give a certain pmpro role once with registration, to can do that use the next code by pasting it in wp-content/themes/kleo-child/functions.php

    1 from pmpro_changeMembershipLevel(1, $user_id); Represents PMpro role id and change with your desired one

    COPY CODE
    
    /**
    	* When registering, add the member to a specific membership level 
    	* @param integer $user_id
    **/
    
    //Disables the pmpro redirect to levels page when user tries to register
    add_filter("pmpro_login_redirect", "__return_false");
    
    function my_pmpro_default_registration_level($user_id) {
    	//Give all members who register membership level 1
    	pmpro_changeMembershipLevel(1, $user_id);
    }
    add_action('user_register', 'my_pmpro_default_registration_level');
    

    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: Changed http:// to https://www and #160964
     Radu
    Moderator
    Hi, Ok, thank you, glad if you have figured out what causes that. You can turn off the debug now, the only error in debug log it's that fatal error related to the PHP memory Allowed memory size of 268435456 bytes exhausted, you can increase the PHP memory using this guide: https://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html That notices can be ignored Cheers R.
    in reply to: Members second page bugged. #160960
     Radu
    Moderator

    Hi,

    I cannot see any member item in the menu, maybe because I’m a guest, provide a login in a private reply to can take a look, 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: Fatal error updating K Elements #160959
     Radu
    Moderator

    Hi,

    Go to wp-admin -> plugins -> look for k-elements and delete it.

    Go to wp-admin -> appearanca -> install plugins -> Install K-elements.

    In this way, the newer version will be installed directly.

    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: Cannot find homepage download for Agency Demo #160956
     Radu
    Moderator

    Hi,

    Go to wp-admin -> appearance -> Kleo demo data -> Kleo agency -> import

    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: Broken links in my Media Library #160955
     Radu
    Moderator
    Not marked as solution
    in reply to: Transparent drop down menu color #160952
     Radu
    Moderator

    Hi,

    Actually there it’s a z-index problem, the search should be shown if you open the submenu, please use this CSS instead of the last one.

    COPY CODE
    @media(max-width:991px){
        .kleo-main-header, .kleo-main-header li.menu-item {z-index:1;}
    }

    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: Plugins causing problems with main menu #160950
     Radu
    Moderator

    Hi,

    1. Go to that specific page where the problem it happens and activate wp_debug (see how below) and refresh the page 1-2 times.

    2. That behavior it’s common when a plugin loads the bootstrap framework over our version of bootstrap, so check in that plugin settings if haves any option to prevent bootstrap js framework to loading.

    Let me know

    Cheers
    R.

    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: I cant register Kleo theme #160948
     Radu
    Moderator
    Not marked as solution
    in reply to: WooCommerce Bug? #160947
     Radu
    Moderator

    Hi,

    I’m not able to reproduce that, I’ve tried multiple times using Kleo theme, do you have possibility to make a video to see exactly how that it happens, 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: Woocommerce odd behaviour #160945
     Radu
    Moderator
    Not marked as solution
    in reply to: Alternate Background Color to Transparent #160944
     Radu
    Moderator

    The div main it’s always under the sections so it’s useless if you choose for certain sections background transparent if the section it’s wrapped in a white background div…

    Only in this way, you can have what you need but you should add the white background for certain sections or set white background for main color but for alternate color choose background transparent.

    The theme option works but, the main div has by default white background.

    I’ve used this css

    COPY CODE
    div#main {background:transparent;}
    
    .article-content section.alternate-color {background:transparent  !important;}
    
    .article-content section.main-color { background: lightblue !important;}

    To can have sections transparent to the background you should set for the main div transparent.

    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 & REGISTRATION #160938
     Radu
    Moderator
    Not marked as solution
    in reply to: Expand widget area #160937
     Radu
    Moderator

    Hi

    Just add this css to quick css area

    COPY CODE
    
    @media (min-width: 768px) and (max-width: 991px) {
    
        .kleo-masonry-item, .kleo-isotope>li, .template-page.col-sm-12 .kleo-masonry-item, .template-page.col-sm-12 .kleo-isotope>li, .template-page.col-sm-12 .section-container.container-full .kleo-isotope>.kleo-masonry-item, .template-page.col-sm-12 .section-container.container-full .kleo-isotope>li {
            width: 100%;
        }
    }
    
    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: Replace comment button with font awesome icon #160935
     Radu
    Moderator
    Not marked as solution
    in reply to: how to implement few requirements #160806
     Radu
    Moderator

    Hi,

    For the 2. we don’t have a ready solution for that.

    Related to that plugin, we need some time to investigate and implement that, meanwhile, can you check how it’s with default wp theme? Is it displayed somewhere in frontend?

    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: Bad Rediriction n BuddyPress #160799
     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: Woocommerce odd behaviour #160798
     Radu
    Moderator
    Not marked as solution
    in reply to: Sidebar Color #160797
     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: Alternate Background Color to Transparent #160796
     Radu
    Moderator

    Add also this css

    COPY CODE
    
    section.container-wrap {
    background:transparent;
    }
    
    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 listing and/or finding members #160795
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    I was able to make a row full width in post

    You should have post layout select to full width

    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
    Not marked as solution
    in reply to: Right menu activity count #160792
     Radu
    Moderator

    Hi,

    What plugins are you using?
    Check in that plugin’s settings the count number should be between span tags

    COPY CODE
    
    <span>my count</span>
    

    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, Try to do the next: Go to wp-content/plugins/k-elements/admin/tiny_mce.php at line 60 (see the next screnshot) You will have to remove the / before the admin from K_ELEM_PLUGIN_URL . '/admin/tinymce/plugin.js'; Let me know Cheers R.
     Radu
    Moderator

    Hi,

    Install this plugin and configure it with the requested details.

    https://wordpress.org/plugins/wp-mail-smtp/

    Also, check if recipient address it’s ok in wp-admin-> woocommerce -> settings -> emails.

    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,

    I cannot reproduce that I’ve tested on my local install
    Take a look: https://drive.google.com/file/d/0Bxo5b6iHWRMwYUc2T01xT2FhVW8/view

    If I missed something let me know and make a video that shows exactly how to reproduce that.

    Try to re-upload theme files or to update 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

    Also this can be helpful https://www.paidmembershipspro.com/tag/login-link/

    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,

    In pop-up, you can change the login URL from this file: /wp-content/themes/kleo/page-parts/general-popups.php

    You will have to copy this file to the child theme ( wp-content/themes/kleo-child/page-parts/ ) to can update the theme without losing the changes.

    See the next screenshot, change wp-login.php to your new route
    http://seventhqueen.com/public-files/radu/general-popups.php_-_kleo_-_ApplicationsXAMPPhtdocskleo_2017-05-09_16-17-32.png

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Transparent drop down menu color #160773
     Radu
    Moderator

    Hi,
    use this CSS

    COPY CODE
    
    ul.ubermenu-submenu {
        position: initial !important;
    }
    

    The search will be below the expanded submenu

    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 disable the matching algorithm #160730
     Radu
    Moderator

    Hi,

    Ok then remove that code if doesn’t work and follow the next.

    Matching can be disabled from wp-admin -> theme options -> Profiles matching

    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 #160729
     Radu
    Moderator

    Hi,

    It’s the same from what I see on the demo, until theme update use this fix, add the next CSS.

    COPY CODE
    
    .bp-uploader-window .moxie-shim.moxie-shim-html5 {
    width:100% !important;
    height:100% !important;
    position:absolute;
    display:block;
    top:0 !important;
    left:0 !important;
    }
    

    The upload button it’s clickable as it should.

    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 Bug? #160727
     Radu
    Moderator

    Hi,

    Guys, it’s same behavior using default wp theme ( twenty-seventeen ? ) If yes it means that the way how the woocommerce handle that, if not 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: Blog url and breadcrumbs not showing. #160726
     Radu
    Moderator

    Hi,

    Because the breadcrumb structure follows the URL structure.
    As you can see the breadcrumb route it’s same as URL

    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: Testimonials show quotes instead of image #160725
     Radu
    Moderator

    Hi,

    I think it’s related to this: https://wpml.org/forums/topic/no-featured-images-in-other-language/

    Can you please provide FTP login details, please? to can test multiple solutions and different technical approaches?

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

Log in with your credentials

Forgot your details?