Forum Replies Created
-
Author
-
sharmstr
ModeratorSet the navbar color text to white then. The code I gave you is to change it after scroll 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWp Admin > Pages > cick on the page. Change to Backend Editor for Visual Composer. If you dont see the backend editor button, make sure you have Visual Composer turned on for pages: Wp admin > Visual Composer: Content types.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorKleo 3.0.5 and rtMedia 3.8.12
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatordynamic.css is always there. Kleo creates that file with you save the theme options. Thats how the custom colors gets loaded. It could be that theme options needed to be resaved after the update.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m not getting the gaps that you are, so it hard to help. Maybe try this
COPY CODE#buddypress .rtmedia-container .rtmedia-list .rtmedia-list-item { margin-bottom: 0px !important; margin-right: 0px !important; }
To remove the one by one animation, you’ll have to edit two files
/kleo/rtmedia/media/media-gallery-item.php. Remove ‘el-zero-fade’ from the li class (around line 16).
/kleo/rtmedia/media/media-gallery.php. Remove the ‘one-by-one-general’ class from the ul (around line 41)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI havent seen anything. You should ask on the BP forum. More BP users there 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorDo you have Allow registered members to upload avatars enabled in bp settings?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorYou can try this in your functions.php file
COPY CODEadd_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
Change 1 to the id of the level you want to assign
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOh and once you get your form sorted out, be sure to change the form id in the shortcode to your form id.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThat shortcode is from the BP Profile Search plugin. There’s documentation on the plugin’s website: https://wordpress.org/plugins/bp-profile-search/installation/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorarggg. The links are screwed up. See attached for changes.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorGo to /kleo/woocommerce/myaccount/my-address.php and change this line (around line 46) from
COPY CODE<a>" class="edit"><?php _e( 'Edit', 'woocommerce' ); ?></a>
to this
COPY CODE<a>" class="edit"><?php _e( 'Edit', 'woocommerce' ); ?></a>
Verify that it works and I’ll submit a permanent change.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderator1 – Theme options > Woocommerce
2 – On page load, woo loads the single product image according to the size set in woo > settings > products > display: Single product image. Perhaps at one point you had that set to a different size and didnt regenerate the images after changing it? The reason it looks okay after clicking through the other thumbnails is because the jquery that changes doesn’t load the the image using the single product image size.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorHow is it not working? Looks like it working to me.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe issue isn’t Kleo. It happens when the 2015 theme is enabled.
If you go into the admin and bring up decision-guide in the page editor, look at what the url does. It goes from
/wp-admin/post.php?post=4981&action=edit (which is correct)
to
/decision-guide/?post=4981&action=edit (which is clearly wrong)
So when you click update, it tries to submit the form (page) to /decision-guide/ instead of wp-admin.
I looked for a few plugin conflicts by disabling a few that I thought might be the issue, but you should disable all of them to see if it fixes the issue. Or maybe you have something in your .htacess file causing the redirect of the edit url.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 3, 2015 at 13:31 in reply to: how to disable the resizeable property of what's new textarea #71306sharmstr
ModeratorQuick css is written to the source. styles.css is loaded from a file. It would have worked in quick css if it had !important on it.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorOkay. I need to get out of here. I’ll get back to you soon though.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorerrrr – what animation exactly? The display one by one?
The gaps and titles are animations.
COPY CODE.rtmedia-item-title { display: none !important; } #buddypress .rtmedia-container .rtmedia-list .rtmedia-list-item { margin-bottom: 0px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorCredentials dont work
I’m not getting a 404 on either of those pages.
BP activity privacy plugin might be causing a conflict.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 2, 2015 at 16:59 in reply to: Cannot access /wp-admin after updating BuddyPress and bbPress #71228sharmstr
ModeratorHave you tried disabling the plugins? You can ftp to your server and rename the plugin folders one by one until you can get in. This will also ID the conflict.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorKleo didnt add tabs and accordions. They come standard with VC: http://vc.wpbakery.com/video-academy/work-tabs-accordions-tours-visual-composer-wordpress/
Here is a list of some of the Kleo added shortcodes and their options: https://archived.seventhqueen.com/documentation/kleo#shortcodes
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorFor the activity, try this assuming your kleo and bp are up-to-date
COPY CODEadd_action( 'init', 'remove_activity_animation', 10 ); function remove_activity_animation() { remove_filter('bp_get_activity_css_class', 'kleo_bp_activity_classes'); }
Make sure you have masonry turned off in rtMedia settings??
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m great !
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorCool!
How have you been?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe option for the admin bar in theme options only initiates code if its set to off. So, by default, if its set to “on” it will follow the standard WP way of showing it to to logged in users and not guests. If your site is hiding it for non-admins perhaps its a plugin doing that. I know woocommerce will do that. Same for showing it to guests. If you have “Show the toolbar for logged out users” enabled in buddypress, then it will show the toolbar. Again, Kleo isnt doing this. You could’ve easily tested this by temporarily enabling the WP 2015 Theme.
Same thing for Default wordpress redirect. If you have BP enabled it will go to homepage. If you have woo enabled it will go to my-account.
Take Kleo completely out of the picture by enabling the 2015 theme. Only disable k-elements, nothing else. Dont make any other changes and test your site again and tell me if I’m wrong.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’m assuming you’re using the full width layout. Try this in your quick css
COPY CODE.template-page.col-sm-12 .kleo-isotope>.kleo-masonry-item, .template-page.col-sm-12 .kleo-isotope>li { width: 33.3% !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatora – There is no setting in Kleo to allow for this. You’ll need to find a plugin.
b – Ask the sexy author plugin developers how to change the link.
In both cases, you’d have to find solutions even if you were using a different theme since they are not theme issues. They are plugin issues.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTo make it 3 groups per row instead of 3, do nothing. LOL If you correct that question, I’ll try to help 😉
Put this in your quick css and adjust as needed
COPY CODE#buddypress #groups-list .item-title a { font-size: 50px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorThe cover is a background. So you dont change the image height, you change the container height.
body.buddypress.is-user-profile div#item-header {
min-height: 500px;
}Adjust as necessary.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorRight, because the css was for WP pages. I tried to make that distinction clear… I know its confusing. Profile pages aren’t WP pages. 🙂 Glad you got it sorted.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI’ve done a bunch of testing and though you say it works with the 2015 Theme, it doesnt. If I try to upload multiple images with with the 2015 theme enabled, the activity only shows 1 image. I think you have a plugin conflict. Disable all plugins except k-elements, bp, rtMedia and vc. Clear your cache and CDN. Then test again.
I’ve also changed your live notification polling interval. 5 secs is too short.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 2, 2015 at 14:27 in reply to: Limit Extended Profile Multi-line text area max characters #71206sharmstr
ModeratorThen ask on the BP forums. Kleo doesnt control that.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorI dont have any experience with knowledge base plugins. I’ll move this to Feature Request to be consider for possible integration. Even though the menu isnt displaying can you manually get to theme options by putting this in the url? http://www.yoursite.com/wp-admin/admin.php?page=kleo_options
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 2, 2015 at 14:16 in reply to: how to disable the resizeable property of what's new textarea #71203sharmstr
Moderatortry this
#whats-new {
resize: none;
}Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
Moderatorvouchers aren’t part of woocommerce core, right?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorWhy would you need to see the register page if you’re already logged in? If you’re already logged in then you have already registered. No need to see it. Regardless, this is standard BP functionality. Kleo has nothing to do with that.
Copy the /kleo/buddypress/members/register.php template to your child theme and edit as necessary.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTry this css to change the font after scrolling.
COPY CODE.navbar-transparent .navbar .kleo-main-header.header-scrolled { background-color: #fff !important; } .navbar-transparent.on-dark-bg .navbar .kleo-main-header.header-scrolled .navbar-nav>li>a, .navbar-transparent.on-dark-bg .navbar .kleo-main-header.header-scrolled .navbar-nav .caret:after { color: #000 !important; }
No advice on changing the logo. I believe its been discussed here before. Do a search or use a logo that works for both backgrounds.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorPlease do not paste that much info. Just attach it next time.
Anyhow, its the same error over and over and it has to do with some referral/affiliates plugin you have installed.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstr
ModeratorTry this
.kleo-main-header .container {
max-width: 100% !important;
}Also, you banner (logo) is only 1316px wide. It will never fill the entire width on large screens.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts