Forum Replies Created
-
Author
-
RaduModerator
Hi,
Not sure if that can be easily modified since there it’s a js script that calculates the current width of the width placing a certain number of tabs to be displayed by available space, so this cannot be re-written like a css code.
I will ask the core developer about this possibility and i will let you know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 31, 2018 at 18:11 in reply to: WP Baker Page Builder new update has disfigured my site #212485RaduModeratorOk
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 31, 2018 at 17:50 in reply to: Grid Builder spacing; Buddypress and BBpress Integration #212481RaduModeratorNot marked as solutionOctober 30, 2018 at 16:23 in reply to: Replace Group Cover Image with shortcode for google map #212424RaduModeratorHi,
The image it’s placed as background for the container div via CSS with background-image so there it’s not like remove and replace operation.
The file where you can try to workaround that it’s this one : wp-content/themes/kleo/buddypress/members/single/member-header.php
It can be overwritten by copying it into child theme in this path
wp-content/themes/kleo-child/buddypress/members/single/member-header.php
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Try to update buddypress plugin,it was a issue with this in past buddypress versions.
Also try to setup this plugin maybe that’s why the emails don’t sent https://wordpress.org/plugins/wp-mail-smtp/
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
1. You can change the order using the next function
COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['settings']['position'] = 10; $bp->bp_nav['activity']['position'] = 20; $bp->bp_nav['friends']['position'] = 30; $bp->bp_nav['groups']['position'] = 40; $bp->bp_nav['blogs']['position'] = 50; $bp->bp_nav['messages']['position'] = 60; $bp->bp_nav['profile']['position'] = 70; } add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
The function will be added to wp-content/themes/kleo-child/functions.php
10,20,30,40,50 etc represents order
Child theme needs to be installed and activated.
2. Go to wp-admin -> theme options -> buddypress -> Enable member navigation* -> OFF
3. Menus can be managed under wp-admin -> appearance -> menus ->
For KLEO and Buddypress links you need to enable them in screen options to go in WP Admin > Appearance > Menus and open the panel at the very top right of the page titled ‘Screen Options’, check the option “KLEO and Buddypress”
Then from Buddypress menu add the settings link
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorIF you turn child theme off and all plugins except visual composer and k-elements and then re-save permalinks from wp-admin -> settings -> permalinks -> save changes they are behaving as it should ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 30, 2018 at 15:29 in reply to: Profile Picture and Activity/Profile/Notifications/Messages/Friends/Groups/Forums/Media/Settings change size #212415RaduModeratorHi,
Try with this css
COPY CODE#buddypress div#item-nav ul li a { padding: 0 15px !important; }
Decrease the 15px value until they fit better
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 solutionOctober 30, 2018 at 15:28 in reply to: Grid Builder spacing; Buddypress and BBpress Integration #212414RaduModeratorNot marked as solutionRaduModeratorHi,
Ah sorry, you can add that css into a media query where it will be applied only on certain resolution up
COPY CODE@media(min-width:768px) { .logged-in #main { margin-top: 30px !important; } }
OR
COPY CODE@media(min-width:991px) { .logged-in #main { margin-top: 30px !important; } }
IT should be ok with this,
Let me know, tried to take a look on your site to see how the menu looks with that css and the credentials not works.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 30, 2018 at 15:06 in reply to: WP Baker Page Builder new update has disfigured my site #212412RaduModeratorHi,
I see, i’m not sure what to advise yout since you know better than mine what you have there and what exacly you need, maybe you will have to compare them in mobile view to see which it’s fit better for your needs.
Both of them has the same core wp+buddypress excepting buddyapp that was created mobile first, anuway they are behaving nicely on cross devices from now you will have to decide which one you will use.
From what i know when you developt a iphone app there should be done on a certain way not like an addriod web app using a webview embeding the actual mobile view.
So do some tests on mobile view and chosse.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi, Sweetdate theme had updated the templating system because buddypress from 3.0 upgrated template structure and there was no way to use the old templates there was needed to update also the buddypress template files into theme. Also if you are only running 3.0 and you have the deprecated fields checked it may break the functionality. So those should not be checked to can run 3.0 version So if you will choose to perform 3.x update you will need to ask the same developer about this, and tell em that the buddypress templates was changed then the files from child should be re-adapted, or you can use the 2.9 version and in the future to migrate slowly. Anyway on our theme options a section becomes deprecated from version 3.0 it's wp-admin -> theme options -> homepage(deprecated) And if you will upgrade from 2.9 to 3.0 Go to wp-admin -> theme options -> buddypress -> Search form customization(DEPRECATED) uncheck all fields! Please keep in mind this! for 3.x Versions it's mandatory to not use the wp-admin -> buddypress-> Search form customization(DEPRECATED) So uncheck all of those! So, now the search form will be builded from wp-admin -> users -> profile search. Horizontal form settings : Home form settings : The forms will be populated with additional fields from wp-admin -> users -> profile search- > Members Horizontal or home search. Make sure to have all plugins updated! and child theme without any changes from past theme versions. The homepage for 3.0 version can be imported from elementor, see here how : https://archived.seventhqueen.com/forums/topic/my-profile-search-form-of-my-home-page-has-disappeared/#post-210979 Cheers RRaduModeratorHi,
The menu for the non-logged in was not assigned to any position
I’ve set primary for that, check it it should be ok
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 solutionRaduModeratorHi,
I see,
There it may be needed to create a new page in that you will use the available shortcodes from visual composer. An appropriate widget will be members carousel or members grid but it’s not enough to meet your needs since the app should communicate with the wp and buddypress install to make the query including the phone gps location and comparing with the other users. So this thing isn’t related KLEO theme build in features and i think for this you need to hire a developer to make custom developed to can achieve your need.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
The class kleo-scrollo-to should be added to the a href element or the li element where you click not at the row.
What’s the url from the screenshot ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Q : Can you confirm that if I would switch to WPML, and move everything to WPML, everything would work?
R : No, because i don’t know exactly what you have there and what are your expectations, the i suggested WPML cuz it’s very reliable and works on majority of wp versions without similar issues like explained one.The thing that you may need to take into consideration when you migrate to WPML, it may need to re-do all your translation if the wpml way witch it’s different than your current one.
The WPML it’s compatible with the sweetdate https://wpml.org/theme/sweet-date/
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
If the issue persists using also default wp theme it meaning that there is no theme issue and there the issue may be related to one of those plugins, or both of them in combination, you should report the issue to the plugins developers.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Can you share the wp admin credentials and FTP to can take a closer look ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Can you share the wp admin credentials and FTP to can take a closer look ?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
That’s because there it’s a gap element
You can set hidden for mobile devices from responsive settings from visual composer -> gap element
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 25, 2018 at 15:02 in reply to: How to use bp_core_fetch_avatar instead of get_avatar for blog post owner #212175RaduModeratorHi,
Try to add this function in child theme functions.php and let me know
<img src=”
if ( ! function_exists( ‘kleo_fb_bp_show_avatar_url’ ) ) {
function kleo_fb_bp_show_avatar_url($gravatar, $params)
{//if we have an avatar uploaded and is not Gravatar return it
if (strpos($gravatar, home_url()) !== false && strpos($gravatar, ‘gravatar’) === false) {
return $gravatar;
}return $gravatar;
}
}”>Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorNo problem
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Make sure to have latest theme and plugin versions ! Let me know
If you de-activate child theme it continue to happens ?
If you will use default wp theme instead the kleo theme the issue persists ?
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 solutionRaduModeratorHi,
What do you mean by
“Now where is that extra translation step that scratches my Imagine song?”Not sure what to advice you since you had done that thing in child to make the translation of the fields, a most reliable way it’s to use a plugin like wpml.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRaduModeratorHi,
Not sure if this behaviour it’s a theme specific one, i think it comes from how your plugin handles the redirect for the non-logged in users, did you had tried to ask the same on their support maybe they will come with an idea related to this ?
You can ask them for a snippet that redirect guest user when they access a premium membership specific one, then add the correct, your desired 404 url there.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts