Forum Replies Created
-
Author
-
Radu
ModeratorHi,
Can you please provide the wp-admin credentials to take a closer look, 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 solutionOctober 2, 2017 at 17:28 in reply to: Shopping cart and notifications dont drowpdown since update #175435Radu
ModeratorJust add this css
COPY CODEli.menu-item.kleo-toggle-menu.shop-drop:hover ul.kleo-toggle-submenu { display: block !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,
I cannot see any issue using W3 Total Cache and using the theme… if you still have the plugin active, it’s safe to de-activate the W3 Total Cache on live but purge/empty all caches before do it.Then just test your snippets if haves effect on the frontend but using an incognito window(not keeps browser cache.)
Anyway, the snippets work on my end…and also on other users, maybe it’s an isolated issue? You can try to update the functions.php file from wp-admin -> theme options -> edit -> kleo-child -> functions.php maybe if you are using FTP client to edit in a dummy place… test it.
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,
Cannot test the searching behavior, it requires to log in but login details aren’t working.
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,
Cannot see the file/folders that have guided you to copy there

Do this again: https://archived.seventhqueen.com/forums/topic/paid-memberships-pro-checkout-template/#post-175172
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,
1. Actually there on the results page, it’s displayed the default search page from WordPress where that will not search through members, only CPT’s.
You will have to perform the member search from the yourdomain.com/members/ and you will have to add the next code to functions.php file from child theme to permit only numeric values to be typed in the member search form.COPY CODEfunction bp_directory_members_search_form_only_number($query_arg) { $query_arg = bp_core_get_component_search_query_arg( 'members' ); if ( ! empty( $_REQUEST[ $query_arg ] ) ) { $search_value = stripslashes( $_REQUEST[ $query_arg ] ); } else { $search_value = bp_get_search_default_text( 'members' ); } $search_form_html = '<form action="" method="get" id="search-members-form"> <label for="members_search"><input type="number" name="' . esc_attr( $query_arg ) . '" id="members_search" placeholder="'. esc_attr( $search_value ) .'" /></label> <input type="submit" id="members_search_submit" name="members_search_submit" value="' . __( 'Search', 'buddypress' ) . '" /> </form>'; return $search_form_html; } add_filter('bp_directory_members_search_form', bp_directory_members_search_form_only_number);To can build the visible username of a user you can try this plugin https://wordpress.org/plugins/buddypress-real-names/
2. I see in this case there should be developed advanced searching rules by detecting if you are performing group search or member or any another context… I don’t have a quick solution for that, it maybe needs of a professional developer to achieve that.
4. After you press enter you will be driven to default wp search page, that’s how it was built… the member search and advanced member search can be performed from http://yoursite.com/members/
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 2, 2017 at 16:20 in reply to: SliderRevolution Support and Custom Contact form integration #175424Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
Tried to take a closer look at some settings, but the account isn’t activated

Can you activate it ?
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,
On my local install that not happens when I paste this to quick css area from theme options
Paste again the code but from here: https://pastebin.com/raw/zcfF6syU
From what I see there are used some wired quotes, see screenshot

Try to copy the code from Pastebin, if it’s still the same paste the code in wp-content/themes/kleo-child/style.css from the pastebin link.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorTried to figure out right now but I cannot, on my end I cannot reproduce I will add this to investigation and eventually bug list.
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 page shows 404 | http://hafsten.se/wp/sv/bohusstuga

Let me know the right URL
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 2, 2017 at 15:20 in reply to: logged in member page not appearing consistently between Chrome and IExplorer…. #175414Radu
ModeratorHi,
Please follow this soltuion : https://archived.seventhqueen.com/forums/topic/profile-menu-icons-rendering-too-large-in-internet-explorer/#post-172322
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
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,
did you have tried to de-activate child theme and all plugins before doing that?
You can do that using FTP client, but if you are not familiarized with those kinds of things, so do that in another easy way go to wp-admin -> appearance -> themes ->
activate any other theme, then delete the kleo theme, then upload it again.Re-download the theme files from ThemeForest to make sure you will upload the latest version.
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,
All good but you have forgotten to add the \ before the code f230
COPY CODE.icon-facebook:before { content: '\f230'; font-size: 20px; color: #4266b2; }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,
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,
To restrict the search only to numbers just add the next code to wp-content/themes/kleo-child/functions.php
CODE : https://pastebin.com/raw/jaH6m9cB
NOTE : Child theme needs to be installed and activated.
To remove ALL MEMBERS from there you will have to copy his file :
wp-content/themes/kleo/buddypress/activity/index.php
to
/wp-content/themes/kleo-child/buddypress/activity/index.phpThen in child theme remove the next line (see screenshot)

To remove MEMBERS filter from there, copy this file :
/wp-content/themes/kleo/buddypress/members/index.php
to
/wp-content/themes/kleo-child/buddypress/members/index.phpand see the screenshot

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 need to see that live, the URL that you have provided shows a blank page.
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 can install the Envato toolkit plugin add the details and check again: https://github.com/envato/wp-envato-market
If also this fail… you will have to try manual theme upadte by FTP : https://archived.seventhqueen.com/documentation/kleo#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,
The theme settings are saved in the database, not on the folder theme by you can perform theme settings backup from wp-admin -> theme options -> import/export -> download data file.
In the first instance de-activate all plugins and see if the text it’s still italic if yes de-activate also the child theme and check, if it’s the same, then re-upload theme files over the existing one. or delete theme from wp-admin -> themes and upload it again.
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 again
You can add the login details securely here if you check set as private reply, but anyway here’s my email radu@seventhqueen.com
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 that.. maybe in the directory uses the month of the year to calculate the difference and to see the exact age of the user and in the profile maybe it referred to the day…
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,
That’s the normal behavior of the WordPress /wp-admin and wp-login.php are default WP routes.
You should search for a plugin that helps you to achieve what you need.
A plugin that hides the wp login url : https://codecanyon.net/item/hide-my-wp-amazing-security-plugin-for-wordpress/4177158
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 think I found the real cause for that… all content seems to be wrapped into em tag that’s not normally

Did you have modified some files recently?
In the first instance try to re-upload theme files again over the existing one by overwriting them, if it’s the same de-activate child theme and check again.
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 copy this file : /wp-content/plugins/paid-memberships-pro/pages/checkout.php
To this location : /wp-content/themes/sweetdate-child/paid-memberships-pro/pages/checkout.phpMaking this, you will use the default PMPRO checkout template where the addongs can work like in default pmpro templates.
Child theme needs to be installed and activated.
That’s all, doing this you will have default pmpro checkout flow
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 can try this plugin : https://wordpress.org/plugins/invisible-recaptcha/
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 can choose another icon by following this guide: https://archived.seventhqueen.com/kleo/article/use-custom-fontello-icons-kleo-theme
and then you will have to add this selector
COPY CODE.icon-facebook:before { content: '\e94e'; }And replace \e94e with your new Facebook icon code.
If you want a nonfontello icon tell me
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 control the search context frmo wp-admin -> theme options -> header options

2. This is the responsible file for the notifications menu item : /Applications/XAMPP/htdocs/kleo/wp-content/themes/kleo/lib/plugin-buddypress/menu-notifications.php
3. Use those CSS’s
COPY CODE#buddypress div.item-list-tabs#subnav ul li#activity-all { display: none; } select#activity-filter-by option[value=new_member] { display: none; }The css will be added to wp-admin -> theme options -> General settings -> Quick CSS
4. Look at this video frmo this time : https://youtu.be/A6h0hHATCyM?t=1m46s just pull the menu in the right side one step.
5. If you have modified templates or other changes it can be a cause and you shhoudl recall the KLEO.main.init(); js function to re-init and calculate the with and height of the window including the new content added via AJAX
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 28, 2017 at 17:50 in reply to: Submit button in the signup page is not working and rtmedia templates #175102Radu
ModeratorNot marked as solutionSeptember 28, 2017 at 17:17 in reply to: Link to Any Spot in a WordPress Post with Page Jumps (Bookmarks) #175101Radu
ModeratorHi,
Check their documentation or ask them, I cannot find the docs online public… maybe you will have to add directly
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGreat
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorGreat
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
Moderatorchange priority (value 10) to a higher value or instead of using bb_user_login to use wp_login or wp_authenticate try those instead.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorPlease provide a URL of your website where the top bar it’s visible, in homepage i cannot see it.
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,
That’s odd, I saw that you have a bunch of plugins maybe somehow it cam interfere, try to de-activate all plugins of your website except Visual Composer from a computer where using VC isn’t possible to test it…
If you have any cache or minification/optiomization plugin de-activate all.
Also make sure to have all updated ( WP+THEME+PLUGINS )
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 solution -
AuthorPosts

