Forum Replies Created

Viewing 40 posts - 2,401 through 2,440 (of 2,655 total)
  • Author
  • in reply to: Translation Problems #800
     SQadmin
    Keymaster

    Hi
    The total depends on the text domain you are using … I guess.
    The plural issue doesn’t make any sense

    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: Add content to BuddyPress pages #799
     SQadmin
    Keymaster

    Hi,
    Text added in those pages won’t show because they are mapped to buddypress components and will show only buddypress content.
    To show content before you can edit buddypress specific templates if you like or use the existing hooks to add content

    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: Registration page not sending values #798
     SQadmin
    Keymaster

    Hi
    That is how buddypress works and can’t be changed easily
    Maybe it will be available in upcoming buddypress versions.

    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: Signup Form On Homepage #797
     SQadmin
    Keymaster

    Hi
    We are working on a registration form to switch between the search form. It will be available these weeks in next update

    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: Registration page not sending values #791
     SQadmin
    Keymaster

    Just put the whole new code.
    The line is no. 4 from the snippet.

    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: How to use square Avatars? #790
     SQadmin
    Keymaster

    Hi,
    There is no setting for changing into square but I’ll give you a code snippet. You can paste it into Sweetdate/Styling options/Quick css box.

    COPY CODE
    
    .avatar,
    .attachment-shop_thumbnail,
    .carousel-profiles li,
    .carousel-profiles img,
    .buddypress.widgets ul.item-list .item-avatar,
    .buddypress.widgets .avatar-block .item-avatar { border-radius: 3px !important; }
    

    Regards,
    Robert

    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: Registration page not sending values #786
     SQadmin
    Keymaster

    Hi
    I modified a line. It was interpreted wrong by the editor

    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: Add content to BuddyPress pages #785
     SQadmin
    Keymaster

    Hi
    You might check:
    https://archived.seventhqueen.com/forums/topic/buddypress-not-showing

    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: Bugs in Homepage if edit #776
     SQadmin
    Keymaster

    Please check not to be a hosting problem.

    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: Registration page not sending values #774
     SQadmin
    Keymaster

    Hi
    Indeed, by default Buddypress doesn’t allow you to set visibility options to Name field.
    To achieve that you can add this piece of code into your sweetdate-child/functions.php file(you need to activate the child theme)

    COPY CODE
    
    add_filter(‘bp_xprofile_get_hidden_fields_for_user’,'bp_define_hidden_fields’, 10 ,3 );
    function bp_define_hidden_fields( $hidden_fields, $displayed_user_id, $current_user_id ) {
    //if not admin or if not the the profile of the current userif 
    if ( !is_super_admin( $current_user_id) AND  ($displayed_user_id != $current_user_id) ) {
    //add name field ( id = 1 ) to the hidden fields
    $hidden_fields[] = 1;
    }
    return $hidden_fields;
    }
    
    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: Bugs in Homepage if edit #770
     SQadmin
    Keymaster

    I think it’s ok now, you can change your password.

    Best regards,
    Robert

    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: Bugs in Homepage if edit #768
     SQadmin
    Keymaster

    Can you send me a temporary username and password at themesupport@seventhqueen.com?

    Regards,
    Robert

    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: Bugs in Homepage if edit #766
     SQadmin
    Keymaster

    Hi kash101,

    You need to put your content with class “twelve columns” width in “row” class. In fact this is how Foundation grid works.

    Ex:

    [kleo_one]
    [kleo_status_icon type="total" subtitle="Members in total"]
    [kleo_status_icon type="members_online" subtitle="Members online"]
    [kleo_status_icon type="women_online" subtitle="Women online"]
    [kleo_status_icon type="men_online" subtitle="Men online"]
    [/kleo_one]

    Best regards,
    Robert

    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: Front page search box – Change to Upcoming Events #762
     SQadmin
    Keymaster

    If you added it in sweetdate-child/functions.php it should work
    Anyway that was an example how to replace the form. Another one is to modify the way you like the form template:
    page-parts/home-search-form.php

    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: Problems!! #761
     SQadmin
    Keymaster

    Hi
    Please download the whole package again from Themeforest and replace your existing theme files.
    Also make a backup of the old files just in case.
    Seems to be a problem at TF not recognizing the new 1.4 version

    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: Account Deletion #759
     SQadmin
    Keymaster

    Hi
    We’ll look into this and let you know

    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: Problems!! #758
     SQadmin
    Keymaster

    Hi
    I see that you have different values in the Sex and Looking for selects
    They should be the same: Moškega and Moški in order for the search to work

    Also is the same topic as this one:
    https://archived.seventhqueen.com/forums/topic/research-dont-work

    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: Foundation 4.3 #755
     SQadmin
    Keymaster

    Hi rugwarrior,
    Foundation 4 was rebuilt from the ground and there are significant differences between 3 and 4.
    Sweetdate is build on Foundation3 and you have specific docs here http://foundation.zurb.com/old-docs/f3/

    Regards,
    Robert

    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 Homepage photo text #753
     SQadmin
    Keymaster

    Hi,
    There are two pictures, one from Sweetdate/Homepage tab http://d.pr/i/Q9Vd that you need to remove and one from Sweetdate/Layout settings tab – Boxed background type that you already changed.

    Regards,
    Robert

    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: Change Minimum Registration Age #750
     SQadmin
    Keymaster

    Hi
    Add this to sweetdate-child/functions.php to in the remov actions function:

    remove_filter( ‘bp_get_the_profile_field_datebox’, ‘custom_bp_datebox’,10,7);

    Then, bellow add this:

    COPY CODE
    
    function my_custom_bp_datebox($html, $type, $day, $month, $year, $field_id, $date) {
        $current_year = date("Y");
        $allowed_year = $current_year - 13;
        if($type == 'year'){
       
            $html = '<option value=""' . selected( $year, '', false ) . '>----</option>';
    
            for ( $i = $allowed_year; $i >= 1920; $i-- ) {
                    $html .= '<option value="' . $i .'"' . selected( $year, $i, false ) . '>' . $i . '</option>';
            }
        }
        return $html;
    }
    add_filter( 'bp_get_the_profile_field_datebox', 'my_custom_bp_datebox',10,7);
    
    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: Some Issues & Bugs #749
     SQadmin
    Keymaster

    Hi
    Try giving read permissions. Check with your hosting

    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 Homepage photo text #748
     SQadmin
    Keymaster

    Hi stevhong,
    You can remove that PNG image from admin: Sweetdate/Homepage tab/Home image and remove background.

    Regards,
    Robert

    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: Problems!! #747
     SQadmin
    Keymaster

    About the search. How it is not working? On our demo it works

    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: Problems!! #746
     SQadmin
    Keymaster

    Hi
    Try to download the package from TF and rewrite the files. We will see if there is a problem with auto updater.

    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: Translation Problems #745
     SQadmin
    Keymaster

    Hi
    You don’t have to add that function for the translation to work.
    Those notices can be ignored. What exactly isn’t working?

    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: Translation Problems #738
     SQadmin
    Keymaster

    Hi twoshoes,
    We will look into this and we will get back soon with an answer.

    Regards,
    Robert

    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: Research don't work #737
     SQadmin
    Keymaster

    We’re glad we could help

    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: Change colors of some items #733
     SQadmin
    Keymaster

    Hi,

    Those two pop-up templates are:

    ../themes/sweetdate/page-parts/general-login-modal.php and
    ../themes/sweetdate/page-parts/general-register-modal.php

    You can change icon class within “i” tag http://d.pr/i/Qcmd with your preferred icon class. You have a full list of classes here: http://fortawesome.github.io/Font-Awesome/cheatsheet/

    ps: thanks for your kindly words 😉

    Regards,
    Robert

    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: Change colors of some items #730
     SQadmin
    Keymaster

    Hi Claudio,
    I think we forgot about that pink colors from popups, we will fix this in next update. Until then you can change colors applying directly in admin Sweetdate/Styling options/Quick css box like this:

    COPY CODE
    
    .reveal-modal .pink-text { color: #1eb6c7; }
    

    Regards,
    Robert

    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: Registration Problems #729
     SQadmin
    Keymaster

    Hi stevhong,

    1. Under Settings/BuddyPress/Pages at registration section you need to assign your Register page to buddypress Register page.
    2. You can define custom fields from Users/Profile Fields.
    Fields in the “Base” group will appear on the signup page.

    ps: Looking to your site “User registration is currently not allowed.” – go to Settings/General and tick Anyone can register.

    Regards,
    Robert

    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: BuddyPress 1.8 #724
     SQadmin
    Keymaster

    Hi,
    We already tested 1.8 and seems to be ok. Also we install it on http://seventhqueen.com/demo/sweetdatewp/ to be tested from all users.

    You can login with user “demo” and password “demo”.

    Regards,
    Robert

    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: Research don't work #723
     SQadmin
    Keymaster

    Hi
    I was telling you that the options are different in the 2 select fields

    You can remove the searching for option and only leave the gender one. Also deselect it from the matching fields in Sweetdate – Buddypress
    You can remove the searching for field also from user profiles

    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: Some Issues & Bugs #722
     SQadmin
    Keymaster

    Seems like php files can’t be accessed even they exists. Has to be something miss configured on your install… maybe the htaccess is restricting acces to them or something from the server

    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: Change colors of some items #721
     SQadmin
    Keymaster

    Hi
    Try making them !imporfant
    But it should work without too.

    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: How to update Theme? #720
     SQadmin
    Keymaster

    Yes please do a manual update via FTP untill we test the issue.
    Thank you.
    Make sure to backup data just in case

    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: Research don't work #713
     SQadmin
    Keymaster

    Hi
    I saw that the option from Sex and Looking for fields are different

    In one you have femme and in the other you have une femme
    For the search to match the fields they gotta have same options

    Also set the matching fields under Sweetdate – Buddypress

    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: Some Issues & Bugs #712
     SQadmin
    Keymaster

    Hi
    Is this the correct link to the theme?
    http://norskmodell.no/wordpress/wp-content/themes/sweetdate

    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: Registration #711
     SQadmin
    Keymaster

    Hi,
    Budypress by default it gets only the fields in the Base group

    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: Members of Groups counter doesn't work #710
     SQadmin
    Keymaster

    The shortcode uses buddypress function for that count so it should report the same…

    Adding others users to the group changes something?

    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: WordPress SEO plugin #707
     SQadmin
    Keymaster

    Hi
    You need to change this in header.php
    You’ll need to replace the existing line:

    COPY CODE
    
    <title ><?php wp_title( '|', true, 'right' ); ?></title >
    

    Also do not modify main theme file. Use the included child theme.
    Copy header.php to sweetdate-child/header.php and do the changes there

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 2,401 through 2,440 (of 2,655 total)

Log in with your credentials

Forgot your details?