This topic has 24 replies, 2 voices, and was last updated 8 years by Laura.

  • Author
  • #72357
     babafasi
    Participant

    Hi, how can i change the search form flied names in the homepage. example i would like to change the I am a “drop down” field values from man and women to groom and bride.. same thing want to change for Looking for a “drop down” field values from man and women to groom and bride… please find the attached picture for clear idea of what i wanted..

    Thanks

    Attachments:
    You must be logged in to view attached files.
    #72525
     Laura
    Moderator

    Hello, please go to Users > Profile fields and find I am a and Looking for fields there

    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 🙂

    #72915
     babafasi
    Participant
    This reply has been set as private.
    #73072
     Laura
    Moderator

    Hello, phone should be in breadcrumbs.
    The website speed depends on your plugins, you can optimize it using W3 Total Cache plugin, Smush it plugin, lazy load plugin and some others. Also a cdn like cloudflare 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 🙂

    #73092
     babafasi
    Participant
    This reply has been set as private.
    #73353
     Laura
    Moderator

    Hello, can you 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 🙂

    #73445
     babafasi
    Participant
    This reply has been set as private.
    #73634
     babafasi
    Participant
    This reply has been set as private.
    #73846
     Laura
    Moderator

    Hello, i cant access to your website, please let me know once i can

    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 🙂

    #73887
     babafasi
    Participant
    This reply has been set as private.
    #74074
     Laura
    Moderator

    Hello, it seems that your website is not installed, please check out attachment, it redirects me to the install setup

    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.
    #74279
     babafasi
    Participant
    This reply has been set as private.
    #74649
     babafasi
    Participant
    This reply has been set as private.
    #74651
     babafasi
    Participant
    This reply has been set as private.
    #74754
     babafasi
    Participant
    This reply has been set as private.
    #75129
     Laura
    Moderator

    Hello, sorry for the delay.

    1- Please copy the header.php file from main theme to the child theme, edit it and find

    COPY CODE
    
     <?php _e("PROFILE", 'kleo_framework'); ?>
    

    Replace with:

    COPY CODE
    
    <?php echo bp_core_get_user_displayname( bp_loggedin_user_id() ); ?>
    

    2. Added a new class and fixed those issues with css in style.css
    The css:

    COPY CODE
    
    .disablelinks .circle-image a {
        cursor: default;
    }
    .disablelinks i.icon-heart {
        display: none;
    }
    

    3. Added css to replicate the style under style.css
    The css:

    COPY CODE
    
    .tabs.info dd a, .tabs.info li a, #main #object-nav ul li a {
        display: block;
        font-size: 13px;
        line-height: 30px;
        background-color: #E6E6E6;
        color: #1D1D1D;
        border: 1px solid #E6E6E6;
        border-radius: 100px;
        text-decoration: none;
        margin-left: 10px;
        height: 31px;
    }
    .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;
    }
    .tabs.info, #object-nav ul {
        list-style: none;
        border-bottom: solid 1px rgba(230, 230, 230, 0);
        display: block;
        height: 40px;
        padding: 0;
        margin-bottom: 40px;
    }
    a#rtmedia-nav-item-video {
        display: none;
    }
    a#rtmedia-nav-item-music {
        display: none;
    }
    

    4. For that, please go to Users > Profile fields and add the field to Base group, then it will appear just after the modal form, in the 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 🙂

    #75198
     babafasi
    Participant
    This reply has been set as private.
    #75201
     babafasi
    Participant
    This reply has been set as private.
    #75438
     Laura
    Moderator

    Hello, for:
    1:
    Where you placed:

    COPY CODE
    
    <?php echo bp_core_get_user_displayname( bp_loggedin_user_id() ); ?>
    

    Replace with:

    COPY CODE
    
    <?php _e("Welcome, ", 'kleo_framework'); ?><?php echo bp_core_get_user_displayname( bp_loggedin_user_id() ); ?>

    2: I cannot disable the lightbox, you will need to use icons and not images
    3: The fields that are in Register page are the fields are Base group, you cannot add a field to register page if its not in Base group on Users > Profile fields, they are not separated, they are linked.

    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 🙂

    #75440
     Laura
    Moderator

    4: It takes to membership plans because you have membership levels and restrictions, membership page will allow to register

    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 🙂

    #81810
     babafasi
    Participant
    This reply has been set as private.
    #82275
     Laura
    Moderator

    Hello, the solution would be to use the plugin bp disable activation reloaded that will auto-activate users when they register, so you should also add the plugin buddypress no captcha recaptcha to registration form as security measure

    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 🙂

    #82294
     babafasi
    Participant
    This reply has been set as private.
    #82494
     babafasi
    Participant
    This reply has been set as private.
    #82764
     Laura
    Moderator

    Hello, i see, it may be related to the php email, try by installing this plugin (attached) and configure it with your server smtp settings:

    Go to your hosting account cpanel, to email, create an email for your domain if you still dont have one, next to the options of the email, you should see a More button (or something like that ) Select configure mail, a new window should appear, scroll down to find your email server credentials, one should be secure and the other non secure, first try the secure one, find “SMTP PORT” now in your plugin settings, in server add the email server (appears in the page we were before) the email username ( usually is the full email) and the email password ( usually cpanel password )
    Finally add the SMTP PORT and save, try now a test email or create an user and see if it shows. If it doesnt, try the steps again but with non secure section

    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.
Viewing 25 posts - 1 through 25 (of 25 total)

The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?