Forum Replies Created
-
Author
-
sharmstr
ModeratorWhat demo page?
The function is adding compatibility as it states. If you look further on in the function, it says “If the user isnt admin and they are not logged in, then die and show the logo and message.
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 cant confirm it because I cant reproduce it on my sites. Others have indicated that reinstalling the theme solved this issue.
What about the second link. Have you confirmed the font files are being loaded?
The first link had the basic questions. Have you confirmed versions of k-elements, kleo and vc? Have you looked for plugin conflicts? Have you checked your server error log?
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
ModeratorClick on modify selected. That will launch the grid editor. Click on the pencil icon near the word normal.
You should consult the VC documentation as well.
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
ModeratorYou have verified its not a Kleo issue. I’ve given you some advice on things to check. Since it happens on the 2015 theme, perhaps someone else has had this issue with BP. Have you searched/asked on their forum.
btw – not being able to edit .htacess is not a kleo, bp, 2015 or even a wordpress issue. Its a server issue. Either permissions or something else.
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
ModeratorIts something you’ve added to your child theme because it works with the Kleo parent theme enabled.
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
ModeratorSince it also happens on the 2015 theme, contact your hosting provider to see if they can assist. It sounds like a server config 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
ModeratorAlso, let me know if it happens with the WP 2015 Theme enabled.
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
ModeratorIf it was a size issue then you’d receive a different error. What’s the exact error? Check your server error logs and try enabling wp debug.
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
ModeratorVC allows you to edit the design settings for that. Click item design. That will launch the grid editor. Click on the block settings and change what the link does. Now, I’m only telling you that so you understand what’s really happening. It will not allow you to add a custom link to each image, only a custom link to be used on all images.
Now that you’ve seen that, the actual code that produces it is in /js_composer/include/templates/shortcodes/vc_gitem_zone.php.
That’s about as much help as I can offer 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
ModeratorNext time, please indicate that you tried code. It will speed up this whole process. Your code has fancy quotes. Common mistake. They even mention it here: https://buddypress.org/support/topic/remove-public-message-button-in-child-theme/#post-164097
The experts in this case are the buddypress developers since its their 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
ModeratorIf you are talking about the xprofile data, again that’s not kleo and you’ll have that issue with any other theme. Buddypress does not allow for the name to be private by default. See attached example to verify we are talking about the same thing.
When you say ” member’s profile names, and photos still show up online”, what do you mean by online? Like in web searches?
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
ModeratorMoving this to feature request for plugin compatibility to be voted on.
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.06 % of bp sites use this plugin. I wouldnt call that popular. 🙂
The icons aren’t big by default. So either you have a plugin conflict, custom css, site errors or aren’t running the latest version of Kleo. See attached.
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’m not answering duplicate posts. You’ve been asked several times not to do this. Thank you.
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 problem is your bell icon isn’t displaying. Looks like somehow you’ve defined the one from Font Awesome instead of the default fontello one. Anyhow, you can try this css
COPY CODEi.fa.fa-bell.fa-lg:before { content: '\e864'; font-family: "fontello"; color: #fff; }
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 override the function that builds the page. Put this in your child theme functions.php file and edit as neccesary.
COPY CODEfunction kleo_maintenance_mode() { $logo_path = apply_filters('kleo_logo', sq_option_url('logo')); $logo_img = '<img src="'. $logo_path .'" alt="maintenance" />'; if (sq_option('maintenance_mode', 0) == 1) { /* Theme My Login compatibility */ if ( class_exists( 'Theme_My_Login' ) && Theme_My_Login::is_tml_page( 'login' ) ) { return; } if ( !current_user_can( 'edit_themes' ) || !is_user_logged_in() ) { wp_die( $logo_img . '<div style="text-align:center">' . sq_option('maintenance_msg', '') . '</div>', get_bloginfo( 'name' ) ); } } }
If that’s beyond your capabilities, then I suggest using a plugin. I use this one https://wordpress.org/plugins/coming-soon/
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 search before posting. Thank you.
https://archived.seventhqueen.com/forums/topic/icons-dont-appear-for-visual-composer-accordions
https://archived.seventhqueen.com/forums/topic/icons-not-displaying
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 search before posting. Having to answer the same questions multiple times defeats the purpose of a forum.
There is even a sticky topic on how to change the icons: https://archived.seventhqueen.com/forums/topic/change-buddypress-navigation-menu-icons
And another topic on how to change the order of the icons: https://archived.seventhqueen.com/forums/topic/re-order-menu-positions-on-members-profile#post-60568
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 search before posting. There is info on the buddypress forum on how to do 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
ModeratorTry this css
.vertical-col .col-sm-6 {
vertical-align: top !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
ModeratorYou shouldnt guess if there are plugin conflicts or not. You should disable all and know for sure.
You have a CDN in place. Purge it so that it has updated files. You should be doing that after every 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
ModeratorBecause you have it turned on. Theme Options > Misc
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 flushing your CDN. Look for jquery errors in your browser console. Look for plugin 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
ModeratorIts not the theme’s responsibility to make your site private. There are a few plugins for private sites. Some have been mentioned here. Since you’re using bp, search their forum for recommendations.
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
ModeratorWhat they said.
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 search before posting: https://archived.seventhqueen.com/forums/topic/facebook-sharing-no-image#post-53356
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 sure I understand your first question. Registration and purchasing PMPro levels is separate functions and can exists on the same site.
Kleo doesnt offer any integration of the two. That question is best asked on the rtMedia forum.
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
ModeratorDid you configure Geo Directory? Take a look at this: https://archived.seventhqueen.com/forums/topic/geodirectory-importing#post-63566
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 the tickets are a CPT created by a plugin? If so, you’d be better off using a search form from the plugin (by way of a shortcode) if they have one. There is no way for kleo to know that it needs to go to a “ticket” search results page when the user clicks show all results.
You can filter the ajax results that pop up to only show your cpt by changing the search form 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
ModeratorWP Admin > Appearance > Kleo Demo > Specific page.
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
.woocommerce-page div.product .product_title {
max-width: 75%;
}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 18, 2015 at 16:58 in reply to: Is is able to remove theme settings from post new/edit screen? #68851sharmstr
ModeratorNo, that’s wrong. In your case you just need to edit /kleo/lib/metaboxes.php. I gave the link as a reference to explain the function. And as noted, you cant override it, so you’ll have to remember to apply your edits after every upgrade.
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
ModeratorResave your permalinks: wp admin > settings > permalinks > save
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 code is css. Its goes in theme options > general > quick css
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
Moderatorhttps://archived.seventhqueen.com/forums/topic/a-big-list-of-suggestions 🙂
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.responsive-tabs>li span {
background-color: #fff !important;
}please search, its been asked and answered.
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
ModeratorAdd this to your quick css
COPY CODE.main-color .btn-primary, .main-color .btn-primary, .main-color .btn-primary:hover { color: #fff !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
ModeratorNeed admin access
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 cant help until you upgrade. Dont confuse your purchase code with your api key. Due to the recent issues at themeforest, you probably need to ftp the update to your server: https://archived.seventhqueen.com/forums/topic/steps-to-update-kleo-theme
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@abe – can you take a look at 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
-
AuthorPosts