Forum Replies Created
-
Author
-
sharmstr
ModeratorCopy /kleo/page-parts/portfolio-masonry.php to your child theme. Search for aq_reize. There should be two of them; one for sliders and one for single images (default). Change those lines, replacing $img_width and $img_height to whatever you want. This obviously wont effect other post types like video.
COPY CODE$image = aq_resize( $slide, $img_width, $img_height, true, true, true ); $image = aq_resize( $slide, 300, 150, true, true, true );
If you want to change the way it crops or anything else, read about it on the aq_resize wiki: https://github.com/syamilmj/Aqua-Resizer/wiki
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
ModeratorSounds like a memory issue. Try turning on debugging. Make sure to set display to true. https://codex.wordpress.org/Debugging_in_WordPress
fyi – sensei and vc are running on the kleo demo site without 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
Moderatorhttps://rtcamp.com/products/rtmedia-mycred/
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
ModeratorAre saying the entire page is blank? Or is it that just the fields you’ve added are missing? If that’s the case, did you add them to the Base group? That’s where they need to be for registration.
In any case, I checked your site and there are several custom fields on your register 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
ModeratorThat’s not Kleo. Its buddypress doing it: https://buddypress.org/support/topic/automatic-links-in-profile-fields/
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
June 27, 2015 at 16:31 in reply to: Remove theme settings from product submission / editing pages #65234sharmstr
ModeratorWP has functions that allow you to control the display of meta boxes: https://codex.wordpress.org/Function_Reference/remove_meta_box
try this
COPY CODEif ( is_admin() ) { function remove_product_meta_boxes() { if( !current_user_can('manage_options') ) { remove_meta_box( 'mymetabox_revslider_0', 'product', 'normal' ); remove_meta_box( 'theme_product', 'product', 'normal' ); remove_meta_box( 'header_content', 'product', 'normal' ); remove_meta_box( 'bottom_content', 'product', 'normal' ); remove_meta_box( 'post_layout', 'product', 'side' ); // sidebar remove_action('edit_form_advanced', array('sidebar_generator', 'edit_form')); remove_action('edit_page_form', array('sidebar_generator', 'edit_form')); } } add_action( 'do_meta_boxes', 'remove_product_meta_boxes' ); }
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 your childs functions.php file. Change 30 and 1081 to the page ids you want to exclude.
COPY CODEfunction exclude_single_posts_home($query) { if ($query->is_main_query()) { $query->set('post__not_in', array(30,1081)); } } add_action('pre_get_posts', 'exclude_single_posts_home');
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 update Kleo, K-elements and VC?
No list that I know of.
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
June 27, 2015 at 16:03 in reply to: Comment section – Widen/Shift left side/Title Name Change #65230sharmstr
ModeratorTry this
COPY CODE#comments .comment-respond, #comments-list .comment-respond { margin-left: 5px; }
You can translate the title.
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
ModeratorSo, this isnt exactly what you wanted for the menu, but using the below css will hide the main menu until a user starts to scroll.
COPY CODE.sticky-wrapper.is-sticky { display: inline; } .sticky-wrapper { 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
ModeratorForgot to say… there might be some jquery out there that will do that, but you’d have to implement it on your own.
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
ModeratorQuick fix meaning css or a change to a line of code.
There’s no option to hide the menu on a certain section. Its either hidden or not.
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
June 27, 2015 at 02:39 in reply to: Just Upgraded to 3.03 – New Problems – This is Getting OLD! #65178sharmstr
ModeratorRenaming the folder will disable 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
ModeratorThis works with a featured image field. I just tested it and since it allows you to attach a featured image, Kleo will auto show in archive listings: https://wordpress.org/plugins/wp-user-frontend/
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 dont know code then you’ll have a hard time. There is a styling section in the bbpress documentation on their site. You can also search here.
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 used CRED before. https://wp-types.com/home/cred/ All of their plugins are great. But I used it in conjunction with a CPT I built that didnt need a featured image. Look at their docs or ask a presales question to see if it will do what you want.
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
ModeratorThere’s nothing built into Kleo or WP for that matter that gives you posting abilities on the front end. You need a 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
June 27, 2015 at 00:01 in reply to: Just Upgraded to 3.03 – New Problems – This is Getting OLD! #65165sharmstr
Moderatorhttps://archived.seventhqueen.com/forums/topic/kleo-updates-change-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
ModeratorIts the same issue its always been. Nothing has changed. If you’d like messaging/pmpro to act differently, feel free to open a Feature Request topic: https://archived.seventhqueen.com/forums/forum/feature-requests/kleo-feature-requests
Or, you can contact dev@seventhqueen.com for a quote on customizing it for you.
Or, you can signup with PMPro and ask them for code to do it which would by pass Kleos way of doing 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
June 26, 2015 at 23:27 in reply to: Just Upgraded to 3.03 – New Problems – This is Getting OLD! #65161sharmstr
Moderatorftp to your server and rename the folder for 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
ModeratorI have no idea. Ask the plugin developer. Maybe you have it configured 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
ModeratorThen kleo isnt stopping it from working.
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 is quick css
b, strong {
color: black;
}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 didn’t answer my question.
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
ModeratorDoes it work with the 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
ModeratorLooks bold to me. 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
ModeratorYou didnt say that initially.
Havent we already been through 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
ModeratorSomething isnt loading 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
ModeratorI need a link to a post that should be bold and isnt.
I found a post that had bold in it and its working.
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
ModeratorNeed a link and credentials to your site.
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 why its not scrolling instead of jumping. I copied your page into my dev site and it scrolls. http://dev.sharmstr.com/one-page-test/ (click on contact). 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
sharmstr
ModeratorThere was a similar problem with login radius. Maybe try this fix. If it doesnt work, I’m not sure what to tell you. Most of those social login plugins override the bp avatar functions.
COPY CODEfunction kleo_menu_user_avatar( $item_output, $item, $depth, $args ) { $output = ''; if ( is_user_logged_in() ) { $url = bp_loggedin_user_domain(); $attr_title = strip_tags( $item->attr_title ); $output .= '<a title="' . bp_get_loggedin_user_fullname() . '">has_children && in_array($depth, array(0,1)) ? ' js-activated' : '' ) . '" href="' . $url . '" title="' . $attr_title .'">' . bp_get_loggedin_user_avatar(array('width' => 25, 'height' => 25)) . '</a>'; $output .= ( $args->has_children && in_array($depth, array(0,1))) ? ' <span class="caret"></span></a>' : '</a>'; return $output; } elseif ( $args->has_children && in_array( $depth, array( 0, 1 ) ) ) { return $item_output; } else { return ''; } }
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
Moderatorand here https://bbpress.trac.wordpress.org/ticket/2718
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 from kleo. Its from bbpress: https://bbpress.org/forums/topic/minor-debug-notice-with-buppypress-version-2-2-beta/
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
Moderatorrespond privately with link and credentials. I know it works. You have something screwed up.
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 will need to see a link to determine what the problem is.
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
ModeratorAssuming you’re still talking about the one that shows up from PMPro, you do it in PMPro > Advanced.
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
Moderatorul.dropdown-menu.sub-menu a {
color: #fff !important;
}ul.dropdown-menu.sub-menu {
background-color: #647da7 !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
June 26, 2015 at 20:48 in reply to: Main Menu: kleo-mobile-switch appears but menu doesn't stay visible #65116sharmstr
ModeratorThat’s auto set via jquery. When in a closed state, it should be set to display:none. You have something that screwing up the jquery and making it close right away. Maybe double firing.
You can see on the demo site: http://seventhqueen.com/themes/kleo/blog-normal/
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 just spent another 40 mins on it. I cant sort it out.
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