Forum Replies Created

Viewing 40 posts - 17,401 through 17,440 (of 20,101 total)
  • Author
  • in reply to: Registering on site #89029
     Radu
    Moderator

    Hi, @jgmedia1

    Is there anything else with what i can help you ?

    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: Registering on site #89025
     Radu
    Moderator

    Hi,


    @Loyal_Customer
    What is your website address ?

    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: Break theme options settings #89024
     Radu
    Moderator

    Hi,

    Yes i can login now, but what is the link for wp admin ?

    The default route is not working /wp-admin/

    MAybe the issue that you have described is caused by that plugin that allows you to change administration url.

    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,

    Sorry but is not possible to add post meta i Post Grid from Kleo Posts.

    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: bug with RT media and Kleo #89021
     Radu
    Moderator

    Hi,

    The link from your last reply is not working (404 error)

    Strange rtMedia behaviour i suggest you to disable the plugins that not comes once with Kleo, disable it one by one to see if any of the plugins 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: floating contact form #89017
     Radu
    Moderator

    Hi,

    Replace the code that i have provided you before with this

    COPY CODE
    
    
    if (!function_exists('kleo_contact_form')) {
        function kleo_contact_form( $atts, $content = null ) {
            extract(shortcode_atts(array(
                'title'    	 => 'CONTACT US'
            ), $atts));
    
            $output = '';
    
            $output .= '<div class="kleo-quick-contact-wrapper">'
                .'<a class="kleo-quick-contact-link" href="#"><i class="icon-mail-alt"></i></a>'
                .'<div id="kleo-quick-contact">'
                .'<h4 class="kleo-qc-title">'. $title .'</h4>'
                .'<p>'. do_shortcode($content).'</p>'
                .'<form class="kleo-contact-form" action="#" method="post" novalidate>'
                .'<input type="text" placeholder="'.__("Your Name",'kleo_framework').'" required id="contact_name" name="contact_name" class="form-control" value="" tabindex="276" />'
                .'<select class="form-control" multiple>
    				        <option value="Placeholder1">Placeholder1</option>
    				    	<option value="Placeholder2">Placeholder2</option>
                            <option value="Placeholder3">Placeholder3</option>
                          </select>
    				    '
                .'<input type="email" required placeholder="' . __("Your Email",'kleo_framework') . '" id="contact_email" name="contact_email" class="form-control" value="" tabindex="277"  />'
                .'<textarea placeholder="' . __("Type your message...",'kleo_framework') . '" required id="contact_content" name="contact_content" class="form-control" tabindex="278"></textarea>'
                .'<input type="hidden" name="action" value="kleo_sendmail">'
                .'<button tabindex="279" class="btn btn-default pull-right" type="submit">'. __("Send",'kleo_framework').'</button>'
                .'<div class="kleo-contact-loading">'. __("Sending",'kleo_framework').' <i class="icon-spinner icon-spin icon-large"></i></div>'
                .'<div class="kleo-contact-success"> </div>'
                .'</form>'
                .'<div class="bottom-arrow"></div>'
                .'</div>'
                .'</div><!--end kleo-quick-contact-wrapper-->';
    
            return $output;
        }
        add_shortcode('kleo_contact_form', 'kleo_contact_form');
    }
    

    Now it have 3 options.

    Regarding to your question “If I want to have another sliding contact form (not site wide but page specific), how can I do that?” You should search for a plugin can can be able to do this, i don’t know any similar plugin to can recommend you.

    Regarding to this “How can I have a similar sliding element as you have in Kleo website here for theme setting and demo” the link are incorrect and i cannot see about what you are referring to.

    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: Mobile Menu Does Not Stay Open So You Can Click On An Item #89015
     Radu
    Moderator

    Hi,

    Because kleo uses bootstrap js where some custom functions has been included in file, and the bootstrap.min.js loaded from that plugin overwritten rules from kleo bootstrap js, kind of.

    The social icons it seems to not have been affected

    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: Display All Testimonials #89014
     Radu
    Moderator

    Hi,

    Please try like this

    COPY CODE
    
    [kleo_testimonials ids="1,2,3,4,5,6,7,8,9"]
    

    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: Left sidebar on posts #89013
     Radu
    Moderator

    Please add this css to your wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    section#testclear-synthetic-urine {
        padding-top: 35px;
    }
    

    If you press again to that button “more then one week” the content will be shown on.

    Let me know if is ok.

    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: Members mansory page #89011
     Radu
    Moderator

    Hi,

    Sorry, the code can be added in Wp-admin -> theme options -> general settings -> quick css

    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: Hide WooCommerce shipping when free is available #89010
     Radu
    Moderator

    Hi,

    Try with this

    COPY CODE
    
    // Hide standard shipping option when free shipping is available
    add_filter( 'woocommerce_available_shipping_methods', 'hide_standard_shipping_when_free_is_available' , 10, 1 );
    
    /**
     *  Hide Standard Shipping option when free shipping is available
     *
     * @param array $available_methods
     */
    function hide_standard_shipping_when_free_is_available( $available_methods ) {
    
        if( isset( $available_methods['free_shipping'] ) AND isset( $available_methods['flat_rate'] ) ) {
    
            // remove standard shipping option
            unset( $available_methods['flat_rate'] );
        }
    
        return $available_methods;
    }
    

    Let me know if it works

    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 customize bbpress? #89009
     Radu
    Moderator

    Hi,

    Css for Search

    COPY CODE
    
    form#bbp-search-form {
        width: 98%;
        border-radius:5px !important;
        margin:0 !important;
    }
    
    main-color #bbpress-forums form#bbp-search-form {
        box-shadow: 0 0 0 6px #f7f7f7;
    }
    
    

    Css for avatars

    COPY CODE
    
    div#bbpress-forums .bbp-replies li .bbp-reply-author a img {
        border-radius: 5px !important;
    }
    
    Hide avatars from main forum
    
    <pre>
    #bbpress-forums li.bbp-forum-freshness .bbp-author-avatar img.avatar { display:none !important;}
    

    #bbpress-forums div.bbp-forum-author .bbp-author-avatar, #bbpress-forums div.bbp-topic-author .bbp-author-avatar, #bbpress-forums div.bbp-reply-author .bbp-author-avatar {
    width: 100%;
    padding:0 !important;
    margin: 0 !important;
    }

    #bbpress-forums div.bbp-reply-author { border: 1px solid #ddd;padding-top: 20px;}

    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: Issue with Kleo and Cover Photos Plugin #89003
     Radu
    Moderator

    Hi,

    Glad to hear 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: Change the my-profile-wrapper – submenu ? #88862
     Radu
    Moderator

    Hi,

    Still cannot view page, yes with display:none you can hide the elements

    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: Members mansory page #88861
     Radu
    Moderator
    COPY CODE
    
    #buddypress #members-list .item-title,#buddypress #members-list .item-meta {margin: 0 !important; text-align:center !important;}
    

    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: floating contact form #88860
     Radu
    Moderator

    This snippet should be added to wp-content/themes/kleo-child/

    Then you should modify the form in that function.

    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: Full width with custom types #88859
     Radu
    Moderator

    Hi,

    We don’t have a build-in solution for this and you can achieve this by hiring a developer.

    Thank you for understanding.

    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: missing image in the activity stream #88857
     Radu
    Moderator

    Hi,

    This the default buddypress behaviour.

    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: BACKGROUND OF VIDEO NOT SEEN IN MOBILE DEVICE #88856
     Radu
    Moderator

    Hi,

    This is now theme works for performance improvement, you can remove your video from section background and use revolution slider instead.

    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,

    Yes is loading very slow.

    I suggest you to disable all plugins to know if the problem is caused by certain plugin. You can disable all plugins once by going via FTP to wp-content/ and rename the plugins directory by prefixing with @ or some character.

    If the issue disappear after disabling all plugins, put name plugins back then go to wp-content/plugins/ and prefixing plugins one by one to can identify what causes the 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: Members mansory page #88849
     Radu
    Moderator

    Hi,

    Done

    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 composer moble view issues #88844
     Radu
    Moderator

    Hi,

    On my side it shows ok,

    Building complex pages with VC is not something intended to be made from a mobile device.

    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,

    Please take a look here : https://dbarnwal.wordpress.com/2015/06/04/change-laber-price-free-to-other-text-or-blank-in-woocommerce/

    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 Font Size #88836
     Radu
    Moderator

    Hi,

    You can do that by going to wp-admin -> theme options -> header options -> Main Menu Font size

    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: Advanced Search Tab Not Showing Up #88835
     Radu
    Moderator

    Hi,

    Sorry but i cannot view the page it requires credentials

    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 get the word “buddypress” of my site? #88834
     Radu
    Moderator

    Hi,

    Sorry but i cannot view the page it requires credentials

    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: Mobile Menu Does Not Stay Open So You Can Click On An Item #88830
     Radu
    Moderator

    Hi,

    The problem is because you are using a plugin that loads the bootstrap library over our kelo bootstrap library, the plugin that loads this library is peepso-core, if you disable the plugins, all should be ok.

    I suggest you to ask on their forum support about a function that stops to load plugin bootstrap js.
    https://wordpress.org/plugins/peepso-core/

    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: bug with RT media and Kleo #88829
     Radu
    Moderator

    Hi,

    I can click the media and the pop-up with the image is opening but it have opacity 0.5 or something like this.

    Do you have updated the Theme (v3.1.2) and rtMedia and rest of plugins to latest version please ?

    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,

    Strange behaviour,

    Please try to disable WP_AUTO_UPDATE_CORE look here : http://seventhqueen.com/blog/tips/guide-getting-wordpress-auto-update-feature-disabled.html

    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: Hide WooCommerce shipping when free is available #88826
     Radu
    Moderator

    Hi,

    Take a look here : https://docs.woothemes.com/document/hide-other-shipping-methods-when-free-shipping-is-available/

    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: Vimeo Full Width #88825
     Radu
    Moderator

    Hi,

    Can you provide pge url where the vimeo player appears ?

    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: Different backgrounds. #88822
     Radu
    Moderator

    Hi,

    You can have custom background background for pages with a css like this

    The css will applies for this page : http://hart2hart.org.uk/about-us-2/

    COPY CODE
    
    body.page-id-7835 section.container-wrap.main-color {
        background-color: green !important;
    }
    

    If you want to apply style for another page copy the snipper from above and change the id page-id-7835

    Before to apply the css remove the global background.

    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: missing image in the activity stream #88815
     Radu
    Moderator

    Hi,

    Can you be more specific ?

    When users upload a picture from activity the image is not showing up ?

    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 remove Black Friday from product title #88814
     Radu
    Moderator

    Hi,

    Do you have solved the issue ?

    I cannot see the “Black Friday” text

    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: CSS bug on a button #88813
     Radu
    Moderator

    Hi,

    I’ve responded you here : https://archived.seventhqueen.com/forums/topic/css-problem-2

    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 with custom types #88812
     Radu
    Moderator

    Hi,

    The template attributes is not available for posts types is available only for pages.

    But you can try to go to Theme Options -> Blog – > Single Post page Layout* -> select full width

    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: Can I Have an Open Search Bar in My Header (for eCommerce) #88807
     Radu
    Moderator

    Hi,

    We don’t have a plug and play code to achieve that, this is custom work and you should look for a developer to achieve that or you can post in feature request.

    https://archived.seventhqueen.com/forums/forum/kleo/feature-requests

    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: theme install #88803
     Radu
    Moderator

    Hi,

    Do you have looked at the documentation ?

    see here tutorials : https://archived.seventhqueen.com/documentation/kleo#installing-the-theme

    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: floating contact form #88802
     Radu
    Moderator

    Hi,

    You can do this by adding this functions.php from kleo-child directory this code

    COPY CODE
    
    if (!function_exists('kleo_contact_form')) {
    	function kleo_contact_form( $atts, $content = null ) {
    		extract(shortcode_atts(array(
    			'title'    	 => 'CONTACT US'
    		), $atts));
    	
    		$output = '';
    		
    		$output .= '<div class="kleo-quick-contact-wrapper">'
    			.'<a class="kleo-quick-contact-link" href="#"><i class="icon-mail-alt"></i></a>'
    			.'<div id="kleo-quick-contact">'
    				.'<h4 class="kleo-qc-title">'. $title .'</h4>'
    				.'<p>'. do_shortcode($content).'</p>'
    				.'<form class="kleo-contact-form" action="#" method="post" novalidate>'
    					.'<input type="text" placeholder="'.__("Your Name",'kleo_framework').'" required id="contact_name" name="contact_name" class="form-control" value="" tabindex="276" />'
    					.'<input type="email" required placeholder="' . __("Your Email",'kleo_framework') . '" id="contact_email" name="contact_email" class="form-control" value="" tabindex="277"  />'
    					.'<textarea placeholder="' . __("Type your message...",'kleo_framework') . '" required id="contact_content" name="contact_content" class="form-control" tabindex="278"></textarea>'
    						.'<input type="hidden" name="action" value="kleo_sendmail">'
    						.'<button tabindex="279" class="btn btn-default pull-right" type="submit">'. __("Send",'kleo_framework').'</button>'
    					.'<div class="kleo-contact-loading">'. __("Sending",'kleo_framework').' <i class="icon-spinner icon-spin icon-large"></i></div>'
    					.'<div class="kleo-contact-success"> </div>'
    				.'</form>'
    				.'<div class="bottom-arrow"></div>'
    			.'</div>'
    		.'</div><!--end kleo-quick-contact-wrapper-->';
    			
    		return $output;
    	}
    	add_shortcode('kleo_contact_form', 'kleo_contact_form');
    }
    

    Now you can made you custom html markup

    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: Issue with Kleo and Cover Photos Plugin #88801
     Radu
    Moderator

    Hi,

    Can you check the credentials ? i cannot login.

    Do you have updated all plugins ?

    Cheers

    Radu

    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 - 17,401 through 17,440 (of 20,101 total)

Log in with your credentials

Forgot your details?