Forum Replies Created
-
Author
-
Radu
ModeratorOk
When you are done with that and if you still theme related issues further 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,
I’ve spoken with core designer of the product and it will investigate this issue today/tomorrow.
We will get back to you
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
just add this css
COPY CODE@media(max-width:768px) { .search .posts-listing .post-item { width: 50% !important; } }The css will be added to wp-admin -> theme options -> General settings -> 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 understand, please write your issue in english only cuz we don't understand Chinese or Korean CheersRadu
ModeratorHi,
Good
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorOK
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
IT’s media grid not a post grid, post grid will link the post to the post permalink, use post grid instead the media grid to can link direct the post.
For the topmenu, did you have any plugin that restrict the menu visibility by login state ? switch all plugins off and child theme see if that continue to happens.
For the coloring different by the hoverboxes check careful they shortcodes colors, in visual composer maybe they have set different colors.
Footer text can be changed from wp-admin -> theme options -> general settings -> Footer Text
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorIt looks like this

SO your current issue it’s from where the gray pattern comes ?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi
The results are 2 per columns by default, did you see the same on our demo ? https://seventhqueen.com/themes/kleo/?s=a
Maybe from a css rule, if you de-activate child theme are two per columns ? tried to see your search page but ask to login
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
They are looking how it was and before, i just changed the button proprieties to not be overlayed.
They are look unorganized because of the text that it’s not the same length everywhere, how you want to arrange them ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorYEs, from widgets

Cheers
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 scrolling in the menu for many items under mobile view add this css and let me know if you are able to scroll now
COPY CODE@media (max-width: 991px) { #header .navbar-nav { overflow: auto !important; } .kleo-main-header.header-normal>.container .primary-menu, .kleo-main-header.header-normal>.container .secondary-menu { overflow:auto !important; } }the header can be hidden under mobile view using this css
COPY CODE@media(max-width:768px) { .kleo-main-header.header-normal { display: none; } }The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorI see,
In first place update the theme and the plugins to latest version.
Then switch off all plugins excluding buddypress then de-activate the child theme purge all cache like cloudflare or others.
Let me know if it’s the same please provide to me into a private reply wp admin and FTP.
Cheers
RHi 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
The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
COPY CODE[class^="icon-"]:before, [class*=" icon-"]:before { font-family: "fontello" !important; }Of the the plugins change the font family css rule for al I’s elements
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I think the best way it’s to build your desired 404 design into VC then using this plugin : https://wordpress.org/plugins/easy-404-redirect/ to chose that 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,
the users are somehow generated or imported ? if yes try to repair buddypress data from wp-admin -> tools -> buddypress
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
If you want to force users to upload an image use this plugin : https://buddydev.com/plugins/bp-force-profile-photo/ if you don’t de-activate it
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
I think you should add wp_logout_url( ‘/url-page-to-be-redirected’ ); while you generate the logout link
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorCheck in elementor the parent row background.

Cheers
RHi 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 at the and of any css file
COPY CODE.burger-modal-styles:not(body) { overflow:visible; } .burger-modal-styles.search-visible.modal-is-visible { min-height: 100% !important; height: auto !important; }Let me know if that continue to happens.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi
I think i was blocked by the firewall or something tried to login with an old credentials.
Let me know
Country : RO
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@media(max-width:768px) { .submit .seven.offset-by-five.columns { display: inline-block; width: 100% !important; } }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,
Adding this code to functions.php will allow you to add any element to tinymce
COPY CODEfunction override_mce_options($initArray) { $opts = '*[*]'; $initArray['valid_elements'] = $opts; $initArray['extended_valid_elements'] = $opts; return $initArray; } add_filter('tiny_mce_before_init', 'override_mce_options');The function will have to be added in wp-content/themes/kleo-child/functions.php
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
Try again to recreate an api key or regenerate with a new one, create a new list.
Try to switch off the child theme if you are running with it. and check again if stil receive the same error.
If it’s the same it may be needed to enable wp debug and to reproduce the action that generate that error.
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.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
From what i know the buddypress user menu items are come directly from buddyrpess thought this function
Did you had tried to disable child theme and all plugins except buddypress and translation plugin ? Press sync again if you are using Loco translated.
Let me know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts

