Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Follow this video : https://drive.google.com/file/d/0Bxo5b6iHWRMwSUQ3ZGIxQ21GWFE/view
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorWhat do you want to change ? the placeholder color that light grey ? first name , email etc ?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 30, 2016 at 19:17 in reply to: Buddypress not using all translation strings from ro_RO file #113636Radu
ModeratorHi,
Please backup your buddypress language files ( buddypress-ro_RO.po,buddypress-ro_RO.mo ) from wp-content/languages/plugins and replace it with the attached files
Let me know if the activation string will appear in romanian language
Regarding the read more button please let me know where the theme language files are ? if should be in wp-content/languages not in wp-content/languages/themes/
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorThe wpml works with kleo, do you receive any error ? enable wp_debug and wp_debug_log to see that error do you receive
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please disable all plugins except : buddypress,visual composer,k-elements,rtmedia,pmpro and check again, if the icons are shown enable plugins one by one to identify what causes this.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGood,
You’re welcome
Have a nice day
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Have a nice week
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
There are no option for what you need but you can try with this function
Add this code to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEfunction custom_excerpt_length( $length ) { return 0; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please provide a link where the top bar appears, i’ve browser your site and i cannot see it.
Cheers
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please provide url to the form to take a look
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I can provide you a css code that will hide the excerpt on that page, but please provide me the page url
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 30, 2016 at 18:39 in reply to: its posible to have Upload photo on registration page ? #113618Radu
ModeratorHi,
Theme doesn’t have functionality and we don’t have a quick solution for this.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Make sure that you have K-elements plugins installed and activated
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can use this css
body.pmpro-body-level-required .article-content {padding:300px 0 !important;text-align:center;}I will look more nicer with this css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see that the rest of pages works, no 404 error, do you have solved 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 solutionRadu
ModeratorHi,
Try disabling all plugins, install pmpro again, then enable your plugins.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You don’t need the purchase code for revolution slider because the plugin is prepackaged.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This is happens when you have an plugins that use same library as kleo ( bootstrap ) and it overwrites the framework, please disable plugins one by one except : buddypress,k-element,visual composer,pmpro,cover photo, revolution slider to identify what causes this.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I’ve added after and before yout footer text this
<div style="clear: both !important;"></div>And it works now
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just go to wp-admin -> appearance -> menus -> add your desired items for user menu from the top right then assign this location to the menu Top Right Header Menu
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I see the issue,
Please follow these steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the described actions and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.
After you have disabled the plugins try to see if the error persists.
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 solutionRadu
ModeratorHi,
Add this snippet to your child theme functions.php
COPY CODEadd_action('bp_core_activated_user', 'kleo_add_member_activity'); function kleo_add_member_activity($user_id) { add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s")); } function make_user_active( $user_id ) { bp_update_user_last_activity( $user_id ); } add_action ('user_register', 'make_user_active', 1, 11);Let me know
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Make sure that you are allowing users to signup on your website from wp-admin -> settings -> general -> check Anyone can register to the site.
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 solutionRadu
ModeratorHi,
Do you have installed recently a plugin ? Try to deactivate all plugins except buddypress to see if the login works
Let me know and provide url if the issue is not caused by some plugin
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Make sure you have selected the homepage from wp-admin -> settings -> reading -> home page -> choose your page (Kleo community , shop or your desired demo )
Also we have an video tutorial how to install&setup and import demo content : https://www.youtube.com/watch?v=Jfw_30XgOg4
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
What do you want to achieve ? the space between fields is to big ? (if yes proivde an account to can test the css on your website) or what ? please explain
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please provide your forum link from screenshot
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just i’ve tested on buddyapp theme with an iphone 6 to upload a picture to activity and it works.
If after you click on the media button nothing happens it can be caused by some JS errors, i suggest you to disable all plugins except Visual Composer,K-elements,Buddypress,rtMedia and Revolution slider, then test again.
Then enable plugins back one by one and check again to see what 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 solutionRadu
ModeratorStrange…. It’s like yesterday, i cannot login, i’ve tried to type the password not copy paste and i not works, please assign this email radu@seventhqueen.com to that account to reset pass to my email.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI will check right now, and i will notify you.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorSure,
Have a nice week
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Someone with this issue please provide admin credentials and FTP to can take a closer look at this
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can i mark the topic as resolved ? do you have solved your nginx config problem ?
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I think your issue is comes from child theme i see that you have overwritten the original theme files, you will have to find out what snippet causes this issue.
If you deactivate the child theme and activate the parent you will see the buddypress member widgets works and it loads the needed css
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this snippet to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEadd_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }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 solutionRadu
ModeratorIn this case please provide url and admin credentials to take a look at this
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Add this code to your child theme ( wp-content/themes/kleo-child/functions.php )
COPY CODEfunction custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );Replace 20 with your desired number.
Note : child theme needs to be active
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYou’re welcome
Have a nice week
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
That is not possible in Sweetdate theme, anyway you can use this css tweak to can be able to complete the login form.
COPY CODE.reveal-modal-bg { z-index: 9 !important; }Add this css to wp-admin -> theme options -> styling options -> quick css
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts