Forum Replies Created

Viewing 40 posts - 6,681 through 6,720 (of 20,101 total)
  • Author
  • in reply to: Membership Settings #163432
     Radu
    Moderator
    Not marked as solution
    in reply to: Problem With Site #163431
     Radu
    Moderator
    Not marked as solution
    in reply to: Footer Issues #163427
     Radu
    Moderator
    Not marked as solution
    in reply to: Dividers have disappeared from pages #163426
     Radu
    Moderator
    Not marked as solution
    in reply to: Help with site display #163425
     Radu
    Moderator

    Hi,

    First image, can you please provide page url and an account to can take a closer look ?

    Second I saw you are viewing that page thru visual composer front end editor, did you see the same in normal view? (non-editing view) if no it’s ok.

    Same as second, try to do that without being in visual composer live editor. just go to wp-admin -> theme options ->

    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: Trouble with Custom Sidebar not Showing #163424
     Radu
    Moderator

    Hi,

    Just log in via FTP to your site in wp-content/themes/kleo-child/ and create a file named sidebar.php and paste the next code in it

    COPY CODE
    
    <?php
    /**
     * The Sidebar containing the main widget area
     *
     * @package WordPress
     * @subpackage Kleo
     * @since Kleo 1.0
     */
    ?>
    <?php
    $sidebar_classes = apply_filters( 'kleo_sidebar_classes', '' );
    $sidebar_name = apply_filters( 'kleo_sidebar_name', '0' );
    ?>
    
    <?php
    	if( $_SERVER['REQUEST_URI'] == '/blog/') {
    		get_sidebar('nice-bar');
    	}
    ?>
    
    <div class="sidebar sidebar-main <?php echo $sidebar_classes; ?>">
    	<div class="inner-content widgets-container">
    		<?php
    		if( $_SERVER['REQUEST_URI'] == '/blog/') {
    			get_sidebar('BLOG-sidebar');
    		}
    		?>
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    
    <div class="sidebar sidebar-main <?php echo $sidebar_classes; ?>">
    	<div class="inner-content widgets-container">
    		<?php generated_dynamic_sidebar( $sidebar_name );?>
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    

    NOTE : Child theme needs to be installed and activated.

    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: How to make date of birth invisible for members #163420
     Radu
    Moderator

    Hi,

    Your site looks hacked or something everywhere its text about Viagra, cialis and similar stuff

    Contact page :

    Maybe that’s why you receive 404 error.

    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: Translation Issue #163419
     Radu
    Moderator

    Hi,

    They belong to the buddypress and it should be founded in BuddyPress po./.mo file/s

    If they are not there press sync button

    https://codex.buddypress.org/translations/

    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: Accordion disables dropdown menu #163418
     Radu
    Moderator
    Not marked as solution
    in reply to: WooCommerce single product page customize #163417
     Radu
    Moderator

    Hi,

    For having description outside the tabs under product image use the next function

    COPY CODE
    
    function woocommerce_product_description_outside_tabs() {
    ?>
    <div>
        <?php the_content(); ?>
    </div>
    <?php
    }
    
    add_action('woocommerce_after_single_product','woocommerce_product_description_outside_tabs' );
    

    For any other customizations the responsible templates are located here:
    /wp-content/themes/kleo/woocommerce/ and for the single product page the responsible file is : /wp-content/themes/kleo/woocommerce/content-single-product.php

    To can have changes over theme update you should copy the files into child theme in the same location ( wp-content/themes/kleo-child/woocommerce/ )

    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: Mobile Sticky Header #163416
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity Timeline #163415
     Radu
    Moderator
    Not marked as solution
    in reply to: Not able to upload theme #163413
     Radu
    Moderator

    Hi Amanda

    That kind of error it’s caused by some server settings

    Please follow this solution: https://theme-fusion.com/knowledgebase/are-you-sure-you-want-to-do-this/

    Also you can upload the theme via FTP : https://archived.seventhqueen.com/documentation/kleo#install-from-ftp

    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: Not able to upload theme #163412
     Radu
    Moderator

    Hi Amanda

    That kind of error it’s caused by some server settings

    Please follow this solution: https://theme-fusion.com/knowledgebase/are-you-sure-you-want-to-do-this/

    Also you can upload the theme via FTP : https://archived.seventhqueen.com/documentation/kleo#install-from-ftp

    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: Slider homepage missing and add filter in search #163411
     Radu
    Moderator
    Not marked as solution
    in reply to: line icons not appearing in menu #163403
     Radu
    Moderator

    Hi,

    I just activated the development mode in the theme options (Wp-admin -> theme options -> Miscellaneous -> Development mode -> ON )

    For some reason, the minification causes that, I’ve tried to reproduce that on my local install multiple times and I cannot reproduce that…

    I think it’s something related to the permissions for a script that minifies, can you provide the server error log? not the wp error log (wp_debug)

    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: Image for next blog pop out #163402
     Radu
    Moderator

    Hi,

    We will take this into consideration, I will add this to improvement list.

    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 Ajax Search Pro shortcode to top menu #163401
     Radu
    Moderator

    Hi,

    Try again using this code instead of previous one.

    COPY CODE
    
    if ( ! function_exists( 'kleo_search_menu_item' ) ) {
    	/**
    	 * Add search to menu
    	 *
    	 * @param string $items
    	 * @param object $args
    	 *
    	 * @return string
    	 */
    	function kleo_search_menu_item( $items, $args ) {
    		if ( sq_option( 'ajax_search', 1 ) == 'logged_in' && ! is_user_logged_in() ) {
    			return $items;
    		}
    
    		$location = sq_option( 'menu_search_location', 'primary' );
    
    		if ( $args->theme_location == $location ) {
    			$form = echo do_shortcode('[wpdreams_ajaxsearchpro id=1]') );
    			$items .= '<li id="nav-menu-item-search" class="menu-item kleo-search-nav">' . $form . '</li>';
    		}
    
    		return $items;
    	}
    }
    

    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: Fatal Error and/or blank screen #163327
     Radu
    Moderator

    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: Startup questions #163326
     Radu
    Moderator

    Hi,

    Please ask the ThemeForest about this matter since they are responsible for the refund process.

    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: Customized PageLayout #163325
     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: LOGIN stuck on “Login Successful, redirecting” #163324
     Radu
    Moderator

    Hi,

    Cannot login

    Chech the credentials

    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: List Profiles #163323
     Radu
    Moderator

    Hi,
    This it’s something custom that cannot be covered by the support service but you can ask about this at the development team dev@seventhqueen.com
    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: Terms & Conditions signup bug #163322
     Radu
    Moderator
    Not marked as solution
    in reply to: change background of dashboard according to gender #163321
     Radu
    Moderator

    Hi,

    I understand what are you asking but this is not a theme problem or a theme question and I don’t have a plug and play or know the solution for this.

    Data cannot be manipulated with PHP cuz google tag manager pass that values in js.

    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: Mobile Menu #163319
     Radu
    Moderator

    Hi,

    At this moment the mobile menu looks like this

    To can help you please remove mobile menu related css customizations from quick css area 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: Automatic updates don’t work #163314
     Radu
    Moderator

    Great
    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: Header options and customization #163313
     Radu
    Moderator
    Not marked as solution
    in reply to: Problem Ajax Search Thema #163312
     Radu
    Moderator
    Not marked as solution
    in reply to: How to disable zoom for WooCommerce Product page #163310
     Radu
    Moderator
    Not marked as solution
    in reply to: Delete message #163309
     Radu
    Moderator

    Hi,

    I was able to reproduce that also on my local install now and i confirm that.

    I’ve added that in the bug list we will let you know when it’s done.

    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: Transparent drop down menu color #163307
     Radu
    Moderator

    I see

    TRy to use this css

    COPY CODE
    
    ul.submenu-inner.has-notif li a {
        color: #555 !important;
    }
    

    If this will not work please provide to me an account that has that notification to can fix it live

    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

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

    Hi,

    Give a try using default wp theme and 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,

    If there is no theme issue or question I cannot help you since you ask for custom things and our support covers only product related questions and small customizations.

    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: Facebook Login stopped working #163303
     Radu
    Moderator

    Hi,

    That it means that your app isn’t configured as it should not a theme problem please create again the app or review the existing one settings.

    https://archived.seventhqueen.com/general/article/setup-facebook-login-fix-facebook-login

    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: Search results / share buttons in profiles #163302
     Radu
    Moderator

    Hi,

    That can be achieved by hooking the bp_after_member_home_content action

    So the code it’s next if the buttons have a shortcode just replace that.

    COPY CODE
    
    function add_share_buttons_after_member_profile() {
    
        $shortcode = do_shortcode('[kleo_button href="#" icon="0" letter_spacing=""]');
        echo $shortcode;
    }
    add_action('bp_after_member_home_content', 'add_share_buttons_after_member_profile');
    
    

    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: I have a request for the message system #163297
     Radu
    Moderator

    Hi,

    The count it happens only on refresh, no quick way to change that.

    And there no way to change BuddyPress messages with Skype.

    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: Search filter and result #163296
     Radu
    Moderator

    Tested and it works on my local install, I cannot see any issue with that

    Provide an account to can test live on your website.

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

Log in with your credentials

Forgot your details?