Forum Replies Created

Viewing 40 posts - 121 through 160 (of 1,218 total)
  • Author
  • in reply to: A few major issues with activity feed #101139
     sharmstr
    Moderator

    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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Show only products title with price #100988
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: A few major issues with activity feed #100729
     sharmstr
    Moderator

    Great!

    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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Some saved options does not shows up right in frontend #100616
     sharmstr
    Moderator

    One 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 CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Sidebar link color inherit main text color #100532
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: A few major issues with activity feed #100526
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: change menu color for homepage only #100524
     sharmstr
    Moderator

    Okay, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove Update from Member Profile in Search Results #100360
     sharmstr
    Moderator

    try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Kleo Post issues #99997
     sharmstr
    Moderator

    I 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 CODE
    
    a.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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    1 – 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Mobile navigation colors #99973
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: social icons #99958
     sharmstr
    Moderator

    This 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Side menu issue #99779
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: BP-WP Reviews plugin #99749
     sharmstr
    Moderator

    Where did you add this code?

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Increase size of icons main menu #99486
     sharmstr
    Moderator
    COPY 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Site Width Not Changing #99479
     sharmstr
    Moderator

    Its either a caching issue or your theme options are saving correctly.

    Try this in your theme’s functions.php file.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buy now link in menu bar #99348
     sharmstr
    Moderator
    COPY 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Question regarding Member Page #99342
     sharmstr
    Moderator

    Put 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Display post meta on Category and Tag pages #99339
     sharmstr
    Moderator

    Edit /archive.php

    Change

    COPY CODE
    
    if ( sq_option( 'blog_meta_status', 1 ) == 1 ) {
    

    to

    COPY CODE
    
    if ( 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buy now link in menu bar #99265
     sharmstr
    Moderator

    Edit 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Content Padding #99259
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to use my own icon in featured item setting? #99149
     sharmstr
    Moderator

    add this to the css to align it

    COPY CODE
    
    
        margin-left: -30px !important;
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to use my own icon in featured item setting? #99117
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator
    COPY 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Square photo in groups #98931
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Strange Line crossing activity #98929
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Related article thumbnail dimensions #98928
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Mobile sub menus #98823
     sharmstr
    Moderator

    1 – 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to remove Search Members of Search_Form #98821
     sharmstr
    Moderator

    Put 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Modify User Tabs Order and Add New tabs #98814
     sharmstr
    Moderator

    1 – 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Mobile sub menus #98812
     sharmstr
    Moderator

    1 – 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: woocommerce product gallery images not working #98726
     sharmstr
    Moderator

    WP 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 CODE
    
    function 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 solution

    This 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.
    in reply to: Add brand name to products in shop page #98685
     sharmstr
    Moderator

    Woocommerce 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 CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to remove Search Members of Search_Form #98665
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file. Change “My Custom Member Search Text” to whatever you want.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Related articles images showing sideways #98302
     sharmstr
    Moderator

    The 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Active Breadcrumb Color #98284
     sharmstr
    Moderator

    It 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove menu from specific gd pages #97606
     sharmstr
    Moderator

    They 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove menu from specific gd pages #97600
     sharmstr
    Moderator

    Go 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: facebook login position #97590
     sharmstr
    Moderator

    Since 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 CODE
    
    add_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 CODE
    
    apply_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Activity Privacy Issue #97588
     sharmstr
    Moderator

    Put 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 121 through 160 (of 1,218 total)

Log in with your credentials

Forgot your details?