Forum Replies Created

Viewing 40 posts - 19,481 through 19,520 (of 20,101 total)
  • Author
  • in reply to: How to remove the excerpt completely? #51382
     Radu
    Moderator

    Hello,

    The excert is shown in many layouts, you need to be more specific,

    Anyways, take a look here

    \wp-content\themes\kleo\content.php Line 48,49,50,51

    Of you can hide via CSS

    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 remove the excerpt completely? #51377
     Radu
    Moderator

    Please provide a screenshot from where you want excerpt to disappear.

    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

    Hello again,

    Unfortunately i cannot view your site because of this… ( see attachment )

    I think is banned all my ISP IP’s

    My advices are next :

    Go to kleo theme demo page and compare behavior of that popup.

    Try to update theme to latest version

    If you have made modifications or added stuff in child theme, try to disable child theme and check again.

    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? #51372
     Radu
    Moderator

    Hello,

    I have dynamic IP, it is changing at every router restart.

    I think the solution is to create a user for me.

    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 can i show the topics in the homepage of forums? #51371
     Radu
    Moderator

    In a page, just paste one of that shortcodes in a page, and then you will see forum or topics.

    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: WP post comment notification #51368
     Radu
    Moderator

    Hello,

    This function is not available yet.

    Maybe this will be implemented 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
     Radu
    Moderator

    Hello,

    Try with this code

    Add this code in kleo-child functions.php

    COPY CODE
    
    /** 
     * Modify bbp_get_time_since() output 
     * -------------------------------------------------------------------------------------------*/
    add_filter('bbp_get_time_since', 'aq_get_time_since', 10, 3);
    function aq_get_time_since( $output, $older_date, $newer_date ) {
    	
    	// Setup the strings
    	$unknown_text   = apply_filters( 'bbp_core_time_since_unknown_text',   __( 'sometime',  'bbpress' ) );
    	$right_now_text = apply_filters( 'bbp_core_time_since_right_now_text', __( 'right now', 'bbpress' ) );
    	$ago_text       = apply_filters( 'bbp_core_time_since_ago_text',       __( '%s ago',    'bbpress' ) );
    
    	// array of time period chunks
    	$chunks = array(
    		array( 60 * 60 * 24 * 365 , __( 'year',   'bbpress' ), __( 'years',   'bbpress' ) ),
    		array( 60 * 60 * 24 * 30 ,  __( 'month',  'bbpress' ), __( 'months',  'bbpress' ) ),
    		array( 60 * 60 * 24 * 7,    __( 'week',   'bbpress' ), __( 'weeks',   'bbpress' ) ),
    		array( 60 * 60 * 24 ,       __( 'day',    'bbpress' ), __( 'days',    'bbpress' ) ),
    		array( 60 * 60 ,            __( 'hour',   'bbpress' ), __( 'hours',   'bbpress' ) ),
    		array( 60 ,                 __( 'minute', 'bbpress' ), __( 'minutes', 'bbpress' ) ),
    		array( 1,                   __( 'second', 'bbpress' ), __( 'seconds', 'bbpress' ) )
    	);
    
    	if ( !empty( $older_date ) && !is_numeric( $older_date ) ) {
    		$time_chunks = explode( ':', str_replace( ' ', ':', $older_date ) );
    		$date_chunks = explode( '-', str_replace( ' ', '-', $older_date ) );
    		$older_date  = gmmktime( (int) $time_chunks[1], (int) $time_chunks[2], (int) $time_chunks[3], (int) $date_chunks[1], (int) $date_chunks[2], (int) $date_chunks[0] );
    	}
    
    	// $newer_date will equal false if we want to know the time elapsed
    	// between a date and the current time. $newer_date will have a value if
    	// we want to work out time elapsed between two known dates.
    	$newer_date = ( !$newer_date ) ? strtotime( current_time( 'mysql' ) ) : $newer_date;
    
    	// Difference in seconds
    	$since = $newer_date - $older_date;
    
    	// Something went wrong with date calculation and we ended up with a negative date.
    	if ( 0 > $since ) {
    		$output = $unknown_text;
    
    	// We only want to output two chunks of time here, eg:
    	//     x years, xx months
    	//     x days, xx hours
    	// so there's only two bits of calculation below:
    	} else {
    
    		// Step one: the first chunk
    		for ( $i = 0, $j = count( $chunks ); $i < $j; ++$i ) {
    			$seconds = $chunks[$i][0];
    
    			// Finding the biggest chunk (if the chunk fits, break)
    			$count = floor( $since / $seconds );
    			if ( 0 != $count ) {
    				break;
    			}
    		}
    
    		// If $i iterates all the way to $j, then the event happened 0 seconds ago
    		if ( !isset( $chunks[$i] ) ) {
    			$output = $right_now_text;
    
    		} else {
    
    			// Set output var
    			$output = ( 1 == $count ) ? '1 '. $chunks[$i][1] : $count . ' ' . $chunks[$i][2];
    
    			// No output, so happened right now
    			if ( ! (int) trim( $output ) ) {
    				$output = $right_now_text;
    			}
    		}
    	}
    
    	return $output;
    }
    

    Let me know if it works

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

    You want to fix this only in homepage i guess, because in about us and all rest of pages drop down menu appears ok.

    http://website.ablifestylefitness.com/about-us/

    I made this fix only for home is 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: Google Analytics dont track #51359
     Radu
    Moderator

    Hello,

    The site cannot be accessed on my side i recive this message from browser.

    COPY CODE
    
    This webpage is not available
    Hide details
    The server at demo.comunidadpymex.de can't be found, because the DNS lookup failed. DNS is the network service that translates a website's name to its Internet address. This error is most often caused by having no connection to the Internet or a misconfigured network. It can also be caused by an unresponsive DNS server or a firewall preventing Google Chrome from accessing the network.
    

    Also you can check here : http://network-tools.com/default.asp?prog=express&host=http%3A%2F%2Fdemo.comunidadpymex.de%2F
    or here : http://www.downforeveryoneorjustme.com/demo.comunidadpymex.de

    This is why google analytics cannot verify your site.

    Your site is not visible in internet.

    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: Homepage Icons Default to Blank Boxes in Google Chrome #51347
     Radu
    Moderator

    Hi,

    I have tested again on Win7 on Chrome and Firefox, it works perfectly.

    Also i tested on MAC OSX Yosemite Chrome and Firefox, it works perfectly.

    You have installed some apps in browser ? Try to view site in incognito mode.

    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: Google Analytics dont track #51253
     Radu
    Moderator

    Please provide a link, to take a 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: How to remove the excerpt completely? #51252
     Radu
    Moderator

    Hello,

    Please provide a link of that page where you want to do this.

    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,

    This is a buddypress behavior, you can edit that template if you want, add a link to a groups page.

    This is the file : /wp-content/themes/kleo/buddypress/members/single/groups.php

    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 error #51249
     Radu
    Moderator

    Hello,

    You have K-Elements installed and active ?

    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 Image placement under footer #51248
     Radu
    Moderator

    Hello,

    Please provide a link to that website and admin credentials.

    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

    Hello,

    Please provide the URL and a screenshot with that problem.

    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: Icons missing #51245
     Radu
    Moderator

    Hello,

    Here is a code for feature icons ( see attachment )

    Add this code in VC between your preffered elements

    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: Media widget #51242
     Radu
    Moderator

    Hello,

    U can use rtMedia pro https://wordpress.org/plugins/buddypress-media/ ( it allows you to put a widget in sidebar ) also take a look at this free plugins
    https://wordpress.org/plugins/wp-photo-album-plus/
    https://wordpress.org/plugins/easy-media-gallery/

    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: warning: implode() #51239
     Radu
    Moderator

    Hello,

    Try to replace this file ( /wp-content/themes/kleo/lib/menu-items.php ) with the file from attachment.

    Let me know if it works.

    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: buddypress register page: icons not working #51237
     Radu
    Moderator

    Please provide the URL and a screenshot with that shows “problems”

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

    Hello,

    Please provide an url where menu is visible, then i will give you a CSS fix for this.

    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: Google Analytics dont track #51234
     Radu
    Moderator

    Hello,

    You have checked the source page ? The code is present in any page ?

    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 second level menu style site-wide? #51233
     Radu
    Moderator

    RE:

    Try with this :

    COPY CODE
    
    .navbar-nav > li > .dropdown-menu {background-color:transparent !important;}
    .navbar-nav > li > .dropdown-menu li a:hover {background-color:rgba(0,0,0,0.2);}
    .dropdown-menu > li > a {background-color:transparent !important;}
    .dropdown-menu > li > a:hover {background-color:rgba(0,0,0,0.2) !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: transparent second level menu style site-wide? #51230
     Radu
    Moderator

    Hello again,

    Use this css snippets

    COPY CODE
    
    .navbar-nav > li > .dropdown-menu {background-color:transparent !important;}
    .navbar-nav > li > .dropdown-menu li a:hover {background-color:rgba(0,0,0,0.2);}
    

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

    Hello,

    Add this link to menu with your desired titles.

    COPY CODE
    
    ##profile_link##/messages
    ##profile_link##/media
    

    These code will match current logged user messages or media.

    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: Erase Demo Data #51219
     Radu
    Moderator

    Hello,

    Kleo doesn’t have yet a function to do that.

    You can do it in 2 ways

    1. Delete manually all pages , posts or whatever do you want.

    2. Install a plugin that resets all wordpress database to default ( if you choose this options you need to backup theme settings/customizations, users plugins settings etc… )

    I recommend you to use option 1.

    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/Register" widget inside a page? #51215
     Radu
    Moderator

    Hello,

    Try with this plugin by creating a shortcode from widget then you can user in any page do you want.

    https://wordpress.org/plugins/widget-shortcode

    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: Remove Author Title Posts & Pages #51213
     Radu
    Moderator

    Hello,

    Go to Wp-admin -> Theme Options -> Blog ( see screenshot )

    Display post meta on archive listing -> OFF ( if you want to disable posts meta in archive listing )
    Display post meta in Single post page -> OFF ( post page )

    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: Page title from home page #51210
     Radu
    Moderator

    Hello,

    Go to homepage backend scroll down after content area at Theme General Settings -> Title Section (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: edit text in profile photo upload area #51208
     Radu
    Moderator

    Hello,

    You can edit or translate that string by using Codestyling localization.

    Go to WP-ADMIN -> Tools -> Localization -> Buddypress ( see screenshot )

    After you translate/change that text, press generate mo 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: How can i show the topics in the homepage of forums? #51206
     Radu
    Moderator

    Hello,

    Try with this shortcodes

    COPY CODE
    
    
    Forums
    [bbp-forum-index] – This will display your entire forum index.
    [bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
    
    Topics
    [bbp-topic-index] – Display the most recent 15 topics across all your forums with pagination.
    

    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

    Hello,

    1 Hour = 3600000 miliseconds
    2 Hours = 7200000 miliseconds
    6 Hours = 21600000 miliseconds
    12 Hours = 43200000 miliseconds
    24 Hours = 86400000 miliseconds

    Just convert hours or days to miliseconds.

    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: Add a "resolver" or "in Progress" #51199
     Radu
    Moderator

    Hello,

    Read more here : https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status

    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? #51198
     Radu
    Moderator

    Hello,

    In Kleo Styling Options is not exist section to customize tabbed content, this are styled from theme core css.

    Please provide me URL of that page , i will give you a CSS Fix for borders

    Sorry for inconvenience

    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: 5 Columns #51197
     Radu
    Moderator

    Hello,

    Yes you can do it, this is the html code that generates 5 columns

    COPY CODE
    
    <div class="row">
        <div class="col-md-2 col-md-offset-1">1</div>
        <div class="col-md-2">2</div>
        <div class="col-md-2">3</div>
        <div class="col-md-2">4</div>
        <div class="col-md-2">5</div>
    </div>
    
    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 second level menu style site-wide? #51196
     Radu
    Moderator

    Sorry but i can’t see a menu with level 2 depth

    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,

    Strange thing,

    Try to submit for reindexing in google webmaster tools.

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

    Hello,

    Have you tried to re save permalinks ?

    Just go to permalinks from wp-admin am press save and recheck after.

    Let me know if it works.

    Also try to disable all plugins which have not come with the Kleo Theme.

    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: add color to social media icons in top menu #51189
     Radu
    Moderator

    Hello,

    You can add colors for top menu social icons like this

    COPY CODE
    
    
    /* Kleo Social Icons Custom colors */
    
    ul.kleo-social-icons a[href*="twitter"] { background-color: #0084B4 ;}
    ul.kleo-social-icons a[href*="twitter"] *{ color:white; }
    
    ul.kleo-social-icons a[href*="facebook"] { background-color: #3B5998;}
    ul.kleo-social-icons a[href*="facebook"] *{ color:white; }
    
    ul.kleo-social-icons a[href*="youtube"] { background-color: #cc181e ;}
    ul.kleo-social-icons a[href*="youtube"] *{ color:white; }
    
    

    You can duplicate that css and replace with your needed domain.

    Please provide a screenshot with that problematic widgets or/and provide URL.

    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: second theme purchase #51164
     Radu
    Moderator

    Hello,

    For the second theme install use second purchase code.

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

Log in with your credentials

Forgot your details?