Forum Replies Created

Viewing 40 posts - 1,641 through 1,680 (of 2,796 total)
  • Author
  • in reply to: Contact form not working #127882
     Laura
    Moderator
    Not marked as solution
    in reply to: Add background on member directory page #127881
     Laura
    Moderator

    Hello, yes you can use this

    COPY CODE
    
    .directory #main {
        background-image: url('URL HERE') !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: Transparent menu on mobile #127879
     Laura
    Moderator

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

    COPY CODE
    
    @media (max-width: 991px) {
    .navbar-transparent .header-color, .navbar-transparent .header-color .kleo-main-header {
        background-image: none;
        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: Visual Composer Grid Builder #127872
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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 🙂

     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: RTmedia probs #127868
     Laura
    Moderator
    Not marked as solution
    in reply to: Redirect non logged user #127867
     Laura
    Moderator

    Try by adding this to functions.php of child theme

    COPY CODE
    
    add_action( 'template_redirect', 'redirect_to_specific_page' );
    
    function redirect_to_specific_page() {
    
    if ( is_page('slug') && ! is_user_logged_in() ) {
    
    wp_redirect( 'http://www.example.dev/your-page/', 301 ); 
      exit;
        }
    }
    

    Change the url with your registration page

    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: Boxed Width #127865
     Laura
    Moderator

    Hello, 1600 is not boxed anymore but here is the css

    COPY CODE
    
    .kleo-page.page-boxed {
        max-width: 1600px !important;
    }
    

    Just add it to style.css of child theme

    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 🙂

     Laura
    Moderator

    Hello, just activate buddypress and set the pages at Settings > Buddypress > Pages
    Also enable registration at Settings > General > Anyone can register

    For top bar you can activate it at theme options
    For login and register what do you mean to add it to your panel?
    To change menu color add this to style.css of child theme

    COPY CODE
    
    .kleo-main-header.header-normal.header-scrolled a {
        color: red;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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: I can’t see home page #127847
     Laura
    Moderator
    Not marked as solution
    in reply to: Transparent menu for small screens #127843
     Laura
    Moderator
    Hello, justadd this to style.css of child theme :)
    @media (max-width: 991px) {
    .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header {
        position: absolute!important;
    }
    }
    
    in reply to: Favorite instead Like Button Plugin #127838
     Laura
    Moderator

    For the hearts just add this to style.css of child theme

    COPY CODE
    
    .icon-star-empty:before {
        content: "\f004" !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: Buttons is not showing #127782
     Laura
    Moderator

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

    COPY CODE
    
    div#item-buttons {
        float: left;
    }
    div#item-buttons a {
        width: 100% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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: Search Form #127649
     Laura
    Moderator

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

    COPY CODE
    
    .form-header .lead {
        font-size: 20px;
    }
    
    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 edit certain options #127644
     Laura
    Moderator

    Hello, for:
    1- Add this to style.css of child theme

    COPY CODE
    
    form#register_form_front input[type="password"] {
        width: 80px;
    }7
    

    2- At wp-content/themes/sweetdate/page-parts/ copy the file home-register-form.php and paste it at the child theme, following the same path of folders, so you should create the page-parts folder then edit the file and find

    COPY CODE
    
    Registering for this site is easy, just fill in the fields below and we will get a new account set up for you in no time.
    

    And change it

    Or another way, use Loco Translator , find the text and translate it

    3- To add,change or delete fields go to Users > Profile fields
    4- Can you say it in english? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket 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: homepage login issue #127641
     Laura
    Moderator
    Not marked as solution
    in reply to: Match #127615
     Laura
    Moderator
    Not marked as solution
    in reply to: NEWS Focus & posts & formatting issues #127476
     Laura
    Moderator
    Not marked as solution
    in reply to: Blank Page Template – only Header and Footer #127466
     Laura
    Moderator
    Hello, try by adding this css to style.css of child theme
    div#main-container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .template-page.col-sm-12.tpl-no {
        padding: 0px !important;
    }
    
    
    
    in reply to: Front-Office never loads #127419
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Tabs Disappear #127411
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Update to Kleo Template disenabled PMPro Membership #127405
     Laura
    Moderator
    Not marked as solution
    in reply to: Add background on member directory page #127390
     Laura
    Moderator

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

    COPY CODE
    
    .buddypress #main {
        background-color: black !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: Google maps not loading #127374
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Menu overlaying page text #127369
     Laura
    Moderator
    Not marked as solution
    in reply to: homepage login issue #127296
     Laura
    Moderator
    Not marked as solution
    in reply to: Changing menu order for loged in user? #127286
     Laura
    Moderator

    Hello, for 1, try this https://buddypress.org/support/topic/re-order-profile-menu-items/
    for 2, as i already gave you the code for the main menu here is the one for the profile menu background

    COPY CODE
    
    #item-header-wrap {
        background: white !important;
        border-right: 1px solid white !important;
    }
    #buddypress div#item-nav {
        background: black !important;
    }
    #buddypress div#item-header .profile-cover-inner {
        background: linear-gradient(180deg, white 0%, black 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 🙂

     Laura
    Moderator
    Not marked as solution
    in reply to: I can not see the map in contact page #127270
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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: Profile Details Section #126958
     Laura
    Moderator

    Hello, that is a font-awesome icon, this is the css code

    COPY CODE
    
    .icon-plus:before {
        content: "f067" !important;
    }
    

    To change it browse this library http://fontawesome.io/icon
    Choose an icon and use the unicode number at the css code
    Check attached
    For example, for the attached icon, the final code would be

    COPY CODE
    
    .icon-plus:before {
        content: "f2b4" !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 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Profile Details Section #126953
     Laura
    Moderator

    Hello, you can use this css at style.css of child theme

    COPY CODE
    
    .bbp-user-page #item-body {
        background-color: black;
        padding: 10px;
    }
    
    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: Paid Membership on Home Register Page #126935
     Laura
    Moderator
    Hello :) Do not worry, just add this to style.css to hide featured image at posts
    img.attachment-kleo-full-width.size-kleo-full-width.wp-post-image {
        display: none !important;
    }
    
    in reply to: size field create member #126932
     Laura
    Moderator
    Not marked as solution
    in reply to: Registration page, Logo link,… #126921
     Laura
    Moderator

    Aw, that hurts
    Is fine, i added it again, but please dont delete it 😉
    Here is a backup because i do not trust you ( lol )

    COPY CODE
    
    .field_1 .description {
        margin-top: -17% !important;
        position: absolute;
    }
    .field_6 .description {
        margin-top: -36% !important;
        position: absolute;
    }
    .field_690 .description {
        margin-top: -49% !important;
        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: Member Online #126915
     Laura
    Moderator
    Hello, fixed, used the following shortcode:
    [kleo_status_icon type="custom" field="Je suis" value="Une Femme" online="yes" subtitle="Femme(s) Online" image="http://melodiedate.fr/wp-content/themes/appsdate/assets/images/icons/steps/status_03.png"]
    
    [kleo_status_icon type="custom" field="Je suis" value="Un Homme" online="yes" subtitle="Homme(s) Online" image="http://melodiedate.fr/wp-content/themes/appsdate/assets/images/icons/steps/status_04.png"]
    
    in reply to: Logo too small #126796
     Laura
    Moderator

    Hello glad you could resolve it!
    To change the menu background use this css code at style.css of child theme

    COPY CODE
    
    #sidemenu-wrapper {
        background-color: #3b4452 !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: Block a member #126696
     Laura
    Moderator

    Hello, try this one

    COPY CODE
    
    @media (max-width: 991px) {
    a.has-tip.tip-right.activity-button.mention {
        width: 350px !important;
    }
    }
    

    If not working try this one

    COPY CODE
    
    @media (max-width: 991px) {
    a.has-tip.tip-right.activity-button.mention {
        width: 100% !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    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: Customised pricing table #126669
     Laura
    Moderator

    Oh sorry i forgot this one, add it to style.css of child theme 🙂

    COPY CODE
    
    .no-item {
        background-color: #fff;
        padding: 15px;
        text-align: center;
        color: #333;
        font-size: 14px;
        font-weight: normal;
        border-bottom: dotted 1px #ddd;
    }
    
    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: A couple of issues #126668
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

    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 - 1,641 through 1,680 (of 2,796 total)

Log in with your credentials

Forgot your details?