This topic has 10 replies, 3 voices, and was last updated 11 years by SQadmin.

  • Author
  • #1196
     Gapron
    Participant

    Hello there,

    For starters, I would like to thank you for a great support so far, I really like the theme. And I do have some questions if you don’t mind.

    1. How can I make the main menu look a bit bigger than they are right now?
    2. The site has a love heart allover, how can I remove that since I’m using the theme as project management platform.
    3. When a user login, he or she should be redirect to their profile, how can I achieved that?
    4. When users are on their profile area, they need to see the about me tab immediately instead of clicking to see it. How can I achieved that?
    5. Last but not the least, I’ve been having trouble with the profile tabs, only the about me shows next to the photos even when I’ve added all the info. How can I shop up the other tabs?

    Thanks,
    Jeremie

    #1203
     SQadmin
    Keymaster

    Hi and thanks.
    1. To increase the menu font you can add the bellow rule to Sweetdate-> Styling options -> Quick css:

    COPY CODE
    
    .top-bar ul > li a:not(.button) {font-size:14px;}
    

    2. To change the heart icon over the images:
    Add this to sweetdate-child/functions.php into the remove actions function:

    COPY CODE
    
    add_filter(‘kleo_img_rounded_icon’, ‘my_custom_icon’);
    

    And then at the end of the file the function:

    COPY CODE
    
    function my_custom_icon () {
    return ‘camera’;
    }
    

    To change the heart in the register modal you need to edit ../page-parts/general-register-modal.php and replace “icon-heart” with your desired icon from fontawesome:http://fortawesome.github.io/Font-Awesome/icons/

    3. Add this to your sweetdate-child/functions.php

    COPY CODE
    
    /* Filter the redirect url for login*/
    add_filter("login_redirect","kleo_redirect_to_profile",100,3);
    
    function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
    /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
    	if(!is_super_admin($user->ID))
    		return bp_core_get_user_domain($user->ID );
    	else
    		return $redirect_to_calculated; /*if site admin*/
    }
    

    4. Make sure to update to 1.4.1 theme version

    5. If you have modified the name of your groups then uncomment or add this on your sweetdate-child/functions.php

    COPY CODE
    
    add_filter('kleo_extra_tab1', 'custom_tab');
    function custom_tab()
    {
        return 'Base';
    }
    

    This can be modified to show other Group than “Looking for” as in our demo. The above code replaces it with the Base group

    Cheers

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

    Hello again,
    Thanks for your support. I was able to redirect user to their profile upon login.

    1. I was unable to find the life particularly to add those codes on the function.
    2. The manu size, I could not find the file you spook about, I’m using the latest version of the sice I just bought like one and half week ago.
    3. I was able to add a new tab of the profile, but that’s only one table is added, in there a way to add more tabs? When the tab was added it overtook the about me order, about me should always be the first and open tab upon login.
    4. How can I disable comment on all pages, not post but only pages?

    Thanks,
    Jeremie

    #1224
     SQadmin
    Keymaster

    HI,
    1. To add those codes you have to connect to your server by FTP and go tp wp-content/themes
    There you should have you main theme: sweetdate and child theme: sweetdate-child folders.
    If you don’t have the child theme you should install and activate it instead of the main theme.
    If you have a Cpanel powered hosting you can login and use the File browser instead of FTP
    2. To increase the size do exactly as I wrote above. There is no file to edit. It is from the WordPress Admin. Just follow the menu instruction
    3. To have one particular tab selected on page load add this to sweetdate-child/functions.php:

    COPY CODE
    
    add_filter('kleo_bp_profile_default_top_tab','my_default_tab');
    function my_default_tab() {
        return 'my-photos';
    }
    

    4. Take a look at this post: https://archived.seventhqueen.com/forums/topic/how-to-disable-comment-form-on-select-pages

    Cheers

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

    Hello,

    I really don’t think you really care, you see some of aren’t programmers, so please while trying to help clients understand that we may not you coder or programmers or even designers.

    I’ve not actually given answers to any of my questions.

    1. All the code you asked to put in the child theme are not working.
    2. icon heart, doesn’t only show on the profile, but all over the site, and since I’m using the site a different purpose than dating, I will like to totally remove it. it should really simple for you to tell me exactly how to go about it.

    3 The default tab code you send didn’t work, instead it sthc off the tabs. I mean frankly speaking even you yourself should understand that when someone is looking at your profile, the first tab they would like to see is about me. About me should always be the first tab, not matter how many tabs we may have at the top.

    But it’s totally different at the moment why? because for each tab you add, it over take about me first place, it should be that way. Every other tabs should be listed next to about me.

    So here is an example of what I would like to achieve with regards to tabs.

    At the top profile area, I would like to have the following tabs.
    1. about me: showing the user basic info.
    2. My Skills: showing user skill and specialities, I change looking for to my skills.
    3. Media: This will show images of the work done before. I’m using the plugin you recommended on the comment at themeforest. rtmedia.

    So all I need is a way or a code that can list those three tabs at the top. about me is already there, Myskills already there. left media.

    Last but not the list I really would like to remove the entire icon hearts, this will help the theme serve the purpose for which I purchase.

    Thanks,
    Jeremie

    #1253
     SQadmin
    Keymaster

    Hi Jeremie,
    I really tried to give you as much info to accomplish what you need and I don’t think by that you can say I don’t care but anyway let’s take the initial questions again and see where you have problems:

    1. How can I make the main menu look a bit bigger than they are right now?
    To do that you don’t need to edit any file, you just need to go to your WordPress admin and then click the “Sweetdate” menu, then go to “Styling options” then at the bottom of the page you have “Quick css” section where you need to paste the code:

    COPY CODE
    
    .top-bar ul > li a:not(.button) {font-size:14px;}
    

    3. When a user login, he or she should be redirect to their profile, how can I achieved that?
    This one you said it works.

    We will release an update Monday that will include some changes to the way the profile tabs are rendered and it will allow to reorder the tabs or add another with just some small lines of code.
    Let me answer the questions bellow Monday when the new update will be available. Hope that is ok with you. Thanks

    2. The site has a love heart allover, how can I remove that since I’m using the theme as project management platform.
    4. When users are on their profile area, they need to see the about me tab immediately instead of clicking to see it. How can I achieved that?
    5. Last but not the least, I’ve been having trouble with the profile tabs, only the about me shows next to the photos even when I’ve added all the info. How can I shop up the other tabs?

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

    Hello again,

    I’m really for the misunderstanding, I was a bit carried away. I got the menu working, and for the rest, I will wait until monday. By the way, would the membership plan be included on the Monday’s release?

    That something that everyone is looking for, beleive having that feature will boost your sales to its highest level. This theme deserves a massive sales, it’s first original theme ever approved on themeforest.

    Thanks a lot.
    Jeremie

    #1263
     SQadmin
    Keymaster

    Hi,
    The update with membership will come later this month. Next week update will include some new features and bug fixes.
    Thank you very much,
    Gabriel

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

    Hi,
    I have created a topic on replacing hearts from the website:
    https://archived.seventhqueen.com/forums/topic/removereplace-the-love-hearts-in-site

    Let us know if you need anything

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

    Thanks for this. It seems the redirect works fine, but when the user logs in with facebook it doesn’t redirect. Any ideas? Thanks

    #1994
     SQadmin
    Keymaster

    Hi, When logging in with Facebook I think it just does a page refresh to authenticate the user

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 11 posts - 1 through 11 (of 11 total)

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

Log in with your credentials

Forgot your details?