Forum Replies Created
-
Author
-
Radu
ModeratorThe css will be added to wp-admin -> theme options -> General settings -> Quick CSS
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You are using KLEO theme and the levels page it should like this : https://seventhqueen.com/themes/kleo/membership-account/membership-levels/
In the “WHAT-THEY-SHOULD-LIKE.jpg” file are shown the membership levels from the sweetdate theme : https://seventhqueen.com/demo/sweetdatewp/membership-account/membership-levels/
You can add this css to play with the unavailable features
COPY CODE.row.membership.pricing-table ul li { color: #333; } .row.membership.pricing-table ul li.unavailable { color: #c4c4c4; text-decoration: line-through; }You can remove the text-decoration: line-trough;
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
The edit likes text options not affecting that.
Just replace the code with this one
COPY CODEadd_filter( 'pre_get_posts', 'show_posts_by_kleo_likes' ); function show_posts_by_kleo_likes( $query ) { if(is_home()) { $query->set('meta_key', '_item_likes'); $query->set('orderby', 'meta_value_num'); $query->set('order', 'DESC'); return $query; } }Will run only on blog/ page
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
On then
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You can add the search feature beside the cart icon on mobile following the next screenshot

Wp-admin -> theme options -> header options.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
1. Using this code you should be able to do that…when a user register but, if you need to apply to already users use the second snippet code
COPY CODE//Disables the pmpro redirect to levels page when user tries to register add_filter("pmpro_login_redirect", "__return_false"); function my_pmpro_default_registration_level($user_id) { //Give all members who register membership level 1 pmpro_changeMembershipLevel(1, $user_id); } add_action('user_register', 'my_pmpro_default_registration_level');COPY CODEfunction my_pmpro_default_registration_level($user_id) { //Give all members who register membership level 1 pmpro_changeMembershipLevel(1, $user_id); } add_action('wp_loaded', 'my_pmpro_default_registration_level');1 represents the level ID, for the second code, it may cause some errors while loading since it should update all your 30000 users maybe you will have to increase PHP execution time if you cannot handle with the server settings ask the hosting company about that.
The second code should be removed to not be run all time.
2. Personally, I haven’t done such as operation but there is a plugin that you can study and test it.
https://wordpress.org/plugins/members-import/
3. This is a server side issue, please look at this answer: https://stackoverflow.com/a/2891598/7974488 it contains the solution, I think you should ask about that on hosting support.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just replace this file content : /kleo/wp-content/themes/kleo/page-parts/posts-related.php
With this one: https://pastebin.com/raw/KwvbBDjp
This will be fixed in next theme update so just replace that file content.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please let us 1-2 days to investigate and fix this, I’ve noticed the issue it happens also on our demo
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Tried to reproduce that live on your site but I cannot reproduce it and all seems as it should, good!
see the video: https://drive.google.com/file/d/0Bxo5b6iHWRMwVy1iblppRGY3NEE/view
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Kleo it’s the most integrated theme with BuddyPress and also with VC.
To can filter those implies installation of a third party plugin but it’s a lite o you should install this plugin https://wordpress.org/plugins/bp-member-type-generator/ and you will have the ability to create carousels by member types

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Please please provide to me a video to can see exact the actions and how you click to can show this to the designer since this it’s an odd problem which cannot be reproduced always
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 15, 2017 at 16:51 in reply to: Styling Changes not taking effect in theme options and customizer #170712Radu
ModeratorHi,
Sorry for the late reply,
I’ve tried to log in using the provided credentials to test the behavior that you describe and the login details are wrong.
You should try to deactivate all plugins and test again if you are able to make changes to theme options or customizer.
If the issue persists, try to re-upload the parent theme files over the existing ones.
If still persists enable wp_debug then save again theme options or customize and check the debug.log file, I will paste below the debugging procedure.
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.
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 make sure to have latest theme update since on our demo this issue not happens, also try de-activate all plugins except BuddyPress and check again.
https://seventhqueen.com/demo/sweetdatewp/members/demo/messages/
If the problem persists try to re-install parent theme.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
If you have a theme version older than 4.2.8 you should update it for woocommerce 3.1 compat.
You can de-activate the unused plugins for a better performance, and use this plugin: https://wordpress.org/plugins/p3-profiler/ you can see what plugin uses significant resources.
I recommend you to take a look ar this nice guide: https://seventhqueen.com/blog/code-snippets/the-definitive-wordpress-speed-guide-step-by-step-easy.html most sure will help you
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Can you provide an example how the image doesn’t fit? live URL or screenshot with some additional notes
You can de-activate the featured image in content from wp-admin -> theme options -> Display media on post page -> OFF
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Your website’s online?
On the demo I cannot see the logo like that, you can see that on our demo ?
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 solutionRadu
ModeratorHi,
Trying to figure out for 1 hour and I cannot figure out, please wait until tomorrow when I will be assisted by the core developer.
Cheers
R.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 tried to reproduce that on my local install and I’m not able to reproduce that, can you please provide to me the admin credentials to can take a closer look? and leave also the menu like in the screenshot, please if you can
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
1. You can de-activate the animations sitewide from Theme Options > Miscellaneous > Site-Wide Animations and selecting “Disable on all devices”.
2. What module are you using there ? the issue’s the navigation missing?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Most probably you will have to modify the template and to remove the image from the post loop template.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Just check in wp-admin -> appearance -> menus ->

If the KLEO section isn’t displayed by default there just click screen options(from the top right og page) and check KLEO.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
It’s recommended to make those changes in child theme to not loose your changes when the theme updates, so just copy the file register.php
from: /wp-content/themes/buddyapp/buddypress/members/
to: /wp-content/themes/buddyapp-child/buddypress/members/Child theme needs to be installed and activated.
That’s all
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
You’re welcome
Have a great week
Cheers
R.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 uploaded the profile picture without any problem, also I was able to change my profile details following the link did you have solved? : https://parttimeco.com/ptgsocial/members/support/
Anyway, the profile missing the sub menu navigation

By default this it’s displayed mayne you have modified that file ?
/ptgsocial/wp-content/themes/kleo/buddypress/css/buddypress.css line 2787
Let me know, anyway you can remove the display:none!important from there.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
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 solutionRadu
ModeratorHi,
the field can be hidden using this CSS
COPY CODE.woocommerce-checkout p#billing_address_1_field { display: none; }The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
But anyway on our demo we have the address field on the checkout page, look at it: https://seventhqueen.com/themes/kleo/checkout/
The Orders tab from woocommerce doesn’t have a panel from where you can customize it. but anyway there are displayed your orders.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 14, 2017 at 17:57 in reply to: Problem with Toggle menu disappearing on iPad and phone view #170590Radu
ModeratorHi,
Did you have tried to deactivate all plugins?
Did you have tried to remove all css from quick css area? (save it for later use) if it works
—-
I’ve noticed after,
The problem it’s caused by the css provided above, try to remove all of that and check again,
Then let me know what you need to achieve.. to can find a proper solution for that.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 14, 2017 at 17:14 in reply to: Other media (video) still overlapping on activity wall #170587Radu
ModeratorHi,
Yes it’s about CSS
That it’s caused by a css from quick css area

If you remove those all will be ok. just look in quick css area for those and remove it (but save it for later use if you will need) and check
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Buddyapp uses a modified version of the bootstrap framework meybe that, but where in page you try to add that menu? (provide screenshot)
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts

