Forum Replies Created
-
Author
-
Radu
ModeratorOk 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
ModeratorFirst, i need to see page URL where the images are not served from CDN
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 use this CSS
COPY CODE.panel-kleo .panel:nth-of-type(1) { background-color: red; }The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
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 sure it’s an error in ajax request, where I can see that (page url)
Try to enable wp debug to see if some errors appear in debug.log file after you press on the button
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.
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,
For the month’s translationI see but the month list its part of BuddyPress, can you try please to use default wp theme? to see if it’s the same using a default wp theme? Anyway try to re-sync the buddypress language file and save it then look for the month strings
The “successfully logged out” message it’s from our theme but it’s translatable field, try to sync in loco translate the kleo_framework language file, after you translate to make sure to empty all caches.
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,
Are you referring to the top header links? social icons? that you set in wp-admin -> theme options -> social icons ?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorEmpty the cache if you have it if still not works provide admin credentials and url in a private reply.
Add this css
COPY CODE#whats-new-options { opacity: 1 !important; display: block !important; }Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Follow this https://archived.seventhqueen.com/forums/topic/display-membership-level-on-public-profile#post-156233
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTo be clear!
The “home register” can be the register page only if you don’t have required profile fields in BuddyPress ( Users -> Profile Fields ).
Then you should redirect users from original register BuddyPress page to the “home-register” page using this codeCOPY CODE/* Redirect to Profile if Loggedin */ add_action( 'template_redirect', 'redirect_to_specific_page2' ); function redirect_to_specific_page2() { if ( bp_is_register_page() && !is_user_logged_in () ) { $current_user = wp_get_current_user(); $profileurl = $current_user->user_login; wp_redirect( home_url().'/home-register/', 301 ); exit; } }Then replace home-register with your desired from wp_redirect( home_url().’/home-register/’, 301 ); line
NOTE : Child theme needs to be installed and activated.
The function needs to be pasted in wp-content/themes/kleo-child/functions.php
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
1. In dashboard > Settings > Buddypress > Pages > Register page should be “Register” not “Home Register”
2. The kleo_register (home register) shortcode will redirect member afteer complete the displayed fields and press register to the original buddypress register page only there are some additional fields to be completed.
So you want to redirect user in what case ? after they are loggin ?
If you really need to add or edit existing fields there here is responsable file : wp-content/plugins/k-elements/shortcodes/templates/kleo_register.php but you will need to know some php and html, if you want to rewrite the shortcode i recommend you to copy this file in /wp-content/themes/kleo-child/k_elements
So, in child theme k_elements folder will have to change where we need

For the submenu not working i don’t understand exactly where are you referring but make sure to have all plugins update not kleo and buddypress, also try to re-save permalinks from wp-admin -> settings -> permalinks.
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 css to makes that white isntead of black it’s next
COPY CODE.rtmedia-container .mfp-content .rtm-lightbox-container { background: #ffffff !important; } .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta { background-color: #fff !important; } #buddypress .rtmedia-like-info {background:#fff !important;} #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons { color: #000 !important; } .rtmedia-container ul#rtmedia_comment_ul li, .rtmedia-activity-container ul#rtmedia_comment_ul li { background-color: #fff !important; } .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments { background-color: #fff !important; } #buddypress #rt_media_comment_form {background:#fff !important;} div#rtmedia-single-media-container { background: #fff !important; }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,
Maybe it was caused by the import in the past where the paths remains the old one, try to re-upload those images and check again
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,
Where can i see that live pleasE?
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Go to wp-admin -> appearance -> menus

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 14, 2017 at 19:16 in reply to: Having trouble with too much white space when website is viewed on a iPad #164272Radu
ModeratorHi,
That it’s so odd, try to update them to latest version if you don’t have it and,
I think that it’s caused by customizations from quick CSS, can you copy all those and save it for later use then remove it from the theme and test if it behaves normally.
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,
Add this css
COPY CODE#whats-new-options { display: block !important; height: auto; visibility: visible; }Wp-admin -> theme options -> Styling Options -> Quick css
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHI,
Cannot reproduce that, isn’t a general problem, it seems to be only on you.
If you know exact the things that i need to reproduce it let me know
Also try to reproduce with all plugins deactivated and also the child 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,
I see,
For this matter we cannot help at virus or spam cleaning, you can ask that on the hosting support, or maybe to restore an old backup where your site wasn’t affected
For security we recommend this plugins:
https://wordpress.org/plugins/wordfence/
https://wordpress.org/plugins/sucuri-scanner/Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
This it’s fixed, please wait few hours max 1 day then an update notice will appear in your wp-admin -> dasuboard -> updates
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,
Technically each user should log in at least one time to become “active users” then BuddyPress will show the profiles in search results.\
Try to add this functionYou can try to activate manually accounts with this kind of function that updates the user status in database
COPY CODE<?php $user_id = get_current_user_id(); add_user_meta( $user_id, 'user_status', '0' ); ?>The function needs to be pasted in wp-content/themes/kleo-child/functions.php
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,
This is how demo it looks


Comparative with your screenshots, the displayed profile doesn’t have a cover photo uploaded, and if it’s your profile it’s normal buttons add friend and sent message to not appears.
Also make sure to have all BuddyPress components activated like friends connection and private messaging

My screenshots was taken from iphone 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,
The GEodirectory settings are there : wp-admin -> geodirectory -> design

And the map shortcode attributes can be changed from wp-admin -> pages -> edit your homepage then in header content

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,
@johnburgess please use Kleo posts and use the build query and add the posts name in the “Individual Posts/Pages/Custom Post Types” field.
Even if you add the complete name of the post?
The posts it’s in multiple languages ?
Does it happen only with that post?
I cannot reproduce on my local install the posts area appearing if I need to do something special 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,
For making more spacing available on the sidebars use that CSSCOPY CODE.template-page { padding: 0 !important; } .sidebar { padding: 0 !important; }The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
For the headers, I need to see live example, cuz I’m “blind” in this way
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOk let me know
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 14, 2017 at 03:51 in reply to: rtMedia Button disappeared from Groups and Activity Stream #164228Radu
ModeratorNot marked as solution -
AuthorPosts

