Forum Replies Created
-
Author
-
August 27, 2018 at 18:04 in reply to: The kleo_top_members shortcode is not working properly #207654
Kieran_SQ
ModeratorNot marked as solutionAugust 27, 2018 at 05:28 in reply to: The kleo_top_members shortcode is not working properly #207555Kieran_SQ
ModeratorNot marked as solutionAugust 27, 2018 at 00:55 in reply to: Sweetdate 3.2.8 Members page member images are square not circular. I want them to be circular. #207542Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi,
For others to use that code you will need to share it again using a code tag (from the reply box) before and after the code. As is stands the formatting has been stripped and would cause a potentially fatal error for another user.
With regards to placement, do you mean align the text right or change the location your calling it in? To align the text you’ll need to echo some HTML for the text so you can have a custom class or ID to target. To change where you’re calling this you’ll need to change bp_member_header_actions to any other BuddyPress hook as desired.
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_SQ
ModeratorHi,
Unfortunately there is an ongoing issue with the Envato (ThemeForest) API. We’re looking into it, however, we do not have access to their systems and cannot affect changes for them.
In the meantime you can go to ThemeForest and download the ‘Installable WordPress File’ for SweetDate to manually update it via WP Admin > Appearance > Themes > Add New or via SFTP/FTP and uploaded into /wp-content/themes/sweetdate/.
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_SQ
ModeratorHi,
This is not a feature of the theme and is not something standard in BuddyPress. You can however build something yourself using the WordPress user meta user_registered
See here for an example https://wordpress.stackexchange.com/questions/77876/display-user-registration-date/77878
And here for the WordPress codex
https://codex.wordpress.org/Function_Reference/get_userdata
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.
August 26, 2018 at 18:24 in reply to: My site is basically after the upgrade. (Latest upgrade) #207517Kieran_SQ
ModeratorNot marked as solutionAugust 26, 2018 at 18:17 in reply to: My site is basically after the upgrade. (Latest upgrade) #207515Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi,
The easiest way to change the order of profile and group tabs is to use a plugin. You may wish to try this free plugin to achieve that https://www.buddyboss.com/purchase/buddypress-reorder-tabs/.
If you’re comfortable coding PHP then you can rework this code (make sure to account for all tabs from custom plugins etc)
COPY CODE/** * Reorder BuddyPress profile tabs/navigation. */ function buddydev_reorder_buddypress_profile_tabs() { $nav = buddypress()->members->nav; // it's a map of nav items for user profile. // mapping component slug to their position. $nav_items = array( 'settings' => 10, // first. 'activity' => 20, 'friends' => 30, 'groups' => 40, 'blogs' => 50, 'messages' => 60, 'profile' => 70, ); foreach ( $nav_items as $nav_item => $position ) { $nav->edit_nav( array( 'position' => $position ), $nav_item ); } } add_action( 'bp_setup_nav', 'buddydev_reorder_buddypress_profile_tabs', 999 );
Reference https://buddydev.com/reordering-buddypress-user-profile-tabs/
With regards to colors you can follow the tutorial (step 1) you linked to but assign a color value at the same time, for example:
COPY CODE#buddypress div#item-nav ul #groups-personal-li a:before { content: "e995"; color: red; }
This will change the color of the groups icon on the profile page to red. I have attached a screenshot of the particular element you need to select in the browser console (F12) to generate the CSS you need.
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.August 26, 2018 at 17:41 in reply to: Hide Admin users from being displayed in Members Directory #207509Kieran_SQ
ModeratorHi,
The code you shared without the tags has lost it’s formatting so I cannot use it as an example, to share code here in the future please use a code tag (from the reply area) before and after the code.
If the code from our support article is not working for you then you may wish to try this from the BuddyDev team https://buddydev.com/exclude-users-from-members-directory-on-a-buddypress-based-social-network/.
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_SQ
ModeratorHi,
We have a support article about how to achieve this which can be found here 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_SQ
ModeratorHi,
You can do this with CSS as described above. I have generated a basic set of classes and styles that you can copy, paste and adjust to use as you need.
COPY CODE#buddypress table.profile-fields tr td.label { background-color: red !important; color: white; border-radius: 10px; } #buddypress table.profile-fields tr td.data { background-color: purple; color: white; border-radius: 10px; } #buddypress table.profile-fields tr td.data a { background-color: purple; color: white; font-weight:bold; border-radius: 10px; } #buddypress table.profile-fields { border: 0 !important; border-spacing: 5px; } #buddypress table.profile-fields tr td { padding: 15px !important; }
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_SQ
ModeratorHi Rob,
Thanks for contacting us about this custom development. We can’t offer custom development via the forums as it’s outside the scope of the support we provide.
Coding this properly would take some time but I think it is a great idea and could be a great addition to the theme so I am going to move this ticket to the Feature Requests section for the community to vote on.
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_SQ
ModeratorHi,
This is a special feature for SweetDate that we do not have any plans to add to KLEO or BuddyAp.
If you needed this functionality in the head of your profiles like this then you would need to custom code this yourself or hire a developer to achieve this for you. If you’re interested in speaking to one of our developers about this you can email dev@seventhqueen.com with as much information about your customization as possible
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_SQ
ModeratorHi,
You can override any CSS used within the theme by pasting in your custom CSS into your BuddyApp Child theme’s style.css file in WP Admin > Appearance > Editor > BuddyApp Child > Style.css
To target the labels for the profile fields use the below CSS
#buddypress table.profile-fields tr td.label {}
And to target the content of the fields use the below CSS
#buddypress table.profile-fields tr td.data {}
In each case feel free to define any colors, fonts, font weights, borders etc as desired. Save the customized CSS and clear your website cache / browser cache 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.
August 26, 2018 at 16:18 in reply to: Sweetdate 3.2.8 Members page member images are square not circular. I want them to be circular. #207495Kieran_SQ
ModeratorNot marked as solutionAugust 26, 2018 at 15:47 in reply to: Sweetdate 3.2.8 Members page member images are square not circular. I want them to be circular. #207493Kieran_SQ
ModeratorNot marked as solutionAugust 26, 2018 at 15:46 in reply to: The header and footer in Sweetdate 3.2.8 are not responsive. They look bad in mobile phones. #207492Kieran_SQ
ModeratorNot marked as solutionAugust 26, 2018 at 02:23 in reply to: My site is basically after the upgrade. (Latest upgrade) #207467Kieran_SQ
ModeratorNot marked as solutionAugust 26, 2018 at 00:38 in reply to: The kleo_top_members shortcode is not working properly #207463Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi,
I logged into your site and found that you have not activated bbPress under WP Admin > Plugins > bbPress. I have activated this for you and you’ll now see the Forums, Topics and Replies menu items in the WordPress admin sidebar (see screenshot).
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.August 25, 2018 at 21:08 in reply to: My site is basically after the upgrade. (Latest upgrade) #207450Kieran_SQ
ModeratorNot marked as solutionAugust 25, 2018 at 20:22 in reply to: My site is basically after the upgrade. (Latest upgrade) #207448Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi,
In your shortcodes you’ve not referenced a post type / built a full query. Go to WP Admin > Pages and edit the page with the shortcode, make sure you’re using the WP Bakery editor. Hover over the element you wish to configure and click the pencil icon to configure it. When the edit modal has opened click on the ‘Build Query’ button and select your desired post type, any specific categories and the amount of posts etc you wish to show. Save your settings and clear your cache whilst viewing the page on the front-end. If you have posts in that post type to show it should now appear.
I have attached images of how to do this with the News Ticker element but the process is the same for all three elements.
Let me know how you get on and if you need me to login and check for you. If you do make sure to update this ticket, in a private reply, with admin credentials (English US or UK).
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.August 25, 2018 at 18:06 in reply to: My site is basically after the upgrade. (Latest upgrade) #207436Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi,
The plugin redirect is for all members, as per my earlier message, this is regardless of whether or not this is a first time login or second (etc).
If you need to redirect only newly registered users on their first login then you will need to extend the code I referenced within my second reply.
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.
August 25, 2018 at 15:53 in reply to: The kleo_top_members shortcode is not working properly #207417Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorHi Martin,
In your examples I can see curly quotes which would break the functionality of the shortcode. They should appear like this.
COPY CODE[kleo_news_ticker posts_query="size:10|order_by:date"] [kleo_news_focus name="ALL NEWS" posts_query="size:4|order_by:date"] [kleo_news_focus name="LIFESTYLE" posts_query="size:4|order_by:date"]
Note in the above example the straight quotes.
If after you have copied and pasted the above examples (from the webpage not the email preview) you still have the same issue then please double check the following
1. You have WP Bakery and K Elements installed and activated. If you do not then please install and activate them via WP Admin > Appearance > Install Plugins. Clear your website and browser cache and check the page again.
2. Ensure you have not disabled either of these two features in WP Admin > Theme Options > Modules and Speed. Make sure News Ticker and News Focus are enabled.
Let me know the outcome,
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.
-
AuthorPosts