Forum Replies Created
-
Author
-
sharmstr
ModeratorI assumed you were using the default header layout because you didnt say differently 🙂 I’ll get back to you on this.
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
ModeratorCant see it without logging in.
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
ModeratorNo. Kleo is a theme. It stylizes the output of other plugins.
WP Admin > Settings > Reading > Discourage search engines from indexing the site.
If you’re going to be running and administering the site, I would strongly suggest you read up on wordrpess and buddypress.
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 need to search either bbpress (if only using forum) or buddypress sites for a solution. Kleo doesnt touch any of that. I believe I’ve seen a plugin before.
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
July 21, 2015 at 18:31 in reply to: section does not display background color and background image #69312sharmstr
ModeratorIf you look at all the kleo demos, they are filled with row and column background color and images. So, not a bug.
Make sure you have the latest versions of
Kleo 3.0.4
K-elements 3.0
VC 4.5.3Look for plugins that are overriding the css (conflicts)
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 in quick css
.header-scrolled .navbar-header .logo {
display: 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
ModeratorYou can always look in /kleo/vc_templates to see which files are being overridden. If you dont like the Kleo way of doing it, you can copy the template file from VC to your child theme. Basically it would be overriding the override 🙂
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 plugin “events handler” is causing it. See attached.
You can try putting this in your quick css to fix it
.feature-item .feature-icon {
background-image: none !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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorI dont know. Need access to see.
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 cant. Delete all the post and pages that were imported and do it again. There are bulk delete plugins that may help.
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
July 21, 2015 at 14:30 in reply to: Lost all Kleo customizations by adding a widget – wordpress compatibility? #69263sharmstr
ModeratorAssuming you’re talking about adding a widget using the WP customizer, did you guys change the active theme from child to parent? Theme options are set/saved at the theme level, so changing this would also change the theme options. I’ve tested on 3 of my sites and didnt have this issue.
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
ModeratorWe need to see a link in order to figure out whats going on.
What versions of kleo, k-elements and visual composer are you running?
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
ModeratorIt only accepts html. You can try overriding the /kleo/page-parts/general-title-section.php template, but if you’re not experienced in php, I wouldnt suggest 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
July 21, 2015 at 14:19 in reply to: How to add the custom menu and pages at buddypress profile menu? #69257sharmstr
ModeratorThat’s handled by buddypress, not Kleo. They have information in their documentation. https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/
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
ModeratorThis might do it. Put it in your quick css
COPY CODE#buddypress a.button.fav:before, #buddypress a.button.unfav:before, #buddypress a.fav.bp-secondary-action:before, #buddypress a.unfav.bp-secondary-action:before { content: "\e84a" !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
ModeratorNot by default, but you can use add_action in your childs functions.php to do it. Edit as necessary.
COPY CODE/*************************************************** :: Add custom HTML to page header ***************************************************/ add_action( 'kleo_before_main', 'kleo_global_header_content', 8 ); function kleo_global_header_content() { echo '<section class="kleo-page-header container-wrap main-color">'; echo "Add whatever you want here."; echo '</section>'; } /*************************************************** :: Add custom HTML to bottom page ***************************************************/ add_action( 'kleo_after_main_content', 'kleo_global_bottom_content', 12 ); function kleo_global_bottom_content() { echo '<div class="kleo-page-bottom">'; echo "Add whatever you want here."; echo '</div>'; }
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
ModeratorOff the top of my head, it would be something like
COPY CODEif ( is_user_logged_in() ) { // user is logged in show different logo <img id="logo_img" title="<?php bloginfo('name'); ?>" src="http://yoursite.com/path/to/your/logo.jpg" alt="<?php bloginfo('name'); ?>"> } else { <img id="logo_img" title="<?php bloginfo('name'); ?>" src="<?php echo $logo_path; ?>" alt="<?php bloginfo('name'); ?>"> }
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 never read the doc. My guess is Kleo ignores that and adds it in one place.
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 long have you had buddypress-functions.php in your child theme? My guess its an old version of the file and that’s why the members search isnt working. Can you temporarily remove that file and see if that fixes the issue?
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
ModeratorThemeforest. Open the full download, then open the kleo.zip and check the styles.css file. It will have the version in 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
ModeratorAbout 1.5 years ago I used a plugin that allow me to redirect everyone except admins to a page. For the life of me I cant remember the name of it. If I come across it I’ll let you know.
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 site screwed up the links. Here’s a text file with them. Basically all you are doing is adding a class that will popup up the kleo login modal when clicked.
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
ModeratorI think I was clear that there is no maintenance “page” and that’s its built using a single function which I provided.
There’s nothing stopping you from using VC shortcodes copied from whatever page you want in the function.
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
ModeratorCan you translate for 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
ModeratorYour page isnt loading, so I cant see which search form you are referring to. If its the one in the menu, have you selected members as an option in Theme Options?
If its the search bar shortcode in visual composer, have you selected members as an option in the search bar shortcode 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
Moderator…. hence the reason why I told you to purge your CDN in the first place 🙂
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 CDN probably had old files.
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. Sorry.
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
ModeratorNot really. Have you googled anything like ‘translate visual composer”?
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’s generated from Visual Composer. Does this help you? https://wpml.org/2014/06/use-visual-composers-page-builders-wpml/
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
ModeratorFigures. Lots of issues with that plugin.
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
ModeratorAwesome! Thank you for the info. Very helpful.
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
ModeratorGreat. That’s good to know. Can you tell us what version you were running?
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 also need to update Kleo to 3.0.4
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
ModeratorYour site is throwing 404 errors for the required jquery scripts.
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
ModeratorMoved this since its not a bug.
I installed it and it works fine with Kleo. See attached. Your issue is somewhere else. Perhaps a plugin 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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorSend your request to dev@seventhqueen.com
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 controlling it with this css. Adjust the padding as necessary. Beyond that, I dont know.
COPY CODE.fluid-width-video-wrapper { padding-top: 35% !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
Moderator🙂 Report back as it might help others.
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
ModeratorCopy /kleo/buddypress/members/activate.php to your child theme and add the kleo-show-login class to the login link.
Change this line
COPY CODE<p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?></p>
to this
COPY CODE<p><?php printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), wp_login_url( bp_get_root_domain() ) ); ?></p>
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