Forum Replies Created
-
Author
-
Kieran_SQModerator
Hi,
You can use the below CSS to remove the border for the individual profiles in the members directory
.members .search-item {border: none;}
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
This looks like it might be a caching or plugin conflict. Please can you make sure BuddyApp and it’s plugins are fully up to date and then disable all plugins except for BuddyPress, disable all caching and purge your front-end cache (Ctrl+F5). Does the issue continue?
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I have already applied a CSS fix for this as per my previous reply. Please purge your cache whilst on the members page (Ctrl+F5) to see changes.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.Kieran_SQModeratorHi,
I did a test on a local and live server using WP Bakery 5.4.7 and the latest BuddyApp and it is working for me. Could you update this ticket, in a private reply, with admin credentials for your site so I can check this out.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
Can you share with me how it does not work – does it not load? are buttons not working to add content? Please supply more information.
Also please check your PHP version, if you’re running PHP version 5.X please update to the latest available version of PHP (7.X is preferable).
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
As per the support article I shared you can add, edit or remove fields by adding to the code. I have updated this for you in WP Admin > Appearance > Editor > SweetDate Child > Functions.php
Code changed from
COPY CODE// Custom Fields on Members Directory // //members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am a', 'Marital status', 'Country' ); }
Code changed to
COPY CODE// Custom Fields on Members Directory // //members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am a', 'Marital status', 'City', 'Country' ); }
Note that I added the field titled City before Country, you can use the same format to show any fields in the order you desire.
I have also added the below CSS fix that will allow all of the defined fields to show as in some cases it may extend outside of the area allowed.
.search-item .date, .search-item .date a {height: auto;}
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
The CSS for your site, with your current plugins, to hide the menu items on the profile is as below
COPY CODEli#activity-personal-li {display: none !important;} li#xprofile-personal-li {display: none !important;} li#notifications-personal-li {display: none !important;} li#messages-personal-li {display: none !important;} li#friends-personal-li {display: none !important;} li#location-personal-li {display: none !important;} li#groups-personal-li {display: none !important;} li#forums-personal-li {display: none !important;} li#media-personal-li {display: none !important;} li#settings-personal-li {display: none !important;} li#membersfav-personal-li {display: none !important;}
You should remove any line from above where you wish to keep the menu item available on the front-end, for example, as per your opening text (profile, notifications, messages and friends) it would be as follows
COPY CODEli#activity-personal-li {display: none !important;} li#location-personal-li {display: none !important;} li#groups-personal-li {display: none !important;} li#forums-personal-li {display: none !important;} li#media-personal-li {display: none !important;} li#settings-personal-li {display: none !important;} li#membersfav-personal-li {display: none !important;}
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I have added the below code to your site via WP Admin > Appearance > Editor > SweetDate Child > Functions.php to show the users country.
COPY CODE// Custom Fields on Members Directory // //members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am a', 'Marital status', 'Country' ); }
You can add, edit or remove other fields by following this article https://archived.seventhqueen.com/sweetdate/article/add-profile-information-member-name-members-directory .
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
After logging in I found you’re not using the supported media plugin for BuddyPress, rtMedia. It looks like you have two plugins that both offer the same functionality, BuddyPress Activity Plus and BuddyBoss Media, these two plugins are probably in conflict with each other on some level and at the very least it is duplicating functionality.
If you do not wish to use the supported and integrated plugin for media uploads then please pick one or the other for your installed plugins and see if the issue continues. If it does you will need to reach out to the developer of the plugin you pick for support with their plugin.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
March 11, 2018 at 15:41 in reply to: Changing color for the Icon down direct element for Home Company (v4) #191326Kieran_SQModeratorHi Perkin,
Thanks for contacting us about customizing the demo content. You can edit the color of the magic container directly in WP Bakery (formerly Visual Composer).
Go to WP Admin > Pages and edit the demo page, scroll down to the row titled #services and click the pencil icon for the first ‘KLEO Icon’ element, it will be marked with a circle next to the pencil icon with the color that needs to be changed.
When the edit modal has opened select the ‘Design Options’ tab and there you will be able choose your desired color.
I have attached a screenshot to guide you through. Let me know how you get on.
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.Kieran_SQModeratorHi,
Unfortunately I am still not able to login using the details provided. Please consider creating a new user with the email kieran@seventhqueen.com so I can reset the password if needed or sending details again after checking/resetting the password.
Error (username removed)
ERROR: The password you entered for the username ###### is incorrect. Lost your password?
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi Anthony,
Thanks for clarifying for me. You would need to contact YITH or a developer to build this for you it is not something we offer built into the theme and it falls under custom development.
I do not know of any plugin off the top of my head that will achieve what you’re after.
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
As I said in my above reply, as per your screenshot, that area does not have a full width container for the menu only and therefore it is not possible to style in the way you showed in your screenshot.
You can of course set the background color for the whole header in Theme Options > Styling Options > Header > Background Color but this will fill in the whole area of the header and not just the menu.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You can change the color transparency by editing the page, clicking the pencil edit icon for the 3rd row, selecting the design options tab that opens in the modal window and then open the background color picker tool. At the bottom of the bar you will see a percentage slider for alpha (transparency), slide this to a number less than the current 20 for more transparency or a number greater than 20 for less transparency (see screenshot).
With regards to the code above, Peter’s Login Redirect will redirect a user upon login or logout and does not interact with the default home page – therefore you can use both the code and plugin without any conflict. Please make sure to take the code from my reply and not the unformatted pasted version from your above reply.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.Kieran_SQModeratorHi,
My apologies, please use the below CSS for color
Option 1: Background color for the menu items only
COPY CODE.primary-menu.collapse.navbar-collapse.nav-collapse { background-color:#000000; }
Option 2: Background color for the menu container
COPY CODE.menus-wrap { background-color:#000000; }
Change the #000000 to your desired color and clear all of your caches to see the changes on the front-end.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorYou’re welcome, let us know if there is anything else we can assist with.
All the best,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I will refer this ticket to one of our developers for review as I am not sure where it is inheriting the ‘projects’ from. They’ll be in touch with you as soon as they can, Monday to Friday, East European Time.
Thank you for your continued patience,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorNo worries at all, does it work for you now?
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
It looks like you haven’t copied the code from the code snippet within the ticket as you have &039 etc within the line above. Please copy the code as is from the ticket and try again.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
You will need to go to WP Admin > Slider Revolution and hover over the slider you wish to edit, click the cog icon to edit the slider settings.
Once this has opened scroll down to ‘4. Slide Layout’, select the second px field (probably set to 713px) for ‘Desktop Large’ and enter your desired value. Save your settings and refresh.
Note: You will almost certainly need to adjust the layers in the slider to suit your new sizing and this should be carried out by you in the same area but in the slide editor tab.
See here for more info https://orionthemes.com/knowledgebase/how-to-change-the-height-of-revolution-slider/
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
The highlighted area in your screenshot is not where the container ends so I am not sure you’ll be able to achieve what you’re after – here are two options to add a background image to this general area.
Option 1: Background image for the menu items only
COPY CODE.primary-menu.collapse.navbar-collapse.nav-collapse { background-image: url(http://domain.com/wp-content/uploads/2018/03/your_image.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; }
Option 2: Background image for the menu container
COPY CODE.menus-wrap { background-image: url(http://domain.com/wp-content/uploads/2018/03/your_image.jpg); background-repeat: no-repeat; background-size: cover; background-position: center center; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
March 10, 2018 at 21:32 in reply to: How enable comments on (and edits to) Buddypress activity updates? #191279Kieran_SQModeratorNot marked as solutionMarch 10, 2018 at 21:05 in reply to: How enable comments on (and edits to) Buddypress activity updates? #191275Kieran_SQModeratorNot marked as solutionKieran_SQModeratorHi,
You’re setting the min-height in Elementor to 400px where the slider is already 868px – as the sliders height is greater than the minimum 400px it will inherit the height of 868px.
If you wish to set the height via Elementor to be greater than the slider you will need to select a value grater than 868px in min-height. You can also edit the height of the slider in WP Admin > Revolution Slider.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorThanks so much for updating your review, it really does help 🙂 We’re happy to help as always.
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
The login details you have provided do not work. Please update this ticket, in a private reply, with updated admin credentials for you site.
There used to be a plugin for a post update widget – unfortunately it seems like it is no longer available. We do not have a shortcode in BuddyApp for achieving this.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
It does appear that, that plugin, doesn’t work as intended. You should search for an alternative in WP Admin > Plugins > Add New – terms like ‘frontend password reset’ etc. should help in finding an alternative. You should uninstall the plugin if it does not work.
Another solution is to style the wp-login.php page to look more like SweetDate, there are many options for this and you could search for ‘style wp login’ or ‘customize wp login’ for appropriate plugins.
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
That’s great to hear, if you ever need more assistance with anything else feel free to open a new ticket and we’ll be happy to assist.
I didn’t know it meant light/sun in India, in Ireland where this spelling comes from it means dark. It’s a bit of a Yin/Yang thing I guess 🙂
If you haven’t already done so please consider leaving the support received / theme a review on Theme Forest – every review really does help. https://themeforest.net/item/kleo-pro-community-focused-multipurpose-buddypress-theme/reviews/6776630
All the best with your project,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
In that case, as per my earlier reply, I have readded the 30px padding to the top and bottom of the row and it now displays correctly at that screen size.
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
I don’t understand your response. Does the plugin not send the appropriate link via email to the new page that has the shortcode and has been assigned via the plugins options?
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Kieran_SQModeratorHi,
At the bottom of the page you added a row with a gap element included, this made a gap of 90px in total at the bottom of the page (see screenshot).
I have removed this for you and it now displays as expected
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.Kieran_SQModeratorHi,
You can override the colors of the top links bar with the below CSS in your SweetDate Child theme’s style.css
Background color for bar
.top-links {background-color: #2f2f2f;}
Link and hover color for bar
COPY CODE.top-links a {color: #ff0a5d;} .top-links a:hover {color: #ffffff;}
Change the # values to suit your needs. Make sure to purge your website cache, CDN and local cache (Ctrl+F5) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
March 10, 2018 at 18:41 in reply to: How enable comments on (and edits to) Buddypress activity updates? #191249Kieran_SQModeratorNot marked as solution -
AuthorPosts