Forum Replies Created

Viewing 40 posts - 19,441 through 19,480 (of 20,101 total)
  • Author
  • in reply to: how to style tabs in Tour section? #52255
     Radu
    Moderator

    Hello,

    Try like this :

    COPY CODE
    
    
    .wpb_tour .nav-tab {
    width: 200px;
    }
    
    @media (max-width: 600px) {
      .wpb_tour .nav-tab {
       width: 100% !important;
      }
    }
    
    
    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 stop other you tube videos at end of yours? #52247
     Radu
    Moderator

    Example embedded without related videos at end.

    COPY CODE
    
    <iframe width="640" height="480" src="https://www.youtube.com/embed/KMU0tzLwhbE?rel=0" frameborder="0" allowfullscreen></iframe>
    
    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: Feature Items URL #51876
     Radu
    Moderator

    Hello,

    Unfortunately this functionality is not available yet, but in a future update this will be added.

    Thanks for understanding.

    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: uploads have stopped appearing in activity stream #51872
     Radu
    Moderator

    Hello,

    Try to enable “Allow upload from activity stream” from rtMEdia settings.

    Go to WP-ADMIN -> rtMEDIA -> Settings -> Buddypress -> SET ON – Allow upload from activity stream.

    See screenshot

    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: how to stop other you tube videos at end of yours? #51868
     Radu
    Moderator

    Hello,

    Just put this parameter at the end of link

    The link should be like this : https://www.youtube.com/embed/z8GHf-aELjY?rel=0

    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: Portfolio category / Exclude categories #51866
     Radu
    Moderator

    Hello,

    The sites have identicaly versions of kleo,VC,K-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: Register Modal (Kleo theme) #51865
     Radu
    Moderator

    Hello,

    Unfortunately this functionality is not available yet.

    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: Add font families to standard fonts list #51863
     Radu
    Moderator

    Hello,

    Momentary Kleo doesn’t have possibility to add custom fonts yet.

    We will implement this functionality in a future update.

    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: Group directory layout. #51861
     Radu
    Moderator

    HEllo,

    Just go to Wp-admin -> Pages -> Groups Page -> select from template -> Full Width ( see attachment )

    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: Add Permalink to Featured Image in Blog #51836
     Radu
    Moderator

    Hello,

    Add this file to kleo-child (see attachment)

    If you want to change text of that string “Continue reading” search in that file “Continue reading” and replace with your desired text.

    It’s recommended to do translation from codestyling localization.

    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: Moving Sub Menu Up #51827
     Radu
    Moderator

    Hello,

    It’s done

    I have used this codes

    COPY CODE
    
    
    .navbar-nav > li > .dropdown-menu  {margin-top:-40px;}
    .header-scrolled .navbar-nav > li > .dropdown-menu {margin-top:-0px;}
    
    

    I loaded this styles on your theme 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
    in reply to: Remove Author Title Posts & Pages #51825
     Radu
    Moderator

    Try with this CSS code.

    Add code to your Theme Options – > Styling Options -> Quick css

    COPY CODE
    
    .post.type-post .article-meta {display:none !important}
    
    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-quick-contact #51822
     Radu
    Moderator

    Hello,

    Here is a working 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="' . __("Nachricht an uns...",'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');
    }
    
    

    RECOMMENDED SOLUTION : You can translate that strings from Codestyling Localization.

    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: Error 404 – Page not found #51820
     Radu
    Moderator

    The reply is now private

    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 style tabs in Tour section? #51678
     Radu
    Moderator

    Hello,

    The “problem” was caused by having background section like as tab hover and active color.

    I used this fix

    COPY CODE
    
    .wpb_tour .nav-tab li:hover, .wpb_tour .nav-tab li.active {
    	
    	background-color: #eee !important;	
    
    } 
    

    Now it’s ok.

    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: kleo-quick-contact #51651
     Radu
    Moderator

    Hello Nick Plutte,

    Paste only the code from above to your kleo-child/functions.php

    That’s all

    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: Links #51649
     Radu
    Moderator

    You need to set links like this ( see screenshot )

    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: Error 404 – Page not found #51643
     Radu
    Moderator

    Hello,

    The problem comes from WP ROBOT VIDEO, which is not a part of Kleo Theme.

    Please post on WP ROBOT VIDEO plugin support forum, contact plugin developer and tell about this strange behavior.

    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: Error 404 – Page not found #51626
     Radu
    Moderator

    You have solved the problem ?

    I not see any 404
    http://www.ecoethique.eu/categories/ressources/videos/page/2/
    http://www.ecoethique.eu/categories/ressources/videos/page/3/

    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: Registration page is blank #51510
     Radu
    Moderator

    Hello,

    Try with this solution :

    Go to your domain WP-admin -> Settings -> Buddypress -> Pages -> You will see registration, select from that dropdown registration page.

    http://yourdomain.com/wp-admin/admin.php?page=bp-page-settings

    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: Changing Icons-Priority of Responsive Mainmenu #51509
     Radu
    Moderator

    Please provide the URL with that problem.

    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: Login hangs on hompage #51506
     Radu
    Moderator

    Hello,

    Have you tried the disable all plugins that not comed with the theme ?

    In WP-Admin -> Settings -> General
    WordPress Address (URL) : http://simplestepsweightloss.com/subscribe/
    Site Address (URL) : http://simplestepsweightloss.com/subscribe/

    Make sure that fields have identical addresses

    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: Members create posts #51504
     Radu
    Moderator

    Hello,

    Try to do this with this plugin.

    https://wordpress.org/plugins/social-articles/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hello,

    Masonry grid script calculate and arranges this because the posts container height is not equal.

    If the posts will have same height (excerpt image etc) they will be in a normal arrangement.

    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: Error 404 – Page not found #51480
     Radu
    Moderator

    Hello,

    Please give me admin credentials and FTP i need to look closer

    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: Moving Sub Menu Up #51479
     Radu
    Moderator

    Please add a menu with two leves, also i cannot acces the homepage i’m redicrected to http://ablifestylefitness.com/members/help/

    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: RTMedia Page Title #51478
     Radu
    Moderator

    Try to add this to your menu from custom link ##profile_link##/media it should work.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    This issue will be fixed in a future update.

    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: how to style tabs in Tour section? #51473
     Radu
    Moderator

    Hello,

    I just added default accordion am looks good like in demo with borders

    Take a look here : https://www.the-photohub.co.nz/accordion-example/

    It looks ok

    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: Moving Sub Menu Up #51470
     Radu
    Moderator

    Please create an account for me, i cannot view the website because is in the maintenance mode or something like that “NEW WEBSITE COMING SOON…”

    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: Display Pmpro Membership type in profiles #51469
     Radu
    Moderator

    Please provide entire content of functions.php from kleo-child in a txt file.

    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: hyper-links on Activiy Feeds #51466
     Radu
    Moderator

    I suggest you to revert with original .po file from kleo/languages/ ( see attachment )

    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: Add New Portfolio Item #51462
     Radu
    Moderator

    Hello,

    Go to WP-Admin -> Settings -> General Settings -> Content types -> CHECK portfolio

    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: hyper-links on Activiy Feeds #51450
     Radu
    Moderator

    How you made the translation ? with codestyling localization ?

    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: Putting HTML code in section of a SPECIFIC page #51393
     Radu
    Moderator

    Provide that tracking code inside a

    COPY CODE
     

    tag or attach a txt file with that code.

    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: Display Pmpro Membership type in profiles #51391
     Radu
    Moderator

    Hello

    You can use this function

    COPY CODE
    
    function kleo_membership_info()
    {
    
      global $membership_levels,$current_user;
      if (! $membership_levels) {
        return;
      }
      
    global $bp;
    
    $puid = $bp->displayed_user->id;
    
    //print_r (pmpro_getMembershipLevelForUser($puid));
    
      if ($puid) {
    
        if ( pmpro_getMembershipLevelForUser($puid) ) {
            $membership = pmpro_getMembershipLevelForUser($puid);
    
          echo '<a href="'.pmpro_url("account").'"><span class="label radius pmpro_label">'.$membership->name.'</span></a>';
        }
        else
        {
          echo '<a href="'.pmpro_url("levels").'"><span class="label radius pmpro_label">'.__("Upgrade account",'kleo_framework').'</span></a>';
        }
      }
    }
    
    add_action('bp_before_member_header_meta', 'kleo_membership_info');
    
    

    The membership level will be seen by anyone

    You can customize and extend functionality of this 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: Change e-email wordpress@companyname.com #51390
     Radu
    Moderator

    Hello,

    Use this plugin : https://wordpress.org/plugins/wp-change-default-email/

    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 title page #51389
     Radu
    Moderator

    Hello,

    That title belongs to Buddypress

    You can change that text via translation with codestyling localization

    You need to search in codestyling localization : Site-Wide Activity

    Tutorial : https://archived.seventhqueen.com/forums/topic/how-to-translate-theme-buddypress

    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: hyper-links on Activiy Feeds #51386
     Radu
    Moderator

    Hello,

    Try to remove the generated mo and po files, then you need to retranslate all that strings.

    Note the links need to have \ \, When you translate strings with links be careful with the links they needs to be like below.

    COPY CODE
    
    Example : <a href=<strong>\</strong>"http://codex.buddypress.org/buddypress-site-administration/managing-activity/<strong>\</strong>">Managing Activity</a>
    

    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: Limiting Post Grid Text Count #51383
     Radu
    Moderator

    Hello,

    Go to wp-content\themes\kleo\page-parts\post-content-masonry.php line 183

    Look for

    COPY CODE
    
    <div class="entry-summary">
       <?php echo kleo_excerpt(); ?>
    </div><!-- .entry-summary -->
    

    Replace with

    COPY CODE
    
    <div class="entry-summary">
       <?php echo kleo_excerpt(30); ?>
    </div><!-- .entry-summary -->
    

    30 will be number of characters to display.

    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 - 19,441 through 19,480 (of 20,101 total)

Log in with your credentials

Forgot your details?