Forum Replies Created

Viewing 40 posts - 16,881 through 16,920 (of 20,101 total)
  • Author
  •  Radu
    Moderator

    Hi,

    Go to http://asahi9.tngbl.co/wp-admin/admin.php?page=revslider

    Select your slider by pressing the settings button then scroll down to bottom. ( see screenshot )

    Play with the grid sizes from Layer Grid Size section

    Cheers

    Radu

    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 make thumbnail Bigger ? #95114
     Radu
    Moderator

    Try to replace code with this

    COPY CODE
    
    @media(min-width:700px) {
    
    .woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
    height:55px !important;
    width:auto !important;}
    
    }
    

    Cheers

    Radu

    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: Main Nav menu styling #95113
     Radu
    Moderator

    Hi,

    Control menu neight with this css

    COPY CODE
    
    
    .kleo-main-header.header-left:not(.header-scrolled) .navbar-collapse>ul>li>a {
        line-height: 45px!important;
    }
    
    

    Regarding the menu bar please provide a screenshot that pointing out the menu bar

    Cheers

    Radu

    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: Header background image #95111
     Radu
    Moderator

    Hi,

    Can you please provide your website url to can see the behaviour ?

    Cheers

    Radu

    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: Visual Slider #95107
     Radu
    Moderator

    Hi,

    The widget names can be edited from here : /wp-content/plugins/k-elements/compat/plugin-js-composer/config.php

    Search for widgets name and rename it.

    Cheers

    Radu

    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: bbpress blue label & border #94931
     Radu
    Moderator

    Hi idaeback

    Add this function to your wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    
    add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' );
    
    function ntwb_bbpress_custom_role_names() {
    	return array(
    
    		// Keymaster
    		bbp_get_keymaster_role() => array(
    			'name'         => 'My Custom Keymaster Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
    		),
    
    		// Moderator
    		bbp_get_moderator_role() => array(
    			'name'         => 'My Custom Moderator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
    		),
    
    		// Participant
    		bbp_get_participant_role() => array(
    			'name'         => 'My Custom Participant Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    		),
    
    		// Spectator
    		bbp_get_spectator_role() => array(
    			'name'         => 'My Custom Spectator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
    		),
    
    		// Blocked
    		bbp_get_blocked_role() => array(
    			'name'         => 'My Custom Blocked Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
    		)
    	);
    }
    

    Let me know

    Cheers

    Radu

    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 on hover color background #94929
     Radu
    Moderator

    Hi,

    Please replace that code with this

    COPY CODE
    
    .kleo-main-header ul.dropdown-menu li a:hover {
        background-color:red !important;
    }
    

    Sorry for misunderstanding.

    Cheers

    RAdu

    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 image by register #94928
     Radu
    Moderator

    Hi,

    Sorry for misunderstanding,

    What do you want is to make another filed in this case an image field that will be required at registration, if i understand correctly this is not possible without dedicated hours of work, out forum doesn’t offer support for custom works and you should hire a developer to achieve that.

    Cheers

    Radu

    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: Sign in form #94927
     Radu
    Moderator

    Hi,

    The line will be like this :

    COPY CODE
    
    <li><small><a href="/resetpassword" rel="nofollow">< ?php _e("FORGOT YOUR USERNAME OR PASSWORD?", 'kleo_framework');?></a></small></li>
    
    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 make thumbnail Bigger ? #94926
     Radu
    Moderator

    Hi,

    Replace code with this please

    @media(max-width:700px) {

    .woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
    height:55px !important;
    width:auto !important;}

    }

    Cheers

    Radu

    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 was referring to the screenshots

    Let me know

    Cheers

    Radu

    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: Main Nav menu styling #94920
     Radu
    Moderator

    Hi,

    Go to wp-admin -> theme options -> header options -> Main Menu Font size and Main Menu Height*

    Cheers

    Radu

    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 menu font size #94917
     Radu
    Moderator

    Hi,

    You can change the link text color with this css

    COPY CODE
    
    .sidebar .menu-events-and-awards-container ul li a {
        color: green;
    }
    

    The hover color will be applied like this

    COPY CODE
    
    .sidebar .menu-events-and-awards-container ul li a:hover {
        color: red;
    }
    

    Cheers

    Radu

    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: Header background image #94915
     Radu
    Moderator

    Hi,

    You can set a header background image with this css

    COPY CODE
    
    .kleo-navbar-fixed .page-boxed .kleo-main-header {
        background-image: url(http://icdn2.digitaltrends.com/image/nikon-d750-sample-image-008-1500x1001.jpg);
        background-position: 0 50%;
    }
    

    And with this css you can control the size of the logo width and height

    COPY CODE
    
    #header .logo img {height:70px;with:auto;}
    

    Replace values with your desired values

    Cheers

    Radu

    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 for Community Blog #94889
     Radu
    Moderator

    Hi,

    I’ve tested again to sign-up to your website and the signup process it works without any problem. ( see attached screenshot )

    Why are you so sure that is a kleo related problem ? rather this can be a wp or buddypress related problem. I suggest to search on google, https://wordpress.org/support/ and/or https://buddypress.org/support/

    Cheers

    Radu

    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 can register Japanese Font? #94884
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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: On portfolio page, need wrap around “related” #94880
     Radu
    Moderator

    Hi,

    Please provide a screenshot that pointing out that container.

    Cheers

    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’ve looked at your error log and is seems to be a misconfiguration from your hosting server.

    Please contact your hosting support and tell them about these variables (SERVER_PROTOCOL,HTTP_HOST,SERVER_PROTOCOLSERVER_PORT,SERVER_NAME) that are missing PHP Notice: Undefined index:

    Regarding the js problems, please resolve these server issues and check after.

    Let me know

    Cheers

    Radu

    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 on hover color background #94877
     Radu
    Moderator

    Hi,

    On my side the bg is green, maybe in your side is a cache issue.

    Cheers

    Radu

    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: Visual Slider #94873
     Radu
    Moderator

    Hi,

    Sorry for inconvenience, upload again the image please.

    It was a problem with images upload

    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: Visual Slider #94615
     Radu
    Moderator

    Hi,

    Please reupload the picture

    Cheers

    Radu

    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 on hover color background #94613
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .top-menu .dropdown-menu li a:hover {
        background: green !important;
    }
    

    replace green with your desired color.

    Cheers

    Radu

    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: Instead of Showing Age Label it shows Birhtday label #94608
     Radu
    Moderator

    Hi,

    Go to wp-admin -> theme options -> buddypress -> SET ON – > Show age instead of birthdate

    Cheers

    Radu

    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 do I hide the entire top menu for logged in users? #94606
     Radu
    Moderator

    Hi,

    Please add this function to wp-content/theme/kleo-child/functions.php

    COPY CODE
    
    function KleoRemoveTopBarLoggedUsers() {
        $output = '';
        if (is_user_logged_in()) {
            $output .= '<style>
            .header-color.social-header { display: none !important;}
            </style>';
        }
        echo $output;
    }
    add_action('wp_head', 'KleoRemoveTopBarLoggedUsers');
    

    Let me know

    Cheers

    Radu

    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,

    Can you please reupload the files ?

    Cheers

    Radu

    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: Main Nav menu styling #94596
     Radu
    Moderator

    Hi,

    Please provide credentials to can view your website.

    Cheers

    Radu

    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 menu font size #94594
     Radu
    Moderator

    Hi,

    Please provide a screenshot (and page url) that pointing out the widget and the a elements for you want to change the font proprietes and also some credentials to can view your website.

    Cheers

    Radu

    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: Header background image #94593
     Radu
    Moderator

    Hi,

    Can you please provide a screenshot and a link to that page to can see the behaviour ?

    Cheers

    Radu

    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 can register Japanese Font? #94592
     Radu
    Moderator

    Hi,

    You can achieve that by loading the font resource directly to head via this function

    COPY CODE
    
    add_action('wp_head','Kleo_hook_font');
    
    function Kleo_hook_font() {
    
    $output="<link rel='stylesheet' href='http://linktomyfont.com/font.css' type='text/css' media='all' />";
    
    	echo $output;
    }
    

    Then add to css (wp-admin -> theme options -> general settings -> quick css)

    body,a,b,h1,h2,h3,h4,h5,h5 { font-family : ‘Meiryo UI’; }

    Cheers

    Radu

    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: On portfolio page, need wrap around “related” #94587
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    div#jp-relatedposts {
        background: #1C1C1C;
        margin: 0;
        color:#fff; !important
    }
    
    
    .sharedaddy.sd-sharing-enabled {
        background-color: #1C1C1C;
        color: #FFF !important;
    }
    
    .sd-content ul {margin:0 !important;}
    
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context, #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
    
        opacity:1 !important;
    }
    
    

    Let me know

    Cheers

    Radu

    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: Comment Box Disappear #94582
     Radu
    Moderator

    Hi,

    Do you have any plugin recently ?

    Anyways please disable all plugins then check to see if the comments section appears again, if yes enable plugins one by one to identify what plugin causes this.

    Let me know

    Cheers

    Radu

    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 menu on phone view #94581
     Radu
    Moderator

    Hi,

    That error it seems to be caused by a security plugin or mod_security from server settings, i suggest you to contact your hosting provider to ask them about this error, try to disable mod_security.

    Let me know

    Cheers

    Radu

    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: Sign in form #94579
     Radu
    Moderator

    Hi,

    First please copy this file from /wp-content/themes/sweetdate/page-parts/general-login-modal.php to /wp-content/themes/sweetdate-child/page-parts/general-login-modal.php

    After you have copied the file, open general-login-modal.php from sweetdate-child go to line 39 and replace this :

    COPY CODE
    
    <li><small><a href="#" data-reveal-id="forgot_panel"><?php _e("FORGOT YOUR USERNAME OR PASSWORD?", 'kleo_framework');?></a></small></li>
    

    with this

    COPY CODE
    
    <li><small><a href="/register"><?php _e("FORGOT YOUR USERNAME OR PASSWORD?", 'kleo_framework');?></a></small></li>
    

    add your desired link here

    COPY CODE
    <a href="/register">

    Cheers

    Radu

    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: tutorial #94578
     Radu
    Moderator

    Hi raafat1403,

    Hi,

    Please use debug function https://codex.wordpress.org/WP_DEBUG

    Add to your wp-config.php file these lines

    COPY CODE
    
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_LOG', true );
    

    Repeat the action, and see if is displayed additional error on screen, if not please go to ftp to wp-content folder and look for error.log and post content of error log here.

    Let me know

    Cheers

    RAdu

    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: Forums // Enabling new topic protection #94576
     Radu
    Moderator

    Hi,

    It seems that the problem comes from the plugin, in plugin page https://wordpress.org/plugins/bbpress-protected-forums/ it says

    This plugin hasn’t been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

    But i suggest you to change that plugin with this https://wordpress.org/plugins/restrict-content/

    Let me know

    Cheers

    Radu

    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: Post Related order #94570
     Radu
    Moderator

    Hi,

    According the instagram API sharing links to instagram are not possible

    http://stackoverflow.com/questions/30542054/does-instagram-have-share-button-or-not/30542068#30542068

    And also i see that the share this section are immediately after the post content.

    http://lorneschwaier.com/bella-vous-makeup-artistry/

    Cheers

    Radu

    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 make thumbnail Bigger ? #94565
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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 profile only for registered #94564
     Radu
    Moderator

    You’re welcome,

    Also don’t forget to rate our theme on Themeforest and give it 5 stars 🙂

    http://themeforest.net/downloads/

    Best regards

    Radu

    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: Emails issue with some plugins #94562
     Radu
    Moderator

    Hi,

    Kleo uses the default wordpress email function (wp_mail), all default wordpress emails are text/plain , i made a short research on plugins that you have provided support.

    https://wordpress.org/support/topic/emails-sent-in-plain-text-in-place-of-html

    Cheers

    Radu

    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 friends widget #94556
     Radu
    Moderator

    Hi,

    This because the Buddypress (Friends) works only in buddypress pages.

    Cheers

    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 - 16,881 through 16,920 (of 20,101 total)

Log in with your credentials

Forgot your details?