Forum Replies Created

Viewing 9 posts - 201 through 209 (of 209 total)
  • Author
  • in reply to: Compatibility Matching #20681
     Catalin
    Moderator

    Hello,

    Add this code in functions.php from your child theme folder:

    COPY CODE
    
    
    function kleo_my_hearts_actions() 
    {
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
     
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
     
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
     
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
     
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
    
    

    Thank you,
    Catalin

    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 options changes don't work #20636
     Catalin
    Moderator

    Hello,

    First you need to modify the option called: “Link color” -> see attachment. This will change color in all the pages except homepage.

    For changing color in homepage you need to add this code:

    COPY CODE
    
    
    .navbar-transparent #header .logo a, .navbar-transparent .navbar .navbar-nav > li > a, .navbar-transparent .navbar .navbar-nav .caret:after
    
    {
      color:#xxx;
    }
    
    

    in style.css file from your child theme folder. The ‘#xxx’ is the color code you want to add.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Problem with featured images #20378
     Catalin
    Moderator

    Hello,

    You need to access using a FTP client the functions.php file from the child theme folder and add this code:

    COPY CODE
    
    
    <?php
    function ThumbModif() {
    
    	set_post_thumbnail_size( 620, 300 );
    
    }
    add_action( 'after_setup_theme', 'ThumbModif');
    ?>
    
    

    After this operation, regenerate thumbnails using Regenerate Thumbnails plugin.

    Thank you,
    Catalin

    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: Shortcodes in sidebar showing bullets #20252
     Catalin
    Moderator

    use:

    COPY CODE
    
    .widgets-container .widgets ul.fts-yt-videolist li:before
    {
        content:none;
    }
    
    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: Shortcodes in sidebar showing bullets #20239
     Catalin
    Moderator

    Hello,

    You need to go in the WordPress admin pannel at ( Sweetdate>Styling options ) and at the very bottom of the page you have “Quick css” field.

    Add there the following code:

    COPY CODE
    
    .widgets-container .widgets ul.polling_ul li:before
    {
    	content:none;
    }
    
    
    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: Long Profile field names get cut off #20099
     Catalin
    Moderator

    Please try this:

    COPY CODE
    body.buddypress .profile .dl-horizontal dt {
        overflow: auto;
        white-space: normal;
    }

    Thank you,
    catalin

    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 BB Press #20094
     Catalin
    Moderator

    Hello Martin,

    1. To hide the search bar you need to go in the WordPress admin panel to (Theme Options -> Styling options) and add this code:

    COPY CODE
    .bbp-search-form
    {
          display:none;
    }

    and then click “Save changes”

    2. When you create a new forum you can select the sidebar from the dropdowm list.

    See attachament for more details.

    Thank you,
    Catalin

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    in reply to: Long Profile field names get cut off #20020
     Catalin
    Moderator

    This seems to be related to CSS, so try to add this:

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
        overflow: auto;
        white-space: normal;
    }
    
    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: Globally Disable the Title Bar? #20015
     Catalin
    Moderator

    Hi, yes you can achieve that. Sorry for the late reply. Just go and to Theme options and do the following:
    – in Layout settings – set Page Title location to Main section
    – Header options – Show breadcrumb – OFF
    – Main menu info – empty’

    Then the title section should disappear. If you want to hide the title that shows in the main area now, hide it by adding this CSS

    COPY CODE
    
    h1.page-title {
        display: none;
    }
    

    Make sure to have the latest theme version 1.5 installed.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 9 posts - 201 through 209 (of 209 total)

Log in with your credentials

Forgot your details?