Forum Replies Created

Viewing 40 posts - 401 through 440 (of 576 total)
  • Author
  • in reply to: Remove Sidebar meta box #185721
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: User received emails says from WordPress #185452
     Kieran_SQ
    Moderator

    Hi,

    You can force a change in the email by extending the original code that I gave you like so

    COPY CODE
    // Change sender name and email
     
    function sq_sender_email( $original_email_address ) {
        return 'address@example.com';
    }
     
    function sq_sender_name( $original_email_from ) {
        return 'Name Here';
    }
     
    add_filter( 'wp_mail_from', 'sq_sender_email' );
    add_filter( 'wp_mail_from_name', 'sq_sender_name' );

    With regards to the below you should contact your host to discuss this with them as it is either set at the account or host level

    COPY CODE
    via server.bluehost.me
    mailed-by: server.bluehost.me

    With regards to “important according to our magic sauce” you’d have to contact the overlords at Google for that one – they have many reasons for marking email as important and this is one of them.

    COPY CODE
    Important mainly because of the words in the message. 
    Important mainly because of the people in the conversation. 
    Important mainly because of your interaction with messages in the conversation. 
    Important because you marked it important. 
    Important mainly because it was sent directly to you. 
    Important mainly because you often read messages with this label.
    Important according to our magic sauce.

    Note: as per your above reply, a send from address can be overridden by a plugin therefore you should always check the configuration of all of your plugins in case they send from spammy.address@yourdomain.com

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Courses management and listing #185360
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Change Color #185285
     Kieran_SQ
    Moderator

    Hi,

    Sorry about that, I have updated Theme Options > General Settings > Scroll to: ‘Quick CSS’ with the following CSS and it now appears to be working. Please clear your caches to see any changes.

    COPY CODE
    #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments > span button, #buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments > span button.rtmedia-action-buttons {
        color: #ffffff !important;
        background-color: #000000;
    }

    I would have added this to Appearance > Editor > KLEO Child > Style.css but I received a warning of several errors in the style sheet that should be addressed.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: 3 New building Issues #185228
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: 3 New building Issues #185224
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Profile page fields #185214
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: 3 New building Issues #185185
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: User received emails says from WordPress #185116
     Kieran_SQ
    Moderator

    Hi,

    Please try the following in your SweetDate Child theme’s functions.php file, you can do so by going to WP Admin > Appearance > Editor > SweetDate Child > Functions.php

    COPY CODE
    // Change sender name
    function sq_sender_name( $original_email_from ) {
        return 'Name Here';
    }
     
    add_filter( 'wp_mail_from_name', 'sq_sender_name' );

    Change Name Here to your desired sending name.

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Buddypress Menu Not Centered #185096
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS in your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’ to center the BuddyPress profile tabs.

    COPY CODE
    div#buddypress #item-nav .item-list-tabs ul.responsive-tabs {
        margin: 0 auto !important;
        display: inline-block;
    }
    
    #buddypress div.item-list-tabs#subnav ul{
         margin: 0 auto !important;
        text-align: center;
        display: inline-block;
    }

    If you would also like to center the filters that appear below please use this CSS instead

    COPY CODE
    div#buddypress #item-nav .item-list-tabs ul.responsive-tabs {
        margin: 0 auto !important;
        display: inline-block;
    }
    
    #buddypress div.item-list-tabs#subnav ul{
         margin: 0 auto !important;
        text-align: center;
        display: inline-block;
    }
    
    #buddypress #item-body div#subnav {
        margin: 0 auto !important;
        text-align: center;
    }

    Make sure to purge your website cache, purge your CDN and delete your local cache by going to the front-end and pressing Ctrl+F5 to see any changes

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Notification Icon – What for? #185073
     Kieran_SQ
    Moderator

    Hi,

    The notification bubble at the top of the menu item is an overall count of activity, messages and friend request notifications. If you would like to hide this element you can add the below CSS to your child theme’s style.css or to theme options.

    COPY CODE
    .kleo-notifications {
        display: none;
    }

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Content not showing up in Slider Revolution Slider #185063
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Background Image not displaying on site #184965
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out to us about issues you’re having with theme options not updating. Do you have server level caching or CDN active at all? If you do please purge all of these and test your page again (Ctrl+F5).

    A temporary fix that would work is using the below CSS in Theme Options > General Settings > Scroll to: ‘Quick CSS’

    COPY CODE
    body.page-boxed-bg {
        background-color: #4b4748;
        background-image: url(https://www.3dfuel.com/wp-content/uploads/2015/11/noisy_net.png);
        background-repeat: repeat;
        background-position: center;
    }

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: 3 New building Issues #184902
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: How can i change the widget Title color and fonts #184889
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Change Color #184887
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS to remove the white on white issue, this CSS will change the background color to black and font to white – please adjust as required.

    COPY CODE
    #buddypress div.rtmedia-single-container .rtmedia-single-meta button {
        background-color: #000000;
        color: #FFFFFF;
    }

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Increasing Burger Menu size #184443
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Member Profiles #184332
     Kieran_SQ
    Moderator

    Hi,

    Thanks for contacting us about selective CSS. You can use the below CSS format to limit items based on whether or not the user is viewing their own or another’s profile.

    COPY CODE
    li#activity-mentions-personal-li {
        display: none;
    }
    .my-account li#activity-mentions-personal-li {
        display: unset;
    }

    The first part of the above CSS hides li#activity-mentions-personal-li (mentions) on all pages the second unsets this CSS if the user is viewing their own profile. You can duplicate the same logic for all of these menu items. If you would like me to generate the CSS for you please let me know exactly which items you wish to be hidden when viewing another’s profile (screenshots with highlighting will help) and I will be happy to do so.

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Replace ‘join/leave group’ with join/leave fanclub #184309
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Not mobile friendly #184132
     Kieran_SQ
    Moderator

    Hi Patrick,

    The gap you’re seeing is coming from a plugin called ‘kk Star Ratings’, you can use the below CSS to hide this on mobile

    COPY CODE
    @media screen and (max-width: 990px) {
    .kk-star-ratings.lft {display: none;}
    }

    Or you can use the below CSS to hide this on mobile and for this page only

    COPY CODE
    @media screen and (max-width: 990px) {
    .page-id-7805 .kk-star-ratings.lft {display: none;}
    }

    The original import code for the template is below

    COPY CODE
    [vc_row el_id="first-section" inner_container="no" type="image" enable_parallax="false" parallax_speed="0.4" padding_top="0" padding_bottom="0" fixed_height="1004px" bg_image="7823"][vc_column][vc_row_inner inner_container="yes" min_height="1004px" bg_pos_h="center" bg_pos_v="top" css=".vc_custom_1454252652306{background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/first_section_white_triangle.png?id=7829) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}" el_id="white-triangle"][vc_column_inner offset="vc_col-lg-8 vc_col-md-8 vc_col-xs-12"][kleo_gap size="80px" visibility="visible-xs"][kleo_gap size="160px" visibility="visible-sm"][kleo_gap size="260px" visibility="visible-md,visible-lg"][vc_custom_heading text="POWERFUL CHOICES
    EVERYDAY" font_container="tag:h1|font_size:60px|text_align:left|line_height:66px" google_fonts="font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal" letter_spacing=""][vc_column_text vertical_separator="yes" letter_spacing="75" letter-spacing="75"]Lorem ipsum dolor sit amet, consectetuer adipiscing
    elit, sed diam nonummy nibh euismod tincidunt ut
    laoreet dolore magna aliquam erat volutpat.[/vc_column_text][kleo_button title="ask our experts" href="#" target="_blank" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xxl" type="boxed-icon" special="no" border="no" icon="angle-right" box_shadow_color="rgba(43,33,47,0.15)" box_shadow_x="6" box_shadow_blur="18" custom_background="#ffffff" custom_text="#000000"][/vc_column_inner][vc_column_inner offset="vc_col-lg-4 vc_col-md-4 vc_col-xs-12"][kleo_gap size="50px" visibility="visible-xs,visible-sm"][kleo_gap size="480px" visibility="visible-md,visible-lg"][vc_single_image image="7822" img_size="338x408" alignment="center"][/vc_column_inner][vc_column_inner][vc_column_text text_color="#ffffff" font_size="13px" letter_spacing=""]
    <p style="text-align: center;">SCROLL DOWN
    to explore our services</p>
    [/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_id="services" inner_container="no" type="image" bg_color="#564656" bg_position="bottom" bg_position_horizontal="center" padding_top="" padding_bottom="" bg_image="7825"][vc_column][kleo_magic_container position="absolute" left="50%" min_height="521px" width="2560px" css=".vc_custom_1454252732470{margin-left: -1280px !important;background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/pink_triangle.png?id=7832) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][/kleo_magic_container][kleo_magic_container position="absolute" top="-25px" left="50%" min_height="50px" width="36px" content_position="center" text_center="yes" border_radius="20px" box_shadow_color="rgba(85,69,85,0.4)" box_shadow_y="6" box_shadow_blur="18" css=".vc_custom_1454016466712{margin-left: -18px !important;background-color: #ff5e5e !important;}"][kleo_icon icon="down-dir" icon_size="2x" href="#services" scroll_to="yes" icon_color="#ffffff"][/kleo_magic_container][vc_row_inner inner_container="yes" css=".vc_custom_1448295547307{padding-top: 124px !important;}"][vc_column_inner][vc_custom_heading text="SERVICES" font_container="tag:h2|font_size:60px|text_align:left|color:%23342938|line_height:66px" google_fonts="font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal" letter_spacing=""][kleo_gap size="25px"][/vc_column_inner][/vc_row_inner][vc_row_inner inner_container="yes" el_class="row-no-gap" css=".vc_custom_1454070037846{padding-bottom: 30px !important;}"][vc_column_inner offset="vc_col-lg-6 vc_col-md-6 vc_col-xs-12"][vc_custom_heading text="Lorem ipsum dolor sit amet consectetuer adipiscing" font_container="tag:h6|font_size:30px|text_align:left|color:%23ffffff|line_height:36px" google_fonts="font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20italic%3A400%3Aitalic" letter_spacing="75" css=".vc_custom_1454069908669{padding-top: 5px !important;}"][kleo_gap size="20px"][/vc_column_inner][vc_column_inner offset="vc_col-lg-6 vc_col-md-6 vc_col-xs-12"][vc_column_text text_color="#ffffff" vertical_separator="yes" letter_spacing="75" css=".vc_custom_1453990808036{padding-top: 10px !important;padding-right: 95px !important;padding-bottom: 30px !important;padding-left: 95px !important;}"]Lorem ipsum dolor sit amet, consectetuer adipiscing
    elit, sed diam nonummy nibh euismod tincidunt ut
    laoreet dolore magna aliquam erat volutpat.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner equal_height="yes" content_placement="bottom" gap="30" inner_container="yes" el_class="text-center"][vc_column_inner width="1/3" bg_gradient="yes" css=".vc_custom_1456321007162{background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/services_003.jpg?id=7824) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][kleo_gap size="220px"][vc_column_text lead="yes" text_color="#ffffff" letter_spacing="" css=".vc_custom_1454141384798{margin-bottom: 0px !important;}"]Lorem ipsum dolor sit amet.[/vc_column_text][vc_custom_heading text="SERVICE NO. 1" font_container="tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:32px" use_theme_fonts="yes" letter_spacing=""][kleo_gap size="80px"][kleo_button title="Read more" href="#" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xl" special="no" border="no" icon="0" custom_background="#fe6c61" custom_text="#ffffff"][kleo_gap size="40px"][/vc_column_inner][vc_column_inner width="1/3" bg_gradient="yes" css=".vc_custom_1456321017164{background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/services_001.jpg?id=7826) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][kleo_gap size="220px"][vc_column_text lead="yes" text_color="#ffffff" letter_spacing="" css=".vc_custom_1454141384798{margin-bottom: 0px !important;}"]Lorem ipsum dolor sit amet.[/vc_column_text][vc_custom_heading text="SERVICE NO. 2" font_container="tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:32px" use_theme_fonts="yes" letter_spacing=""][kleo_gap size="80px"][kleo_button title="Read more" href="#" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xl" special="no" border="no" icon="0" custom_background="#fe6c61" custom_text="#ffffff"][kleo_gap size="40px"][/vc_column_inner][vc_column_inner width="1/3" bg_gradient="yes" css=".vc_custom_1456321023266{background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/services_002.jpg?id=7827) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][kleo_gap size="220px"][vc_column_text lead="yes" text_color="#ffffff" letter_spacing="" css=".vc_custom_1454141384798{margin-bottom: 0px !important;}"]Lorem ipsum dolor sit amet.[/vc_column_text][vc_custom_heading text="SERVICE NO. 3" font_container="tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:32px" use_theme_fonts="yes" letter_spacing=""][kleo_gap size="80px"][kleo_button title="Read more" href="#" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xl" special="no" border="no" icon="0" custom_background="#fe6c61" custom_text="#ffffff"][kleo_gap size="40px"][/vc_column_inner][/vc_row_inner][vc_row_inner inner_container="yes" css=".vc_custom_1448375365223{margin-bottom: 120px !important;padding-top: 65px !important;}"][vc_column_inner offset="vc_col-lg-6 vc_col-md-6 vc_col-xs-12"][vc_custom_heading text="VIDEO" font_container="tag:h2|font_size:60px|text_align:left|color:%23342938|line_height:66px" google_fonts="font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal" letter_spacing=""][kleo_gap size="25px"][vc_column_text text_color="#ffffff" letter_spacing="" el_class="vertical-separator letter-spacing-75" css=".vc_custom_1454102684562{margin-top: 10px !important;margin-bottom: 40px !important;padding-right: 20px !important;}"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
    
    Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][vc_column_inner offset="vc_col-lg-6 vc_col-md-6 vc_col-xs-12"][vc_video link="https://vimeo.com/17574435"][/vc_column_inner][/vc_row_inner][vc_row_inner inner_container="yes" css=".vc_custom_1448468586245{padding-right: 0px !important;padding-left: 0px !important;}"][vc_column_inner css=".vc_custom_1454252882834{padding-top: 85px !important;padding-right: 85px !important;padding-bottom: 85px !important;padding-left: 85px !important;background: #ffffff url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/top_section_twin.jpg?id=7828) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][vc_custom_heading text="LOREM IPSUM" font_container="tag:h5|font_size:14px|text_align:left|color:%23ff5e5e|line_height:18px" use_theme_fonts="yes" el_class="letter-spacing-25"][vc_custom_heading text="LOREM IPSUM" font_container="tag:h3|font_size:28px|text_align:left|color:%233f3241|line_height:34px" use_theme_fonts="yes" el_class="letter-spacing-25"][vc_column_text vertical_separator="yes" letter_spacing="75" css=".vc_custom_1454106163912{margin-top: 55px !important;margin-bottom: 55px !important;padding-right: 20px !important;}"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
    
    Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat.[/vc_column_text][kleo_button title="Read more" href="#" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xl" special="no" border="no" icon="0" custom_background="#fe5043" custom_text="#ffffff"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_id="3rd-section-bg" inner_container="no" type="image" bg_position="bottom" bg_position_horizontal="center" column_gap="no" padding_top="" padding_bottom="" bg_image="7830"][vc_column][kleo_magic_container position="absolute" left="50%" min_height="521px" width="2560px" bg_pos_h="center" bg_pos_v="top" css=".vc_custom_1454253005565{margin-left: -1280px !important;background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/dark-blue-triangle.png?id=7831) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][/kleo_magic_container][vc_row_inner inner_container="yes" css=".vc_custom_1448378983234{margin-top: 0px !important;margin-bottom: 150px !important;}"][vc_column_inner css=".vc_custom_1454252950884{padding-top: 85px !important;padding-right: 85px !important;padding-bottom: 85px !important;padding-left: 85px !important;background: #ffffff url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2015/11/bottom_section_twin.jpg?id=7843) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}"][vc_custom_heading text="LOREM IPSUM" font_container="tag:h5|font_size:14px|text_align:left|color:%23312634|line_height:18px" use_theme_fonts="yes"][vc_custom_heading text="LOREM IPSUM" font_container="tag:h3|font_size:28px|text_align:left|color:%23ffffff|line_height:34px" use_theme_fonts="yes"][vc_column_text text_color="#ffffff" vertical_separator="dark" letter_spacing="75" css=".vc_custom_1454103440311{margin-top: 55px !important;margin-bottom: 55px !important;padding-right: 20px !important;}"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
    
    Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat.[/vc_column_text][kleo_button title="Read more" href="#" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xl" special="no" border="no" icon="0" custom_background="#312634" custom_text="#ffffff"][/vc_column_inner][/vc_row_inner][vc_row_inner inner_container="yes" el_class="map-wrapper"][vc_column_inner offset="vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-2 vc_col-md-8 vc_col-xs-12"][vc_custom_heading text="INTERNATIONAL" font_container="tag:h2|font_size:60px|text_align:center|color:%23342938|line_height:66px" google_fonts="font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal" letter_spacing=""][vc_column_text text_color="#ffffff" letter_spacing="" el_class="letter-spacing-75" css=".vc_custom_1454105867509{margin-top: 55px !important;margin-bottom: 55px !important;padding-right: 20px !important;}"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner inner_container="yes" bg_pos_h="center" bg_pos_v="top" css=".vc_custom_1454253527694{background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/map.png?id=7837) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}" el_id="map-inner-wrapper"][vc_column_inner el_class="profile-card" width="1/2" offset="vc_col-lg-offset-4 vc_col-lg-4 vc_col-md-offset-4 vc_col-md-4 vc_col-sm-offset-3 vc_col-xs-12" css=".vc_custom_1448453382892{padding-right: 0px !important;padding-left: 0px !important;}"][kleo_magic_container position="absolute" right="30px" bottom="-20px" width="40px" height="40px" content_position="center" text_center="yes" full_height="yes" z_index="1" css=".vc_custom_1454113381885{background-color: #fe6c61 !important;}"][kleo_icon icon="angle-right" icon_color="#ffffff"][/kleo_magic_container][vc_single_image image="7836" img_size="full" full_width="yes"][/vc_column_inner][vc_column_inner width="1/2" css=".vc_custom_1454253182707{padding-right: 0px !important;padding-left: 0px !important;background-color: #ffffff !important;}" offset="vc_col-lg-offset-4 vc_col-lg-4 vc_col-md-offset-4 vc_col-md-4 vc_col-sm-offset-3 vc_col-xs-12"][kleo_magic_container vertical_separator="yes" css=".vc_custom_1454268365190{margin-top: 50px !important;margin-right: 40px !important;margin-bottom: 50px !important;margin-left: 40px !important;}"][vc_column_text font_size="12px" letter_spacing="" css=".vc_custom_1454253476334{margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}"]<strong>ERIKA JOHANNESON</strong>
    <a href="mailto:office@seventhqueen.com">office@seventhqueen.com</a>[/vc_column_text][kleo_icon icon="facebook"][kleo_icon icon="twitter"][kleo_icon icon="gplus"][/kleo_magic_container][/vc_column_inner][vc_column_inner][kleo_gap size="199px" visibility="hidden-xs"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_id="newsletter-section" text_align="center" type="image" bg_position_horizontal="center" vertical_align="yes" padding_top="0" padding_bottom="270px" bg_image="7838"][vc_column][kleo_magic_container position="absolute" top="-1px" left="50%" min_height="521px" width="2560px" bg_pos_h="center" bg_pos_v="top" css=".vc_custom_1454253597692{margin-left: -1280px !important;background-image: url(http://seventhqueen.com/demo/kleo/wp-content/uploads/2016/01/dark-pink_triangle.png?id=7833) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}"][/kleo_magic_container][/vc_column][vc_column offset="vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-3 vc_col-md-6" css=".vc_custom_1448465801262{padding-top: 130px !important;}"][vc_custom_heading text="TRY IT NOW" font_container="tag:h2|font_size:60px|text_align:center|color:%23b5b6ba|line_height:66px" google_fonts="font_family:Montserrat%3Aregular%2C700|font_style:700%20bold%20regular%3A700%3Anormal" letter_spacing=""][vc_column_text el_class="letter-spacing-75" css=".vc_custom_1448460356532{margin-top: 55px !important;margin-bottom: 55px !important;padding-right: 20px !important;}"]
    <p style="text-align: center;"><span style="color: #5e5e5e;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonum my nibh euismod tincidunt.</span></p>
    [/vc_column_text][vc_column_text letter_spacing=""][mc4wp_form][/vc_column_text][/vc_column][/vc_row][vc_row el_id="footer_area" text_align="center" type="image" bg_color="#362b39" bg_position_horizontal="center" padding_top="125px" padding_bottom="125px" bg_image="7835"][vc_column width="1/2" offset="vc_col-lg-offset-4 vc_col-lg-4 vc_col-md-offset-4 vc_col-md-4 vc_col-sm-offset-3 vc_col-xs-12"][vc_single_image image="7834" img_size="99x29" alignment="center"][vc_column_text el_class="letter-spacing-75" css=".vc_custom_1448462128500{margin-top: 55px !important;margin-bottom: 55px !important;padding-right: 20px !important;}"]
    <p style="text-align: center;"><span style="color: #837f85;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonum my nibh euismod tincidun</span>t.</p>
    [/vc_column_text][kleo_button title="PURCHASE NOW KLEO" href="themeforest.net/item/kleo-next-level-wordpress-theme/6776630?ref=SeventhQueen" target="_blank" style="custom" font_size="14px" font_weight="700" uppercase="yes" size="xxl" special="no" border="no" icon="0" custom_background="#4b3e4f" custom_text="#ffffff"][kleo_gap][kleo_icon icon="facebook" href="#" padding="15px" icon_color="#ff5e5e"][kleo_icon icon="twitter" href="#" padding="15px" icon_color="#ff5e5e"][kleo_icon icon="gplus" href="#" padding="15px" icon_color="#ff5e5e"][/vc_column][/vc_row]

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Not mobile friendly #184109
     Kieran_SQ
    Moderator

    Hi,

    That’s strange that iThemes Security would block Google bot in that way and it’s definitely worth looking into their settings and maybe even contacting their support team about the issue that caused.

    With regards to the error that still appears in the Google tool please try the below CSS in your KLEO Child theme’s style.css by going to Appearance > Editor > KLEO Child > Style.css or by going to Theme Options > General Settings > Scroll to: ‘Quick CSS’

    COPY CODE
    @media screen and (max-width: 990px) {
    .client {margin: 20px;}
    }

    This is the only element I can possibly see that is causing any issue with regards to being too close, but without more information from Google I cannot be sure. Make sure to clear your cache(s) completely and purge any CDN before testing again to ensure the Google bot gets the latest files.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: smart phone menu background & text color change #183906
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Ajax Search #183902
     Kieran_SQ
    Moderator

    Hi Grant,

    Unfortunately it was no joke! We have a Christmas curse in our family.

    With regards to your question you should able to use the snippet provided from this article in your KLEO Child theme’s functions.php file to hide members from your search results https://archived.seventhqueen.com/kleo/article/hide-admin-members-directory.

    COPY CODE
    add_action('bp_ajax_querystring','sq7_radu_exclude_users',20,2);
     
    function sq7_radu_exclude_users($qs=false,$object=false){
        //list of users to exclude
     
        $excluded_user = '1';//comma separated ids of users whom you want to exclude
     
        if($object!='members')//hide for members only
            return $qs;
     
        $args=wp_parse_args($qs);
     
        //check if we are searching for friends list etc?, do not exclude in this case
        if(!empty($args['user_id'])||!empty($args['search_terms']))
            return $qs;
     
        if(!empty($args['exclude']))
            $args['exclude']=$args['exclude'].','.$excluded_user;
        else
            $args['exclude']=$excluded_user;
     
        $qs=build_query($args);
     
     
        return $qs;
     
    }

    You will need to change the line that states $excluded_user = ‘1’ to suit your needs. If you need to hide more than one you can do this by using comma separated values in the same line mentioned above $excluded_user = ‘1, 19, 42’.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Remove Title “Archive for category:’ from the page #183823
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Color recommended articles headline #183821
     Kieran_SQ
    Moderator

    Hi,

    Please use the below CSS to target only the H4 link element within the related articles. You can add this to WP Admin > Appearance > Editor > KLEO Child > Style.css or to Theme Options > General Settings > Scroll to: ‘Quick CSS’.

    COPY CODE
    .related-wrap h4.post-title.entry-title a {
        color: #ea4c88 !important;
    }

    Adjust the value #ea4c88 as needed. Make sure to clear your website cache, CDN and your local cache (Ctrl+F5) to see changes.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Create new Xprofile tab #183343
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: Groups #183324
     Kieran_SQ
    Moderator

    Hi,

    Thanks for getting back to me, I logged into your site as an admin and as a standard user and when I visited the /groups/ url I was able to see the standard create a group link (see screenshots).

    By default there is not a create group button in the title section. If you are referring to the menu area you can create your own BuddyPress menu instead of using the default menu that inherits the first level of the BuddyPress profile items by using the below format in a custom menu item

    COPY CODE
    With BuddyPress/bbPress installed you can add a link to profile using ##profile_link## in the URL input from Custom Links section bellow. Example: ##profile_link##/messages
    
    With Cleverness To-do List plugin you can add ##my_tasks## in the Title attribute to generate your tasks bubble.

    I wrote an article on this a few weeks ago and it has a list of the basic strings you would need with BuddyPress profile menu items and their child items. You can see this post here https://archived.seventhqueen.com/kleo/article/building-dynamic-buddypress-menu.

    The path to use to add a “Create group” menu item would be /groups/create/

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Full Group Description with Links #183280
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out about the group excerpt length, you can use the below PHP in your KLEO Child theme’s functions.php file to change the length of the group excerpt.

    COPY CODE
    function sqr_group_excerpt_length($group) {
        if(bp_is_active()) {
            if (bp_is_group()) {
                if (strlen($group) > 10) {
                    $str = substr($group, 0, 101) . '';
                    return $str;
                }
            }
        }
    }
    add_filter('bp_get_group_description', 'sqr_group_excerpt_length',10,1);

    Change the value of 101 to your desired length.

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Prevent pmpro levels from creating a Buddypress group #183277
     Kieran_SQ
    Moderator

    Hi,

    Please can you test the change I just made with an admin account and a standard user with the membership level that should not see the create group button.

    I changed the PHP used in the header.php file to

    COPY CODE
    <?php if ( pmpro_hasMembershipLevel(array(2,3))) { ?>
    <style>
    li#group-create-nav {
        display: initial !important;
    }
    </style>
    <?php } ?>

    I also changed the CSS used in style.css to

    COPY CODE
    li#group-create-nav {
        display: none !important;
    }

    If you are caching for logged in users please make sure to clear your website cache and local cache (Ctrl+F5) when you log out of X account to switch to the other.

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Notifications #183255
     Kieran_SQ
    Moderator

    Hi,

    1. Please open a new public ticket about this particular request and I will move the ticket straight into the feature requests forum for you so it may be voted on by the KLEO community.

    2. Please also consider opening a new public ticket for the request and I will move it to the feature requests for voting for you. If you wanted to only show this menu item when a notification is received you should change the menu item to have no icon and change the navigation label / title to the below

    &nbsp;

    To add an icon before the count you could use the below CSS, this would need tweaking of course but it is a good start to show you how to achieve this with CSS

    COPY CODE
    span.kleo-notifications.new-alert::before {
        content: '\e864';
        font-family: fontello;
        padding-right: 2px;
        color: #000000;
    }

    3. My apologies, I misunderstood the question. The privacy level Everyone is core function of BuddyPress and removing it with PHP would cause serious issues. You could try the below CSS which will hide the first child (Everyone) instead

    COPY CODE
    li.public {display:none!important;}
    #buddypress .profile .standard-form .field-visibility-settings div.radio>label:first-child {display: none !important}

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Images on the home page (members widget) are square. #183221
     Kieran_SQ
    Moderator

    Hi,

    Sorry to hear you’re experiencing issue since the update, please add the below CSS to your BuddyApp Child theme’s style.css and purge all of your caches to see changes.

    COPY CODE
    li.vcard {list-style: none;}
    .item-avatar img {border-radius: 100% !important;}

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Hiding Title #183217
     Kieran_SQ
    Moderator

    Hi,

    You can use the below CSS to hide the H1 page title completely, please add this snippet to your KLEO Child theme’s style.css or to Theme Options > General Settings > Scroll to: ‘Quick CSS’. You will need to purge your website cache, CDN and local cache (Ctrl+F5) to see changes.

    COPY CODE
    h1.page-title {
        display: none !important;
    }

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Notifications #183216
     Kieran_SQ
    Moderator

    Hi,

    Thanks for reaching out, I will respond below in a numbered format for ease.

    1. Currently we do not have a way to separate the type of notifications generated in the original notifications menu option. I will forward this as a suggestion to the developers for you.

    2. No extra class is added to the a tag when notifications are generated so there is currently no way for that to work, however, you can override the CSS for the notification bubble with the below CSS. Adjust as needed and clear cache(s) to see changes

    .kleo-notifications.new-alert {background-color: #00b9f7;color: #fff;}

    3. You can use the below CSS in your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’ to hide the element. Please make sure to clear all of your caches to see changes.

    COPY CODE
    #buddypress .field-visibility-settings-toggle {display: none !important;}
    #buddypress .field-visibility-settings-notoggle {display: none !important;}

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Register account with Facebook not possible #182581
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: different homepage for registered users #182552
     Kieran_SQ
    Moderator

    Hi,

    Thanks for contacting us about having a single page for logged out users, you can use the below snippet in your KLEO Child’s functions.php file to redirect all logged out users to a specific page.

    COPY CODE
    // Redirect to register if logged out and page is BuddyPress
    function kleo_page_template_redirect()
    {
        //if not logged in and on a bp page except registration or activation
        if( ! is_user_logged_in() &&
            ( ( ! bp_is_blog_page() && ! bp_is_activation_page() && ! bp_is_register_page() ) )
        )
        {
            wp_redirect( home_url( '/register/' ) );
            exit();
        }
    }
    add_action( 'template_redirect', 'kleo_page_template_redirect' );

    Change /register/ to your desired page, you should keep your home page set as it is in Settings > Reading

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Buddypress menu items #182495
     Kieran_SQ
    Moderator

    Hi,

    Do you mean the icons that span across when viewing a profile? If so please use the below CSS in your KLEO Child theme’s style.css or in Theme Options > General Settings > Scroll to: ‘Quick CSS’

    COPY CODE
    li#activity-personal-li {display: none !important;}
    li#xprofile-personal-li {display: none !important;}
    li#orders-personal-li {display: none !important;}
    li#notifications-personal-li {display: none !important;}
    li#messages-personal-li {display: none !important;}
    li#friends-personal-li {display: none !important;}
    li#groups-personal-li {display: none !important;}
    li#forums-personal-li {display: none !important;}
    li#articles-personal-li {display: none !important;}
    li#settings-personal-li {display: none !important;}

    Remove any lines where you want the item to still display, leave intact those you wish to remove.

    Thanks,

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    in reply to: Activity page #182466
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: How can I take out MUSIC section from Media page? #182443
     Kieran_SQ
    Moderator
    Not marked as solution
    in reply to: CSS – Site Maintenance #182441
     Kieran_SQ
    Moderator

    Hi Grant,

    Thanks for contacting us about customizing the maintenance page, you can use the below snippet in your KLEO Child theme’s functions.php file to alter the output, including the image size.

    COPY CODE
    // Change the maintenance page logo size
    if ( ! function_exists( 'kleo_maintenance_mode' ) ) {
    	function kleo_maintenance_mode() {
    
    		$logo_path = apply_filters( 'kleo_logo', sq_option_url( 'logo' ) );
    		$logo_img  = '<img src="' . $logo_path . '" alt="maintenance" style="margin: 0 auto; display: block; max-width:100px;" />';
    
    		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' )
    				);
    			}
    		}
    	}
    
    	add_action( 'get_header', 'kleo_maintenance_mode' );
    }

    Please change the value for max-width:100px; to suit your needs.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

Viewing 40 posts - 401 through 440 (of 576 total)

Log in with your credentials

Forgot your details?