Forum Replies Created
-
Author
-
Kieran_SQ
ModeratorHi,
There is a description of usage examples on the link that I sent to you.
Usage
COPY CODE[profile url="/messages/" text="Inbox"] [profile url="/messages/sent/" text="Sent"] [profile url="/profile/change-avatar/" text="Update your profile picture"]
Anything before (and including) the username part of the URL should be disregarded. Use only what for follows.
For example (as per the above shortcodes)
https://www.domain.com/members/username/messages/
https://www.domain.com/members/username/messages/sent/
https://www.domain.com/members/username/profile/change-avatar/
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,
For the main activity feed please use the below snippet on a new line at the end of the KLEO Child theme’s functions.php file – you can do this via WP Admin > Appearance > Editor > KLEO Child > Functions.php or via your hosts file browser.
COPY CODEfunction limit_main_activity( $loop ) { $loop['per_page'] = 5; return $loop; } add_filter( 'bp_after_has_activities_parse_args', 'limit_main_activity' );
You can also limit the individual members activity feed with the below snippet. Add this as per the instructions above
COPY CODEfunction limit_members_feed( $loop ) { // only fetch the last five entries if we're on a user's activity page if ( bp_is_user_activity() ) { $loop['per_page'] = 5; } return $loop; } add_filter( 'bp_after_has_activities_parse_args', 'limit_members_feed' );
In each instance change the number 5 to suit your needs.
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 use the below custom CSS in your SweetDate Child theme’s style.css, I have added !important to this CSS because it does not appear you’re adding your CSS in the file stated above and therefore you may need to use !important going forward with any CSS for it to render as expected.
COPY CODE#members-list .search-item { margin-top: 50px !important; } #members-list { margin-top: 50px !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,
Please use the below custom CSS in the Child themes style.css
COPY CODE@media only screen and (max-width: 767px) { .contain-to-grid .top-bar { width: 80%; margin-left: auto; margin-right: auto; } }
Adjust the 80% value to suit your needs and clear caches to see 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.
Kieran_SQ
ModeratorHi,
1. Please check this post on excluding files with page rules for CloudFlare https://support.cloudflare.com/hc/en-us/articles/200172316-How-do-I-exclude-a-specific-URL-from-Cloudflare-s-caching-. With regards to excluding them from your caching plugin please check the plugin documentation or reach out directly to their support team for assistance with their plugin.
2. There currently is not a theme setting for this. However, you can use the below custom CSS to remove all bar the category. Please add this to WP Admin > Appearance > Editor > SweetDate Child > Style.css and clear your cache to see changes.
COPY CODE.article-meta .link-list li:nth-child(1) {display: none;} .article-meta .link-list li:nth-child(2) {display: none;} .article-meta .link-list li:nth-child(4) {display: none;} .article-meta .link-list li:nth-child(5) {display: none;}
3. I will review the ticket currently held with one of our developers Radu and reply if appropriate. More advanced tickets and tickets regarding bugs are referred to Radu due to his development background.
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,
With CSS you wouldn’t be able to reorder the tabs that way, you’d need PHP for each plugin to change the order, if you specifically wish to do this then you will need to reach out to the respective plugin authors and ask for assistance.
You can use the below CSS to reduce the size of the area if you wish. This will put all of the items in one row but will not change their order.
COPY CODE@media only screen and (max-width: 767px) { #item-buttons .generic-button { display: inline-block; float: left; max-width: 25%; } }
You could also use this CSS instead which will place them over two rows. Again, this will not change the order.
COPY CODE@media only screen and (max-width: 767px) { #item-buttons .generic-button { display: inline-block; float: left; max-width: 50%; } }
As always, clear caches to see changes on mobile devices.
Thanks,
Kieran
Edit: Please use the code that has been updated in this ticket and not the code sent in the email. I forgot to wrap the CSS in a media query. I have now updated the CSS.
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,
Please try adding the below custom CSS to your SweetDate Child theme’s style.css, make sure to purge website cache and browser cache (Ctrl+F5) to see changes.
COPY CODE@media only screen and (max-width: 767px) { #profile .user-nicename {display: none;} .bp-user #main {padding-top: 0px;} #profile p:nth-child(5) {display: none !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,
Sorry for missing that, to remove the count for the media tab only please use the below CSS
COPY CODEli#media-personal-li span { display: none; }
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 use the below custom CSS in your SweetDate Child theme’s style.css to hide this element.
COPY CODE#profile .radius.label.alert { display: none; }
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,
I have checked your site in Firefox and Chrome but I do not see that issue. I do however see a micro delay in rendering some avatars. When I check the avatars with the delay I can see they’re Facebook users. Are you using an Ad Blocker of any kind? If so, try disabling it and testing again.
It’s also possible that Firefox has cached old files or has a minor corruption in the content it has cached. Please try completely purging Firefox data except for form data and passwords, restart the browser and try again.
With regards to the slider please try adding the below paths to the exclusion lists for your caching plugin and in CloudFlare.
COPY CODEhttps://animematch.com/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min.js https://animematch.com/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js https://animematch.com/wp-content/plugins/revslider/public/assets/css/settings.css
Make sure to completely purge both website cache and CDN after saving these 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.
July 4, 2018 at 06:41 in reply to: Is it possible not to display Logo on the Home page only? #202853Kieran_SQ
ModeratorHi,
To remove the logo on the homepage only please add the below custom CSS to your KLEO Child themes style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or via Theme Options > General Settings > Scroll to: ‘Quick CSS’
COPY CODE.home .logo { display: none; }
Make sure to purge your website cache, any CDN and your browsers cache (CtrlF5) 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.
Kieran_SQ
ModeratorHi,
You can if you really wanted to but this will stop Messages > Compose from working properly as you will not be able to select (input) a name.
If you wish to disable this please add the below into your SweetDate Child themes style.css
COPY CODE.messages input#send-to-input { display: none; }
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,
I couldn’t find anything immediately through a search so I wrote this custom code for you that I will release later in a plugin. For now you can copy this code (from the ticket and not the email) and add it to your functions.php file
COPY CODEfunction piqt_replace_tags($text) { // Get post information $pi_title = get_the_title(); $pi_author = get_the_author(); $pi_date = get_the_date(); // Text to replace with post information $text = str_replace('{the_title}', $pi_title, $text); $text = str_replace('{the_author}', $pi_author, $text); $text = str_replace('{the_date}', $pi_date, $text); return $text; } // Enable within the content add_filter('the_content', 'piqt_replace_tags'); // Enable within the menu add_filter('walker_nav_menu_start_el', 'piqt_replace_tags');
You can use the following tags in your content or menus to generate the post title, author and date.
COPY CODE{the_title} {the_author} {the_date}
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.
July 1, 2018 at 02:57 in reply to: Prevent notification bubble from being cut off in the top bar #202555Kieran_SQ
ModeratorNot marked as solutionKieran_SQ
ModeratorThe correct CSS is
COPY CODE.elementor-2434 .elementor-element.elementor-element-1882c69 > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; } .elementor-1781 .elementor-element.elementor-element-a7dc2fb > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; }
This needs to be added to your Child theme’s style.css file. I have tested this in that file via the front-end and it works.
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,
The CSS for this specific element would be
COPY CODE.elementor-2033 .elementor-element.elementor-element-66dc627 > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; }
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
ModeratorYou can target all images within the sidebar with the below CSS but given that your sidebar content is built with Elementor rather than standard widgets this will not work given all of the extra ID’s and classes that are generating conflicting CSS.
COPY CODE.sidebar_location img { outline: 10px solid #ec1010; outline-offset: -20px; }
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,
1. The buttons have not disappeared. You’re viewing your own profile and therefore they’re not rendered because you cannot add yourself as a friend and it is unlikely you’ll ever want to click the buttons to @mention or private message yourself.
You can test this by checking your profile and the profile of another member. Then remove the code and check the profiles again.
2. You can customize the colors used for the button with the below CSS
COPY CODEa#photo-1 { color: white !important; background-color: darkblue !important; }
3. Yes, in the code simply add #main to the end of the URL after the /media/
Updated example below
COPY CODEfunction sqk_add_upload_photos_to_member_header_meta() { $link = home_url('/members/' . bp_core_get_username(get_current_user_id())); if (is_user_logged_in() && bp_is_my_profile()) { echo '<div class="generic-button" id="upload-photo-button-1"><a href="' . $link . '/media/#main" id="photo-1">Upload Photos</a></div>'; } } add_action('kleo_bp_header_actions', 'sqk_add_upload_photos_to_member_header_meta');
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 try adding the below to your desired class.
COPY CODEoutline: 1px solid #ec1010; outline-offset: -10px;
1px references the thickness of the ‘border’ element and the -10px refers to how much it should be inset.
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,
There isn’t actually a theme hook there so it would be quite difficult and complex to add to. You can however make use of the hook kleo_bp_header_actions which will add code (a button) to right of the image where you would see ‘Add Friend’, ‘Public Message’ and ‘Private Message’.
Try adding the below snippet to your SweetDate Child theme’s functions.php file via WP Admin > Appearance > Editor > SweetDate Child > Functions.php
Note: This snippet must be copied from the ticket and not the email otherwise formatting will be lost and cause errors.
COPY CODEfunction sqk_add_upload_photos_to_member_header_meta() { $link = home_url('/members/' . bp_core_get_username(get_current_user_id())); if (is_user_logged_in() && bp_is_my_profile()) { echo '<div class="generic-button" id="upload-photo-button-1"><a href="' . $link . '/media/" id="photo-1">Upload Photos</a></div>'; } } add_action('kleo_bp_header_actions', 'sqk_add_upload_photos_to_member_header_meta');
This code checks that the user is logged in and that the user is viewing their own profile – if these two conditions are met it will echo the HTML for a button in the meta area (buttons area to the right of the image). When the button is clicked the user will be redirected to the domain.com/members/username/media/ page where they can use the rtMedia uploader.
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 CSS will hide the menu item ‘Messages’ on the main menu on screens above 767px (non mobile devices)
COPY CODE@media only screen and (max-width: 767px) { li#nav-menu-item-1302 { display: none; } }
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,
I did not see the other two items, my apologies. To remove the filter will require custom development and is not something we can assist with via the forums.
To remove the ‘Starred’ from the menu please use the below custom CSS
COPY CODE.messages li#starred-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. 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,
Please add the below custom CSS to your SweetDate Child theme’s style.css to hide this element.
COPY CODE.messages td.thread-star { display: none; }
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,
Yes, please add the below custom CSS to your SweetDate Child theme’s style.css
COPY CODE.kleo-notifications { display: none !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 Rebecca, Thanks for contacting us about setting my groups as the default tab when the activity page loads. I have looked into this and create the code below which should work. Please copy the code from the ticket (not the email) and add it to WP Admin > Appearance > Editor > KLEO Child > Functions.php
Make sure to purge your website cache entirely, any CDN and your front-end cache (Ctrl+F5) to see the changes. Thanks, Kieranfunction sq_set_groups_as_default_for_activity_feed() { if (! is_user_logged_in() ) { return ; } if (! bp_is_activity_directory() ) { return ; } $tab = 'personal'; setcookie( 'bp-groups-scope', 'personal', null, '/' ); $_COOKIE['bp-groups-scope'] = $tab; } add_action('bp_template_redirect', 'sq_set_groups_as_default_for_activity_feed');
Kieran_SQ
ModeratorHi,
For the login page you can use the below custom CSS, please add it in its entirety to the end of the BuddyApp Child theme’s style.css file. Once added make sure you purge any website caching, CDN and your front-end cache (Ctrl+F5) to see the changes.
COPY CODE.page-id-261 .kleo-login-wrap .before-login-form-wrapper { background-color: rgba(0, 0, 0, 0.50); } .page-id-261 .kleo-login-wrap .login-form-wrapper { background-color: rgba(0, 0, 0, 0.50); } .page-id-261 .kleo-login-wrap .login-create-account-wrapper { background-color: rgba(0, 0, 0, 0.50); }
I selected a default black with 0.50 transparency – you can adjust this to any value you wish as described previously.
You do have Restrict My Site installed but you do not currently have it active. You can enable it by going to WP Admin > Appearance > Theme Options > Heading: ‘Private Site’ > Option: ‘Make my site private’. Select yes for this option and select your desired login page and any exceptions to the rule.
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,
I checked your style.css via the front end and it looks like you have commented out the CSS that I sent to you.
Currently it is
COPY CODE/* custom css per la trasparenza dell'overlay nella pagina di login .kleo-form-modal .kleo-login-wrap .before-login-form-wrapper, .kleo-form-modal .kleo-login-wrap .login-create-account-wrapper, .kleo-form-modal .kleo-login-wrap .login-form-wrapper { background-color: rgba(0, 0, 0, 0.05); } */ /* custom css per cambiare il colore dell'imput .kleo-login-wrap .login-form-wrapper .login-input-wrapper input.login-field { color: #000000; */
It should be
COPY CODE/* custom css per la trasparenza dell'overlay nella pagina di login */ .kleo-form-modal .kleo-login-wrap .before-login-form-wrapper, .kleo-form-modal .kleo-login-wrap .login-create-account-wrapper, .kleo-form-modal .kleo-login-wrap .login-form-wrapper { background-color: rgba(0, 0, 0, 0.05); } /* custom css per cambiare il colore dell'imput */ .kleo-login-wrap .login-form-wrapper .login-input-wrapper input.login-field { color: #000000; }
When I correct the commenting issue via the front-end it works as expected.
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 use that code, it is for BuddyApp. The class kleo and the theme KLEO are two different things. The class kleo is universal throughout our themes so that CSS can be reused – kleo is the default class in the BuddyApp, SweetDate and KLEO themes.
The custom CSS to override each title is
COPY CODEp.fb-register-title { color: red !important; } h3.kleo-pop-title { color: red !important; }
For the labels please use the following
COPY CODE.kleo-login-wrap .login-form-wrapper .login-input-wrapper .login-label .login-label-content { color: red !important; } .kleo-login-wrap .login-form-wrapper .fancy-checkbox>span { color: red !important; }
Change the values from red !important to your desired # value color, keep the !important in place for this to work. Make sure to clear your website cache, any CDN, and front-end 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.
Kieran_SQ
ModeratorHi,
You should be able to use word-wrap on this element. Try the below custom CSS in your KLEO Child themes style.css by going to WP Admin > Appearance > Editor > KLEO Child > Style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’.
COPY CODE.masonry-listing .post-title { word-wrap: break-word; }
Make sure to purge your website cache, any CDN and your front-end 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.
Attachments:
You must be logged in to view attached files.Kieran_SQ
ModeratorHi,
This is just a notice and can be safely ignored. They shouldn’t however be printed on the front-end as a matter of security. You can do this by editing wp-config.php in your main WordPress folder and adding the following
COPY CODEdefine('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
Make sure these are not already defined in your wp-config.php file. If they are then change the WP_DEBUG_DISPLAY that is already present to false.
https://codex.wordpress.org/Debugging_in_WordPress
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.
-
AuthorPosts