Forum Replies Created

Viewing 40 posts - 6,161 through 6,200 (of 20,101 total)
  • Author
  • in reply to: font family and color #167164
     Radu
    Moderator

    Hi,

    All seems good excepting the CSS Rule

    COPY CODE
    
    body,a,b,h1,h2,h3,h4,h5,h5 { font-family : XMYekan !important; }
    

    The font family has a space between XM and Yekan so try like this

    COPY CODE
    
    body,a,b,h1,h2,h3,h4,h5,h5 { font-family : XM Yekan !important; }
    

    OR

    COPY CODE
    
    body,a,b,h1,h2,h3,h4,h5,h5 { font-family : XMYekanRegular !important; }
    

    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: Why user can’t publish nothing? #167160
     Radu
    Moderator
    Not marked as solution
    in reply to: Page Logo Override not working #167158
     Radu
    Moderator

    Hi,

    I was able to change that see on this page: https://www.texashelps.com/testing-the-page-level-logo-change/

    If you are using a MacBook make sure to add the logo in both fields LOGO and RETINA LOGO

    This is how it looks

    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,

    Actually, we will have that in next theme update, that will be released in almost 1 week.

    This is how will 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: questions #167143
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    There is no quick way to have the live messages outside the menu at this moment.

    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: Account Suddenly Switch #167064
     Radu
    Moderator

    Hi,

    I isee,

    There it’s an issue I’ve logged in via Facebook on your site but then I wasn’t able to log out because of the marked error, there its normal to have 403 on wp-login.php page width logout parameter, try to ask this on the hosting support cuz this isn’t related to KLEO theme.

    Also you can to de-activate the plugins and to test again.

    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: Full width image + sidebar blog in post page #167061
     Radu
    Moderator

    Hi,

    Replace the code with this one, sorry I’ve missed the action hook, sorry !

    COPY CODE
    
    function blog_single_full_image_above_post()
    {
    	if (is_single()) {
    		if (has_post_thumbnail()) {
    			echo '<div class="fullwidth-image-before-content">';
    			echo the_post_thumbnail('full');
    			echo '</div>';
    		}
    	}
    }
    add_action('kleo_before_main', 'blog_single_full_image_above_post');
    

    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 magic container link possible? #167060
     Radu
    Moderator

    Hi,

    That isn’t possible since the kleo magic container it’s a div not a A element, I think the only reliable way it’s to set a custom CSS class for you magic container from example “mymagiccontainerclass” then with a JS code to target that class to open the link

    COPY CODE
    
    <script>
    jQuery(document).ready(function () {
      jQuery(".mymagiccontainerclass").click(
          function () {
            window.location.href = "http://example.com";
          }            
        );
    });
    
    </script>
    
    The JS code wil be added to wp-admin -> theme options -> general settings -> JavaScript code
    
    

    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: Mail reception problem #167056
     Radu
    Moderator
    Not marked as solution
    in reply to: Change photo in ios #167055
     Radu
    Moderator

    Hi,

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

    If you de-activate the child theme it works ?

    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.

    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: remove continue reading archive #167054
     Radu
    Moderator

    Hi,

    Please copy this file : /wp-content/themes/kleo/page-parts/post-content-small.php to /wp-content/themes/kleo-child/page-parts/

    Then in the child theme edit the file and paste this content on in https://pastebin.com/raw/8Bcm8njk

    That’s all, the full content will be displayed in the categories/archive

    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: the administration panel is slow work #167037
     Radu
    Moderator

    Hi,

    This it’s fixed, there was a host that your hosting seems blocks it: updates.seventhqueen.com and this it’s queried on every page load in admin to check and notify you about the new plugin version.

    Now that check it happens only when you access the wp-admin -> appearance -> install plugins.

    Also, this will be fixed in next theme update.

    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 & Buddypress Registration #167028
     Radu
    Moderator

    Hi,

    You can use the next solution by adding the next code to wp-content/themes/kleo-child/functions.php

    The code will allow users to register but immidiately after they finish registration users will be redirected and locked into the memebrship levels page until users buy or leave.

    COPY CODE
    
    
    add_action( 'template_redirect', 'my_membersip_restrict' );
     
    function my_membersip_restrict() {
        global $pmpro_pages, $post;
     
        if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) {
            if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) {
                wp_redirect( pmpro_url() );
            }
        }
    }
    
    

    The snippet will be pasted in wp-content/themes/kleo-child/functions.php

    NOTE : The Kleo 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: CONTACT FORM 7 REDIRECT #167027
     Radu
    Moderator

    Hi,

    That code will work only in pages where the contact form shortcode it’s placed like contact one, where the code doesn’t work?

    Are you want to use this in combo with floating contact from the kleo theme ? or how ?

    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: Adding message button in members loop #167026
     Radu
    Moderator

    Hi,

    Just use this function

    COPY CODE
    
    
    if ( ! function_exists( 'kleo_bp_member_dir_view_button' ) ):
        /**
         * Render view profile button on members directory
         */
        function kleo_bp_member_dir_view_button() {
            ?>
            <a>" class="small button radius secondary"><i
                    class="icon-angle-right"></i> </a>
            <?php
        }
    endif;
    add_action( 'bp_directory_members_item_last', 'kleo_bp_member_dir_view_button', 10 );
    
    

    NOTE : Child theme needs to be installed and activated.

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

    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: “Invalid customizer-beautify.json format!” #167023
     Radu
    Moderator

    Hi,

    The login credentials are incorrect, please let me know the correct ones.

    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,

    Just use the “Activity page” visual element from visual composer that generate this shortcode [kleo_bp_activity_page] this will generate exact the activity that you have it in buddypres profile, also you are able to post updates.

    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

    Forgot to mention : The css will be added to wp-admin -> theme options -> General settings -> Quick CSS

    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 see

    Use this CSS to limit the featured testimonial image

    COPY CODE
    
    .kleo-testimonials .article-media img {
        max-width: 200px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    

    It will look like this, you can change the 200px from max-width rule with your desired value.

    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: 4.2.7 bug #167014
     Radu
    Moderator

    Hi,

    There it’s something specific to make?

    I cannot see the loading problem of dynamic.css

    VIDEO : https://drive.google.com/file/d/0Bxo5b6iHWRMweW55emJYMUplcUE/view

    Let me know if I should something specific.

    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 make the product tabs to be horizontal #166964
     Radu
    Moderator

    Hi,

    I see my personal advice it’s to tell your developer to implement this kind of accordions (horizontal)

    The responsible file that control the tabs it’s : /wp-content/themes/kleo/woocommerce/single-product/tabs/tabs.php

    If you want to overwrite this just copy the file into wp-content/themes/kleo-child/single-product/tabs/

    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: Forum not responsive #166959
     Radu
    Moderator

    Hi,

    I saw the facebook login behavior it’s somehow ODD, but using latest theme version on my localhost I’m able to log in without any problems in the browser and using iPhone.

    So, I cannot provide you exact steps to follow cuz I’m not able to reproduce,

    Can you please provide wp-admin credentials ( the current ones doesn’t work )? and also the FTP?

    Best regards
    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,

    You’re welcome

    All should be fine! but let me know

    If you are happy with our support service please leave us a review + 5* on themeforest please

    Have a nice weekend

    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,

    You’re welcome

    All should be fine! but let me know

    If you are happy with our support service please leave us a review + 5* on themeforest please

    Have a nice weekend

    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: Full width image + sidebar blog in post page #166954
     Radu
    Moderator

    Hi

    Just use this function and this will be added automatically immediately after the header ends in full-width mode

    Example

    COPY CODE
    
    function blog_single_full_image_above_post()
    {
    	if (is_single()) {
    		if (has_post_thumbnail()) {
    			echo '<div class="fullwidth-image-before-content">';
    			echo the_post_thumbnail('full');
    			echo '</div>';
    		}
    	}
    }
    

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

    NOTE: Child theme needs to be installed and activated.

    Also, i implemented this in the theme and in next theme version this option will be found under wp-admin -> theme options -> blog.

    That’s all

    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: User Search Bug #166947
     Radu
    Moderator

    Hi,

    You haven’t mentioned that you encounter the issue from wp-admin backend

    I can search for users in backend without problem on my local install using latest theme version

    Where can I see this behavior ?! anyway the theme doesn’t have anything to to with wp backend in that way, I recommend you to try to de-activate plugins and child theme then chek again if it works it means one f the plugins or one of the changes from child theme 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: Go Pricing Import data compatiblity #166946
     Radu
    Moderator
    Not marked as solution
    in reply to: #hash-link smooth scroll don’t work #166942
     Radu
    Moderator
    Not marked as solution
    in reply to: Change Header Menu (logo left with banner) #166938
     Radu
    Moderator

    Hi,

    I’ve tried but there is no only CSS to modify and also it requires to change a lot the header logic, there should be made changes in CSS and also in JS and it requires significant time to achieve that, then the modifications should be tested on different devices.

    For the moment no quick solution for this if you really need to achieve this you should hire a developer to make this custom fo you

    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: Go to top button in socket Area #166936
     Radu
    Moderator
    Not marked as solution
    in reply to: How to format numbers? #166934
     Radu
    Moderator

    Hi,
    You’re 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
    in reply to: Snax Pluging #166933
     Radu
    Moderator

    Hi,

    If I click login the KLEO login pop-up it’s displayed

    Did you have solved meanwhile?

    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: adding another numerical field #166931
     Radu
    Moderator

    Hi,

    The range option it’s available only for the age field and for the moment we don’t have a reliable quick solution for that, in future we will implement profile search like in KLEO theme where you are able to do 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: Kleo Post Element – But in excerpts #166907
     Radu
    Moderator

    Hi,

    I saw that, as the first solution try to do the next  

    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?

    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: questions #166905
     Radu
    Moderator
    Not marked as solution
    in reply to: Mail reception problem #166904
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Hi,

    For the moment the only solution for that it’s to display all time the live notifications item

    COPY CODE
    
    li.kleo-messages-nav.kleo-toggle-menu {
        display: block !important;
    }
    

    In future, we will take into consideration this and we will improve 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: No translation possible #166902
     Radu
    Moderator

    Hi,

    That’s wired cuz those are coming from rtMedia plugin and those should be translatable by default.

    As a workaround, you can modify direct the code by adding default placeholders as you need.

    Just copy this code: https://pastebin.com/raw/upX9rix0

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

    NOTE : Child theme needs to be installed and activated.

    Just replace the strings from red rectangle areas

    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: Activity struggling after large media post #166687
     Radu
    Moderator

    Hi,

    There is no option to can limit that, but you can try using this css

    COPY CODE
    
    #rtmedia-uploader-form .rtm-plupload-list, form .rtmedia-container .rtm-plupload-list, #rtmedia_uploader_filelist {
        max-height: 200px !important;
        display: inline-block;
    }
    

    It will limit the height of the container of the images that uploading.

    You can try to ask this on rt media maybe thy have some quick code to limit number of displaying those or to allow to be uploaded once.

    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 - 6,161 through 6,200 (of 20,101 total)

Log in with your credentials

Forgot your details?