Forum Replies Created

Viewing 40 posts - 2,121 through 2,160 (of 2,796 total)
  • Author
  • in reply to: A few issues: menu, side menu, footer, lost layout etc #95493
     Laura
    Moderator

    Hello, please add this to style.css
    – Right Padding

    COPY CODE
    
    ul#menu-hoofdmenu {
        padding-right: 50px;
    }
    

    – Top Padding

    COPY CODE
    
    .wrap-canvas-menu {
        padding-top: 50px;
    }
    

    – Height of footer

    COPY CODE
    
    div#footer {
        height: 350px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: BuddyVerified style issue #95490
     Laura
    Moderator

    Hello, please add this to style.css of child theme

    COPY CODE
    
    #profile #bp-verified-header img {
        position: absolute;
        margin-left: -8%;
        margin-top: 78%;
        width: 30px;
    }
    .widgets-container #bp-verified img {
        margin-left: 13%;
        margin-top: -4%;
        position: absolute;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Membership Levels Page Disapeared from Parent Directory #95488
     Laura
    Moderator

    Hello, please add this to wp-config.php

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '192M');
    

    For the first issue, have you tried deactivating some plugins and testing again?

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: changing log in box and registration query #95472
     Laura
    Moderator

    Hello, the registration works like this: The user register and logs in, then the membership levels page appears so he can choose one. If he access a restricted page he will be redirected to go to the levels page.
    To remove the hearts just add this to functions.php of child theme ( you should have child theme activated )

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
    
    function kleo_my_hearts_actions() 
    {
       /* disable matching on member profile */
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
    
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
    
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
    
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
    
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
    
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: add banners & html into forum page #95365
     Laura
    Moderator

    Hello, i see you are using the main theme, you should use the child theme before doing any change or you will lose them when the theme updates
    This is the code

    COPY CODE
    
    <?php echo do_shortcode( '[aas_zone zone_id="8151"]' );?>
    

    It will show the ad zone i created with the plugin, found at Advertising > Campaing / Zone / Banner
    Add that code to bbpress/loop-forums.php at the end if you want it after the forum loop
    But remember, you need to do this at child theme and have it activated

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Woo commerce Price Appearing Twice #95304
     Laura
    Moderator

    Hello, try to add this css to style.cs

    COPY CODE
    
    .single_variation .price {
        display: none;
    }
    

    That price is the price of each variation

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Change theme #95292
     Laura
    Moderator

    Hello, i see yo want the travel style right? Well first import the travel settings found at SweetDate\Main Files\Demo content\site styles
    Car Sharing
    Then import it at Sweetdate > Import
    ( Copy the text and paste it, then click import )
    Then to delete all hearts from the theme just add this to functions.php of child theme

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
     
    function kleo_my_hearts_actions() 
    {
       /* disable matching on member profile */
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
     
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
     
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
     
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
     
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
     
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
     
    add_action('after_setup_theme','kleo_remove_actions');
    /**
     * Override existing actions
     * Use these functions to replace/remove existing actions
     * @since Sweetdate 1.3
    */ 
    function kleo_remove_actions() 
    {
       /* For example uncomment the line bellow to disable matching on member profile */
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: How to Disable Profile Dropdown Menu #94971
     Laura
    Moderator

    Hello, try adding this to style.css and change 5% as you want

    COPY CODE
    
    nav.top-bar {
        margin-top: 5% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Remove admin from top members secton of homepage? #94805
     Laura
    Moderator

    Hello, lets try this one:
    Add to functions.php of child theme

    COPY CODE
    
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
    function bpdev_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;
       
    }
    

    Change the 1 for the admin id
    How to get user id http://rudrastyh.com/wordpress/get-user-id.html

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Show username on the top #94454
     Laura
    Moderator

    Hello, done, just added this code to your header.php at child theme just below “<!– End Nav Section –>”

    COPY CODE
    
    <div class="nameleft"><li class="header-login-button"><div class="tiny secondary button radius"><?php echo bp_core_get_user_displayname( bp_loggedin_user_id() ); ?></div></li></div>
    						<style>
    						.nameleft li.header-login-button {
        margin-left: 85%;
        position: absolute;
        list-style: none !important;
        margin-top: 1%;
    }
    </style>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Need to remove header #94377
     Laura
    Moderator

    Hello, to remove the header of the theme, just add this to style.css of child theme

    COPY CODE
    
    div#header {
        display: none;
    }
    

    But maybe you would prefer to hide the menu, not the header?
    If so, use this instead:

    COPY CODE
    
    ul#menu-top {
        display: none;
    }
    

    Or all navbar but not header:

    COPY CODE
    
    .navbar {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: disable search for Field values on profile page #94373
     Laura
    Moderator

    Hello, try adding this to functions.php of child theme

    COPY CODE
    
    remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 2 );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Visual composer code in Header Banner #94358
     Laura
    Moderator

    Hello, well you could use the following:
    https://developer.wordpress.org/reference/functions/do_shortcode/ ( User Contributed Notes )

    Basically, you need to wrap the code with <script> </script> tags, so you can use it at header.php
    Would be something like:

    COPY CODE
    
    <script>
    echo do_shortcode( '[vc_row][vc_column][kleo_bp_groups_carousel type="random" number="20" min_items="1" max_items="5" image_size="thumb" autoplay="yes" item_width="150"][/vc_column][/vc_row]' );
    </script>
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: member scroller on home page #94331
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    .caroufredsel_wrapper {
        height: 115px !important;
    }
    .caroufredsel_wrapper img {
        height: 85px !important;
        width: 95px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: How to add a ‘Change Profile Photo’ button #93959
     Laura
    Moderator

    Hello, this will hide the text
    Add to style.css

    COPY CODE
    
    .change-avatar p {
        display: none;
    }
    

    To change the position you will need to edit it using css, i suggest to hire a developer to do it for you 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Checkmarks #93744
     Laura
    Moderator

    Hello, this will change the font size

    COPY CODE
    
    ul.pricing-table.kleo-level-4 li {
        font-size: 18px !important;
    }
    

    To change checkmark icon:

    COPY CODE
    
    .membership .bullet-item:before {
        font: 13px 'FontAwesome';
        content: "\f041" !important;
    }
    

    Checkmark color

    COPY CODE
    
    .membership .bullet-item:before {
        color: red !important;
    }
    

    Hide checkmark

    COPY CODE
    
    .membership .bullet-item:before {
    display:none !important;
    }
    

    Box colors

    COPY CODE
    
    .membership .pricing-table .title, .membership .pricing-table .price {
        border-color: #000000;
        background: #000;
        color: white;
    }
    .membership .pricing-table .description {
        background-color: #FFFFFF;
    }
    .pricing-table .bullet-item {
        background-color: #1B1B1B;
        padding: 15px;
        text-align: center;
        color: #FFF;
        font-size: 14px;
        font-weight: normal;
        border-bottom: dotted 1px #272727;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Font blury in Chrome #93652
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    ul#menu-sweetdate a {
        font-weight: 100 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Woocommerce Price #93482
     Laura
    Moderator

    Hello, please try

    COPY CODE
    
    span.amount {
        font-size: 24px;
    }
    

    🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Group page navigation #93445
     Laura
    Moderator

    This for mobile

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    div#item-nav {
        margin-top: -10%;
        width: 100%;
        padding-bottom: 60px;
    }
    .tabs.info, #object-nav ul {
        list-style: none;
        border-bottom: solid 1px #e6e6e6;
        display: block;
        height: 100px;
        padding: 0;
        margin-bottom: 40px;
        border: none;
        width: 300px !important;
        margin-left: -50px;
    }
    #object-nav ul li {
        display: block;
        float: left;
        padding: 0;
        margin: 0;
        position: relative;
        border-top: none;
        border-bottom: 2px solid #fff;
        margin-bottom: 40px;
    }
    }
    

    Add to style.css

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Group page navigation #93444
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    @media (max-width: 991px) {
    li.dropdown.pull-right.tabdrop.open li a:before {
        height: 50px !important;
        width: 50px;
        margin-bottom: 10px;
    }
    a#user-members-compliments:before {
        margin-left: 0% !important;
    }
    #buddypress div#item-nav ul #settings-personal-li a:before, #buddypress div#item-nav ul #admin-groups-li a:before {
        width: 50px !important;
    }
    }
    a#user-album {
        width: 70px;
    }
    a#user-media:before {
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
        background-size: cover;
        display: block;
        height: 57px;
        margin-bottom: -4px !important;
    }
    a#user-album:before {
    background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    }
    a#user-forums:before {
    background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    }
    a#user-activity:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a#user-xprofile:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a#user-media:before {
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    }
    a#user-messages:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-friends:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-notifications:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-members-compliments:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-settings:before {
    
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a.dropdown-toggle:before {
       background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a#user-notifications:before {
        background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png');
        background-size: cover;
        display: block;
        margin-left: 15%;
    }
    ul.responsive-tabs li a:before {
        color: transparent !important;
        width: 50px;
    }
    .tabs.info dd a, .tabs.info li a, #main #object-nav ul li a {
        color: #6f6f6f;
        display: block;
        height: 40px;
        line-height: 40px;
        padding: 15px 20px;
        font-size: 12px;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: normal;
    }
    .tabs.info dd a, .tabs.info li a, #main #object-nav ul li a {
        color: #C3C3C3 !important;
        display: block;
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        padding: 0px 10px;
    }
    a#user-notifications:before {
        content: "\f0a2" !important;
    }
    a#user-activity:before {
        content: "\f039" !important;
    }
    a#user-xprofile:before {
        content: "\f007" !important;
    }
    .tabs.info dd.active a, .tabs.info li.active a, #object-nav ul li.current a, #object-nav ul li.selected a, .tabs.info dd.active, .tabs.info li.active, #object-nav ul li.selected, #object-nav ul li.current {
        border: none !important;
    }
    div#item-nav {
        margin-top: -10%;
        width: 160%;
    }
    a#user-messages:before {
        content: "\f003" !important;
    }
    a#user-friends:before {
        content: "\f0c0" !important;
    }
    a#user-friends:before {
        content: "\f118" !important;
    }
    a#user-forums:before {
        content: "\f0e6" !important;
    }
    .item-list-tabs.no-ajax#object-nav a:before {
        font: 400% "FontAwesome";
        content: "\f144";
        display: block;
        text-align: center;
        transition: all 0.4s ease-in-out 0s;
        color: transparent;
        width: 60px;
        height: 56px;
        margin-bottom: -4px;
    }
    a#user-settings:before {
        content: "\f013" !important;
    }
    div.item-list-tabs#object-nav {
        margin-top: 0;
        color: #6f6f6f;
        display: block;
        height: 40px;
        line-height: 40px;
        padding: 15px 50px 50px;
        font-size: 12px;
        text-transform: uppercase;
        font-family: inherit;
        font-weight: normal;
    }
    .tabs.info dd.active a:after, #object-nav ul li.current a:after, #object-nav ul li.selected a:after {
        display: none;
    }
    div#item-nav {
        margin-top: -10%;
        width: 160%;
        padding-bottom: 60px;
    }
    .tabs.info, #object-nav ul {
        list-style: none;
        border-bottom: solid 1px #e6e6e6;
        display: block;
        height: 100px;
        padding: 0;
        margin-bottom: 40px;
    }
    div#bp_core_members_widget-7 {
        color: #777777;
        margin-top: 25%;
    }
    .buddypress .widgets-container.sidebar_location {
        margin-top: 25%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Checkmarks #93286
     Laura
    Moderator

    Hello, yes, here its the code, just change it for another FontAwesome icon coe 🙂

    COPY CODE
    
    .membership .bullet-item:before {
        font: 13px 'FontAwesome';
        content: "\f058" !important;
        color: #0095c2;
        margin-right: 6px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Image in friendship button #93044
     Laura
    Moderator

    Hello, please try adding this to style.css

    COPY CODE
    
    .generic-button.not_friends a:before {
        content: '\e8f6' !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Woo commerce Product Tags #92990
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    .product_meta {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Text alignment left #92947
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    .dl-horizontal dt {
        text-align: left !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: WooCommerce Image #92910
     Laura
    Moderator

    Hello, try maybe

    COPY CODE
    
    .ppt {
        display: none !important;
    }
    

    If not please share admin credentials so i can check it out 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Sign up button/homepage #92908
     Laura
    Moderator

    Hello, please try by adding this to style.css

    COPY CODE
    
    .eight.columns.login-buttons {
        margin-left: -40%;
    }
    

    Let me know if it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Woocommerce Price #92816
     Laura
    Moderator

    Hello, this would change it

    COPY CODE
    
    p.price .amount {
        font-size: 24px;
    }
    

    Please add to style.css

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Mega Menu align right #92745
     Laura
    Moderator

    Hello, try adding this to style.css of child theme

    COPY CODE
    
    .kleo-main-header .nav li.kleo-megamenu.mega-2-cols>.dropdown-menu {
        margin-left: -10px !important;
    }
    

    Let me know if it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: rtmédia #92735
     Laura
    Moderator

    Hello, here it is 🙂

    COPY CODE
    
    .rtmedia-comment-content a {
        color: white !important;
    }
    

    Add to style.css

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: changes #92727
     Laura
    Moderator

    Hello, question 3 was included in the css but seems like it didnt take effect, try this:

    COPY CODE
    
    a#recently-active-members {
        display: none !important;
    }
    a#popular-members {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Several Theme Related Questions #92315
     Laura
    Moderator

    Hello, maybe try

    COPY CODE
    
    div#item-body {
        margin-top: -730px !important;
        position: absolute !important;
        margin-left: 665px !important;
    }
    div#object-nav {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: How to Disable Profile Dropdown Menu #92309
     Laura
    Moderator

    Hello, this will delete both

    COPY CODE
    
    ul.button-group.radius.right {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Main Menu disappears in mobile view… #92308
     Laura
    Moderator

    Hello, by default the menu at mobile its not sticky, so i think it was custom code you added
    Maybe this css helps

    COPY CODE
    
    .is-sticky {
        position: fixed;
        margin: 0px !important;
        z-index: 1;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: rtmédia #92303
     Laura
    Moderator

    Hello, didnt know you wanted to change the name, please use this and change as you prefer 🙂

    COPY CODE
    
    .username a {
        color: white;
    }
    

    Also thought you might want to change the button attached so here it is

    COPY CODE
    
    a.btn.btn-highlight.form-submit {
        color: white;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: changes #92242
     Laura
    Moderator

    Hello, please try adding this to style.css of child theme 🙂

    COPY CODE
    
    dt.bp-field-name {
        text-align: left;
    }
    a#recently-active-members {
        display: none;
    }
    a#popular-members {
        display: none;
    }
    

    About 2 this is not available right now

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: new cover photo makes the text areas unreadable #92225
     Laura
    Moderator

    Hello, it does change, if you mean that is not changing when you save it, try:

    COPY CODE
    
    #profile .generic-button a, .tabs.pill.custom dd:not(.active) a, #profile .callout, .regulartab dt, .regulartab dd {
        background: rgba(0, 0, 0, 0.46) !important;
        color: #ffffff !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Shifted Buttons #92223
     Laura
    Moderator

    Hello, you can use this css

    COPY CODE
    
    div#item-header-avatar img {
        background-color: black;
    }
    

    🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: Edit Members Page Information #92208
     Laura
    Moderator

    Hello, here:
    You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file:

    COPY CODE
    
    //members page fields 
    add_action('after_setup_theme','kleo_my_member_data');
    function kleo_my_member_data() 
    {
        global $kleo_config;
        //this is the details field, right now it take the "About me" field content 
        $kleo_config['bp_members_details_field'] = 'About me';
        //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
        $kleo_config['bp_members_loop_meta'] = array(
            'I am a',
            'Marital status',
            'City'
        );
          
    }
    

    Also if the fields don’t appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):

    COPY CODE
    
    delete_transient( 'kleo_bp_meta_fields' );
    

    Just replace those profile field names in the code with our one custom ones.

    Let me know if it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    in reply to: EDIT BUTTONS #91990
     Laura
    Moderator

    Hello, please add this to style.css, will change the grey background, let me know if you also want it with tabs

    COPY CODE
    
    .lesson .section-container.container {
        background-color: white !important;
    }
    

    For the background, find it at the section background in visual composer, click the pen icons 🙂
    Please check the attachment, that’s how you change tab title 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Additional membership level restriction #91968
     Laura
    Moderator

    Hello, done, moneypack users will see the create group button, done by adding this to header.php

    COPY CODE
    
    <?php if ( pmpro_hasMembershipLevel(array(3))) { ?>
    <style>
    form#groups-directory-form .button:nth-child(2n) {
            display: initial !important;
    }
    </style>
    <?php } ?>
    

    And this to style.css

    COPY CODE
    
    form#groups-directory-form .button:nth-child(2n) {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

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

    Always happy to help you 🙂

Viewing 40 posts - 2,121 through 2,160 (of 2,796 total)

Log in with your credentials

Forgot your details?