Forum Replies Created
-
Author
-
RaduModerator
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 solutionRaduModeratorPlease 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 solutionMarch 24, 2015 at 19:08 in reply to: Lost Your Password error message is not properly initialized #51375RaduModeratorHello 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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorIn 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 solutionRaduModeratorHello,
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 solutionMarch 24, 2015 at 18:45 in reply to: How can i limit update time to just hours/days and not seconds #51365RaduModeratorHello,
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 solutionRaduModeratorHello,
The site cannot be accessed on my side i recive this message from browser.
COPY CODEThis 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.deThis 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 solutionRaduModeratorHi,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorPlease 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 solutionRaduModeratorHello,
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 solutionMarch 23, 2015 at 20:15 in reply to: Currently Kleo Menu and Groups icon redirects to wrong place as it is now #51251RaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionMarch 23, 2015 at 19:59 in reply to: Lost Your Password error message is not properly initialized #51247RaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorPlease 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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello 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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorHello,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorHello,
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 solutionAttachments:
You must be logged in to view attached files.RaduModeratorHello,
Try with this shortcodes
COPY CODEForums [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 solutionMarch 23, 2015 at 18:07 in reply to: How can i limit update time to just hours/days and not seconds #51201RaduModeratorHello,
1 Hour = 3600000 miliseconds
2 Hours = 7200000 miliseconds
6 Hours = 21600000 miliseconds
12 Hours = 43200000 miliseconds
24 Hours = 86400000 milisecondsJust 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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorSorry 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 solutionMarch 23, 2015 at 17:41 in reply to: Viewport meta tag not recognized by google webmaster tools #51195RaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 solutionRaduModeratorHello,
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 -
AuthorPosts