Forum Replies Created

Viewing 40 posts - 41 through 80 (of 2,990 total)
  • Author
  • in reply to: Add description to my main menu #216806
     Radu
    Moderator
    Not marked as solution
    in reply to: Changing section icons in profiles and groups #216803
     Radu
    Moderator

    Hi,

    Yes, tried to find a sone days ago to find solution for you to add those icons there but i cannot figure out why they are not displayed and there was not enough available time to investigate custom css things.

    Just add this css

    COPY CODE
    
    a#user-forums:before {
        content:'\f0e4';
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Footer 1 Background #216778
     Radu
    Moderator

    Using this css

    COPY CODE
    
    .row .three.columns:first-child {
        background: red;
        color: #fff;
    }
    
    .row .three.columns:first-child * {
      font-family: sans-serif !important;
    }
    

    Cheers
    R

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

    Hi, in this case change directly the link from top menu.

    To change the create an account link, follow these steps:

    Go to wp-content/themes/sweetdate/page-parts and copy the file general-login-modal.php
    Now go to wp-content/themes/sweetdate-child/ create a folder and name it page-parts and then paste general-login-modal.php there.

    Edit general-login-modal.php and find:

    COPY CODE
    
    <a href="#"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
    

    Replace with

    COPY CODE
    
    <a href="URL TO YOUR MEMBERSHIPS LEVEL PAGE"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
    

    And add the url

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Kleo theme – post carousel #216753
     Radu
    Moderator
    Not marked as solution
    in reply to: Background Color Sticky Menu #216735
     Radu
    Moderator

    Hi,

    just add this css to wp-admin ->theme options -> general settings -> styling

    COPY CODE
    
    .contain-to-grid.sticky.fixed {
        background: red;
    }
    

    Change red with your color code
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Background Color Sticky Menu #216734
     Radu
    Moderator

    Hi,

    just add this css to wp-admin ->theme options -> general settings -> styling

    COPY CODE
    
    .contain-to-grid.sticky.fixed {
        background: red;
    }
    

    Change red with your color code
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Extend content area #216728
     Radu
    Moderator

    Hi,

    Check those

    Or you can divide the 980px space using this

    COPY CODE
    
    div#main-content.eight.columns {
        width: 77%;
    }
    
    aside.four.columns {
        width: 23% !important;
    }
    
    

    Or you can increase the wrapper to 1080

    COPY CODE
    
    div#main > .row {
        width: 1080px;
    }
    

    All snippets seems to take action tested

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: the theme not responsive #216670
     Radu
    Moderator

    Hi,

    Make sure to have latest theme update for profile fields issue, also try to switch all things off just to test plugins and child theme and leave only the parent theme activated (latest version) it should works since on my local install and rest of the works. Let me know!

    For the centering buttons on mobile use the next css

    COPY CODE
    
    
    @media(max-width:940px) {
        .rtl .two.columns.pull-two {
            left: 0 !important;
        }
    
        .rtl.bp-user div#item-buttons {
            float: none;
            text-align: -webkit-center;
        }
    }
    

    Cheers
    R

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

    Hi,

    There was a snippet code on the forum that will lock non-paying members into levels page until they buy but i cannot found under search in forum, you can try to search for it using this keyworks, lock member , memberships.

    PS: found it

    COPY CODE
    
    
    add_action( 'template_redirect', 'my_membersip_restrict' );
     
    function my_membersip_restrict() {
        global $pmpro_pages, $post;
     
        if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) {
            if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) {
                wp_redirect( pmpro_url() );
            }
        }
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Extend content area #216606
     Radu
    Moderator

    With the next css you will have 50/50 avatar zone and the fields and also the avatar streched into available space with the last css line

    COPY CODE
    
    #profile .five.columns {width:50%}
    
    #profile .seven.columns {width:50%;}
    
    #profile  div#item-header-avatar.eight { width: 100%;}
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Kleo theme – post carousel #216599
     Radu
    Moderator
    Not marked as solution
    in reply to: Fix Menu in Mobile #216354
     Radu
    Moderator
    Not marked as solution
    in reply to: Fix Menu in Mobile #216313
     Radu
    Moderator
    Not marked as solution
    in reply to: Fix Menu in Mobile #216312
     Radu
    Moderator
    Not marked as solution
    in reply to: In Messages it says what % profile done #216307
     Radu
    Moderator
    Not marked as solution
    in reply to: Issues with Header #216304
     Radu
    Moderator
    Not marked as solution
    in reply to: Hide text excerpt #216303
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    div#latest-update {
        display: none;
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: the theme not responsive #216298
     Radu
    Moderator

    Hi,

    1. Add this css to wp-admin -> theme options -> styling options -> quick css

    COPY CODE
    
    .rtl .reveal-modal {
        margin-right: -150px !important;
    }
    

    2.

    COPY CODE
    
    .rtl.bp-user div#item-buttons {
        text-align: -webkit-left;
        float: left;
    }
    
    .rtl.bp-user .two.columns.pull-two {
        padding: 0;
    }
    
    .rtl.bp-user div#friendship-button-6 {
        padding:0 !important;
        margin-left:0 !important;
        margin-bottom:5px !important
    }
    
    

    3. Check in theme option Bp profile tabs -> set ON

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Remove border/margen from News Focus element #216235
     Radu
    Moderator

    Hi,

    Just use this css

    COPY CODE
    
    .home-page .news-focus .kleo-tabs .tabs-style-line {
        border: 0;
        padding:0 !important;
    }
    
    .home-page .news-focus .kleo-tabs .tab-pane.active {
        padding: 0;
    }
    

    If you want to apply this change in rest of the pages also remove .home-page from the css

    The css will be added to wp-admin -> theme options -> general settings -> quick css

    I see that, they are not rendered in source code, did you have all thins updated? like plugins theme and wp ?

    Let me know

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Remove “Profile” from Profile-Tabs #216173
     Radu
    Moderator

    Hi,

    Using this css

    COPY CODE
    
    div#object-nav li#xprofile-personal-li {display:none;}
    

    Also you may need to change the landing component for buddypress i think

    https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: activity page number of everyone #216103
     Radu
    Moderator
    Not marked as solution
    in reply to: Buddypress submenu on Mobile device #215990
     Radu
    Moderator
    Not marked as solution
    in reply to: problem #215779
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    h2.woocommerce-loop-product__title {
        font-size: 16px !important;
    }
    

    It can be pasted under wp-admin -> theme options -> general options -> quick css

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: can’t remove the wordpress signing bar on top #215738
     Radu
    Moderator
    Not marked as solution
    in reply to: Side Menu #215690
     Radu
    Moderator
    Not marked as solution
    in reply to: Side Menu #215586
     Radu
    Moderator
    Not marked as solution
    in reply to: Hide quick profile navigation #215582
     Radu
    Moderator

    Use this css

    COPY CODE
    
    div#breadcrumbs-wrapp ul.inline-list {
        display: none;
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Import Theme Options not working #215579
     Radu
    Moderator
    Hi, This can be a server thing, this can be caused by max_input_vars limit Please add this line to your .htaccess
    php_value max_input_vars 5000
    If you receive an 500 internal error revert changes and contact your hosting company and tell em about this setting that you want to have it on your site. Let me know Best Regards Radu
    in reply to: Side Menu #215573
     Radu
    Moderator
    Not marked as solution
    in reply to: Changing section icons in profiles and groups #215450
     Radu
    Moderator

    HI,

    The icon code that you added for some icons and for the friends one it not exists in the font awesome css file, that’s it’s not displayed.

    You can try to use the icons that exists or to add this in head to use latest icons

    COPY CODE
    
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
    
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: News Focus: Hiding Category Label #215397
     Radu
    Moderator
    Not marked as solution
    in reply to: WordPress Post list link to open in new tab #215272
     Radu
    Moderator
    Not marked as solution
    in reply to: problem #215271
     Radu
    Moderator

    Hi,

    1. Try to re-save permalinks from wp-admin -> settings -> permalinks -> save changes

    If it’s the same provide wp admin to take a closer look, before make sure to have all things updated wp+plugins+theme.

    2. You can change the background by editing the page with elementor visual builder and from the row properties change the background.

    Take look here, how the elementor works: https://www.youtube.com/watch?v=43j6h3oCm0U

    3. Using a snippet like the next one

    COPY CODE
    
    function add_options_membership_levels_tabels($kleo_pay_settings) {
        $kleo_pay_settings[] =
            array(
                'title' => __( 'aaaaaMembers directory restriction', 'kleo_framework' ),
                'front' => __( '111View members directory', 'kleo_framework' ),
                'name'  => ''
            );
        return $kleo_pay_settings;
    }
    
    add_filter( 'kleo_pmpro_level_restrictions', 'add_options_membership_levels_tabels', '' , 10 );
    
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: News Focus: Hiding Category Label #215269
     Radu
    Moderator
    Not marked as solution
    in reply to: WordPress Post list link to open in new tab #215204
     Radu
    Moderator
    Not marked as solution
    in reply to: Member Profile Changes #215140
     Radu
    Moderator
    Not marked as solution
    in reply to: Blurry Images For Group Images #215139
     Radu
    Moderator
    Not marked as solution
    in reply to: Thin White Line at Page Bottom #215045
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 41 through 80 (of 2,990 total)

Log in with your credentials

Forgot your details?