Forum Replies Created
-
Author
-
sharmstrModerator
Try this
COPY CODE.bp_activity .item-list-tabs { margin-bottom: 15px !important; } #buddypress form#whats-new-form { border-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
sharmstrModeratorTry this in your quick css
COPY CODE.product-loop-inner .posted_in { display: 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
sharmstrModeratorGreat!
Here’s the css to hide the filter
COPY CODE#activity-filter-select { display: 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
January 26, 2016 at 18:18 in reply to: Some saved options does not shows up right in frontend #100616sharmstrModeratorOne of two issues.
1 – You have caching enabled on your sever or a have a cdn in place. You need to purge them.
2 – Your site is having issues saving the options. Add this to your child theme’s functions.php file.
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
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
sharmstrModeratorYou can use sidebar specific css
COPY CODE.main-color .sidebar ul li a { color: red !important; } .main-color .sidebar { color: green !important; } #main .main-color .sidebar h4, .main-color .sidebar h4.widget-title a { color: pink !important; }
I purposely made them different colors so you can see which css controls which part of the sidebar.
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
sharmstrModeratorYou probably included the php tags
COPY CODE//Block certain activity types from being added function bp_activity_dont_save( $activity_object ) { $exclude = array( 'updated_profile', 'new_member', 'new_avatar', 'friendship_created', 'joined_group' ); // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function if( in_array( $activity_object->type, $exclude ) ) { $activity_object->type = false; } } add_action('bp_activity_before_save', 'bp_activity_dont_save', 10, 1 );
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
sharmstrModeratorOkay, try this. Click on the gear icon in VC and add this css
COPY CODE.navbar-transparent.on-dark-bg #header .logo a, .navbar-transparent.on-dark-bg .navbar .navbar-nav>li>a, .navbar-transparent.on-dark-bg .navbar .navbar-nav .caret:after { color: #000; }
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
sharmstrModeratortry this
COPY CODE.bboss_search_item .item-desc { display: 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
sharmstrModeratorI see the page numbers. Though you might want to add this to your quick css to fix the display issue with the 1066 number
COPY CODEa.page-numbers { width: 40px !important; }
The issue with the tabs is because of the animations of the posts. That was fixed in kleo 3.1.3. Update Kleo. If you havent been getting update notices, its because you’re on a very old version of Kleo that doesnt work with the new auto update code on themeforest. You’ll need to update one time via FTP: 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
January 22, 2016 at 16:30 in reply to: Post meta data not displaying in a single line and remove author profile link #99975sharmstrModerator1 – Try this in your quick css
COPY CODE.tpl-3lr article .article-meta .post-meta .meta-author { width: 100% !important; }
2 – There’s not an option for author without a link. The link will show whatever you have set in Display 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
sharmstrModeratorTry this in your quick css
COPY CODE@media (max-width: 991px) { #header .navbar-nav li a { 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
sharmstrModeratorThis seems to work
COPY CODE.profile.public .field_twitter { display: none !important; }
Change twitter to the names of the fields you want hidden.
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
sharmstrModeratorTry this in your quick css
COPY CODE.offcanvas-sidebar { z-index: 1000 !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
sharmstrModeratorWhere did you add this code?
COPY CODEadd_filter( 'kleo_theme_settings', 'add_review_icon' ); function add_review_icon( $kleo ) { $kleo['set'][] = array( 'id' => 'bp_nav_reviews', 'title' => esc_html__( 'Reviews', 'buddyapp' ), 'type' => 'select', 'default' => 'panorama-fisheye', 'choices' => kleo_icons_array(), 'section' => 'kleo_section_bp_icons', 'customizer' => true, 'transport' => 'refresh' ); return $kleo; }
I can’t access your child theme functions.php file.
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
sharmstrModeratorCOPY CODE.navbar a [class^="icon-"] { font-size: 30px; }
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
sharmstrModeratorIts either a caching issue or your theme options are saving correctly.
Try this in your theme’s functions.php file.
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
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
sharmstrModeratorCOPY CODE.buy-me a { 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
sharmstrModeratorPut this in your quick css
COPY CODE#members-dir-list .kleo-isotope>.kleo-masonry-item, .kleo-isotope>li { width: 100% !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
sharmstrModeratorEdit /archive.php
Change
COPY CODEif ( sq_option( 'blog_meta_status', 1 ) == 1 ) {
to
COPY CODEif ( sq_option( 'blog_archive_meta', 1 ) == 1 ) {
I’ll submit a permanent change for this.
Note: You’ll probably want to make the same change for search.php 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
sharmstrModeratorEdit the menu item and add a custom css class, then add the css code to your quick css in theme options.
So, if you call your class buy-me, the css code would be
COPY CODE.buy-me { background-color: #00b9f7; }
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
sharmstrModeratorTry this in your quick css
COPY CODE#main-container { padding-right: 0 !important; padding-left: 0 !important; } .widgets-container { padding-right: 0 !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
sharmstrModeratoradd this to the css to align it
COPY CODEmargin-left: -30px !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
sharmstrModeratorYou need to add custom css to the page that will change the icon to your image. In the example below, I’ve changed the bitcoin icon to an image on my server
COPY CODE.icon-bitcoin:before { content: url('http://localhost:8080/kleo/wp-content/uploads/2015/12/Attractions.png'); }
You can find the name of the icon by right clicking on it and inspecting. Make sure you add the css to the page by clicking on the gear icon. If you add it in quick css or your child theme, it will apply the change site wide instead of on the page itself.
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
January 17, 2016 at 15:25 in reply to: Enable Full width Profile Header and Enable Full width Group Header #98945sharmstrModeratorCOPY CODE.buddypress #item-header-avatar { display: 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
sharmstrModeratorTry this in your quick css
COPY CODE#buddypress #groups-list .item-avatar.rounded img, #buddypress .rounded, .buddypress .rounded, .buddypress #item-header-avatar.rounded img.avatar { border-radius: 0 !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
sharmstrModeratorTry this in your quick css
#buddypress .activity-timeline { display: 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
sharmstrModeratorTry copying /page-parts/posts-content-carousel.php to your child theme. Then change the two aq_resize lines from
COPY CODE$image = aq_resize( $slide, $kleo_config['post_gallery_img_width'], $kleo_config['post_gallery_img_height'], true, true, true );
to
COPY CODE$image = aq_resize( $slide, 400px, 400px, true, true, true );
You can translate the ‘related articles’ string.
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
sharmstrModerator1 – In the shortcode settings.
2 – Try this instead
COPY CODE.header-color .navbar-nav li .caret:after { 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
sharmstrModeratorPut this in your quick css
COPY CODE#members-dir-search { display: 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
sharmstrModerator1 – https://archived.seventhqueen.com/forums/topic/change-user-xprofile-section-icons#post-92800. Change the numbers to change the order and add a line for the posts. If the posts were created with Social Articles, it would be.
COPY CODE$bp->bp_nav['articles']['position'] = 10;
https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
2 – The sites tab is automatically added if you do a network installation: http://codex.wordpress.org/Create_A_Network
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
sharmstrModerator1 – Increase the line height of the Get Connected text.
2 – Try this in your quick css
COPY CODE#menu-main-menu .caret:after { 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
sharmstrModeratorWP 4.4 added srcset to images which has screwed up a bunch of things. Looks like the Kleo devs have already fixed this in the next version of Kleo. In the meantime, see if this solves the issue.
In your child theme’s functions.php file, add this
COPY CODEfunction sq_remove_img_srcset( $attr ) { if (! empty($attr)) { unset($attr['srcset']); unset($attr['sizes']); } return $attr; }
Then replace /kleo/woocommerce/single-product/product-image.php with the attached file (or put it in your child theme). Make sure you keep a copy of the original file (in case this doesnt work) and rename .txt to .php.
Let me 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
Attachments:
You must be logged in to view attached files.sharmstrModeratorWoocommerce has a filter to inject information in that location. Here’s the code to do that. Put it in your child theme’s functions.php file. You’ll have to figure out how to get the custom field though.
COPY CODEadd_action( 'woocommerce_after_shop_loop_item_title', 'add_brands', 7 ); function add_brands() { // replace the below code with your code to get the brand name echo "brand name 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
sharmstrModeratorPut this in your child theme’s functions.php file. Change “My Custom Member Search Text” to whatever you want.
COPY CODEadd_filter( 'bp_get_search_default_text', 'change_default_search_text' ); function change_default_search_text( $default_text ) { if ( bp_current_component() == 'members' ) { $default_text = "My Custom Member Search Text"; } return $default_text; }
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
sharmstrModeratorThe rotate css in your child theme is causing it.
COPY CODE.kleo-carousel li { overflow: hidden; visibility: hidden; -webkit-transform: rotate(120deg); -moz-transform: rotate(120deg); -ms-transform: rotate(120deg); -o-transform: rotate(120deg); transform: rotate(120deg); width: 130px !important; height: 155px; margin: 0 0 0 -0px; }
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
sharmstrModeratorIt does
COPY CODE.alternate-color .breadcrumb .active { color: red !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
sharmstrModeratorThey are in the body class. But you only need to do it to the search page since that’s not actually a GeoDir page. As explain before, go to WP Admin > Geodirectory > Permalinks. See what you have set for your listing page, then go to Pages and find that page and edit it.
COPY CODE.geodir-page #undefined-sticky-wrapper, .geodir-page .navbar-header, .geodir-page .kleo-main-header .navbar-collapse > ul > li > a, .header-banner { line-height: 40px !important; height: 40px !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
sharmstrModeratorGo to GeoDirectory > Permalinks and you will see which pages you have set. Then go to WP Admin > Pages and select the page you want to change and scroll down to Theme General Settings > Display settings and hide the Top bar. Then click on Title Section and hide the title, breadcrumb and information sections.
GeoDiretory uses the built in WP Search results page to display search results so you’ll have to add this to your quick css
COPY CODE.search-results.geodir-page .main-title, .search-results.geodir-page .social-header { display: none !important; }
I cant tell by your image what you mean by resize the main menu. Please explain.
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
sharmstrModeratorSince you’re using a plugin, ask the developers of Theme My Login if there is an action or filter to insert the button at the top of the form. If so, you can add something like this in your child theme’s function.php file.
This removes the button from the bottom of the form…
COPY CODEadd_action('init','remove_fb_button'); function remove_fb_button() { remove_action( 'login_form', 'kleo_fb_button', 10 ); }
This would add the button to the top if the plugin has a filter called ‘login_form_top’…
COPY CODEapply_filters( 'login_form_top', 'kleo_fb_button', 10 );
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
sharmstrModeratorPut this in your quick css
COPY CODE#buddypress #whats-new-options { display: block !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
-
AuthorPosts