Forum Replies Created

Viewing 40 posts - 8,321 through 8,360 (of 8,607 total)
  • Author
  • in reply to: Paid memberships pro #8794
     Abe
    Keymaster

    Hi, Your reply is very vague. Please tell us what error you are receiving and other useful info for debugging your problem.
    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translation Help #8793
     Abe
    Keymaster

    Hi, If you are just translating the theme in your language and you are not using two languages in the same time you don’t need WPML. You just need to translate the theme in your language using Codestyling Localization plugin for example. Fields are added from Users – Profile fields

    If you want multiple languages in the same time, use WPML and switch to your added language to see the translated field or to register strings that need to appear in the backend for translation

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to change matching system #8792
     Abe
    Keymaster

    Hi, if you no longer have the I am a, Looking for and you have just one Gender field, disable sex matching with:
    $kleo_config[‘matching_fields’][‘sex_match’] = 0;
    and add the Gender as a single value field, like:
    $kleo_config[‘matching_fields’][‘single_value’] = array (
    ‘Gender’ => 50,
    ‘Country’ => 5,
    ‘City’ => 5
    );

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Social Profiles for Members #8771
     Abe
    Keymaster

    Hi, you should create those as profile fields so users can complete them from their profile.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Translation contribution #8770
     Abe
    Keymaster

    Thank you very much 🙂

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Top level menu #8769
     Abe
    Keymaster

    Hi,
    That shouldn’t have affected your menu. Go to Appearance – Menus and see if there is something wrong with them or see any plugins you have installed lately

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Members mini profil on members page #8768
     Abe
    Keymaster

    Hello, please see this topic to add fielfs in members loop
    https://archived.seventhqueen.com/forums/topic/member-directory-page-about-me-text-does-not-display

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Membership Levels #8767
     Abe
    Keymaster

    Hi,
    That Popular is an image. Change the image with your own with this css added to Sweetdate.- Styling options – Quick css

    COPY CODE
     
    .membership .pricing-table.popular:after {
    background: url('http://path to image');
    }
    

    For any other template changes,file is: sweetdate/paid memberships pro/pages/levels.php

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Create 2 different user types #8766
     Abe
    Keymaster

    Hello, you could create a profile field named Type where you put your existing types users can choose from.
    You can also check out this plugin: BuddyPress User Account Type plug in. There is also a free version.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Create 2 different user types #8765
     Abe
    Keymaster

    Hi,
    Sorry, there isn’t a simple solution to this. Try hiring a developer to help you achieve this functionality.

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Remove 'Create an Account' #8764
     Abe
    Keymaster

    Hi,
    Please leave the mixed form and add this code to sweetdate-child/functions.php

    COPY CODE
    
    add_action('wp_head','my_custom_act');
    function my_custom_act() {
    	remove_action('after_header_content','render_user_search');
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: WPML flag switch security issue #8756
     Abe
    Keymaster

    Hi,
    We’ll do some tests 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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Paid memberships pro #8755
     Abe
    Keymaster

    That is probably a hosting problem. Try activating debug mode to see more wordpress errors. Set WP_DEBUG to TRUE in wp-config.php

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide members directory #8750
     Abe
    Keymaster

    Hi, you can install Paid Memberships Pro to restrict those areas. Set them from Sweetdate – Memberships after installation

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Send email at buddypress account activation #8734
     Abe
    Keymaster

    add this code to sweetdate-child/functions.php and modify it for your needs:

    COPY CODE
    
    //send a welcome email when a user account is activated
    add_action('bp_core_activated_user','kleo_welcome_user_notification',10,3);
    function kleo_welcome_user_notification($user_id,$key=false,$user=false) {
        if(is_multisite())
            return ;// we don't need it for multisite
        //send the welcome mail to user
        //welcome message
        $welcome_email = __( 'Dear USER_DISPLAY_NAME,
     
    Your new account is set up.
     
    You can log in with the following information:
    Username: USERNAME
    LOGINLINK
     
    Thanks!
     
    SITE_NAME' );
        //get user details
        $user = get_userdata( $user_id );
        //get site name
        $site_name = get_bloginfo('name');
        //update the details in the welcome email
        $welcome_email = str_replace( 'USER_DISPLAY_NAME', $user->first_name, $welcome_email );
        $welcome_email = str_replace( 'SITE_NAME', $site_name, $welcome_email );
        $welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email );
        $welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email );
     
        //from email
        $admin_email = get_site_option( 'admin_email' );
     
        if ( empty($admin_email) )
            $admin_email = 'support@' . $_SERVER['SERVER_NAME'];
     
        $from_name = $site_name;//from
        $message_headers = "From: \"{$from_name}\" \n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
     
        //EMAIL SUBJECT
        $subject = sprintf(__('Welcome to  %1$s '), $site_name) ;
        //SEND THE EMAIL
        wp_mail($user->user_email, $subject, $welcome_email, $message_headers);
     
        return true;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Buddypress 1.9 and WordPress 3.8 #8732
     Abe
    Keymaster

    We fixed this. An update is coming tomorrow v3.2.1

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Buddypress 1.9 and WordPress 3.8 #8731
     Abe
    Keymaster

    Yes that is the way it looks right now because of a template problem. We are doing our best to fix it

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    That is the way your profile fields are configured in Users – Profile fields. That is fine. But when you search you have to put the name users have typed.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to close all information tabs #8729
     Abe
    Keymaster

    of course 🙂

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Best seo plugin #8728
     Abe
    Keymaster

    We don’t know a plugin for that, sorry

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Signup users emails going to spam #8727
     Abe
    Keymaster

    That is because of your hosting configuration. Best way is to send mail from a SMTP server using a plugin like SMTP configure

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Profile Page – Name Surname #8726
     Abe
    Keymaster

    Hi, That is a hook that just renders added content using add_action wordpress function.
    Read more: http://codex.wordpress.org/Function_Reference/do_action

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Username, hide real names in BB press #8723
     Abe
    Keymaster

    Hello, Similar topic here: https://archived.seventhqueen.com/forums/topic/change-name-to-username

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to install the theme updates once they are available? #8722
     Abe
    Keymaster

    Hi, On a update you will loose existing theme files and will be replaced by new files. Always make a backup before updating.
    You can update automatically from Wp Admin – Dashboard – Updates in you put your TF username and API key in Sweetdate – Miscellaneous

    Manual update via FTP can be done, replacing all theme files with the new files downloaded from Themeforest. Theme files must have a style.css inside sweetdate folder(to make sure you are pasting the right files)

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to close all information tabs #8721
     Abe
    Keymaster

    Simple solution:
    add data-default-opened=”none” attribute to ul class=”accordion”
    file: wp-content/themes/sweetdate/members/single/profile/profile-loop.php
    result:

    COPY CODE
    
    <ul class="accordion" data-default-opened="none">
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Paid memberships pro #8720
     Abe
    Keymaster

    THanks @escort
    also from admin->sweetdate->Memberships you change the order of the levels

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Contact Form 7 #8719
     Abe
    Keymaster

    Hi, In what page is it looks “screwy”? Or all the pages are affected?

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: blog posts #8718
     Abe
    Keymaster

    Hi, You should search on bbPress forums to see how you can get them.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Compatibility Match on Profile always showing "50" #8717
     Abe
    Keymaster

    By default it will increase for each matched value from the multiple values

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Change Name to username #8715
     Abe
    Keymaster

    Hi, in sweetdate/framework/functions/breadcrumb.php change in line 506 from $bp->displayed_user->userdata->display_name to $bp->displayed_user->userdata->user_login

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Add menu item to the Profile drop down menu #8714
     Abe
    Keymaster

    Hello,
    Easy job with the “header_profile_dropdown” filter. Add this to your sweetdate-child/functions.php

    COPY CODE
    
    add_filter('header_profile_dropdown', 'my_profile_link');
    function my_profile_link($links) {
    	$links[] = '<li><a href="http://mydomain.com/help">Help</a></li>';
    	return $links;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Add a Second Photo Album Tab to Profile #8713
     Abe
    Keymaster

    Hi, I think the easiest way is to define a new Field Group and add there the field with the image. Use http://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ for image field

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Sign-up with facebook #8712
     Abe
    Keymaster

    Hi,
    Here is the file that handles facebook registration: sweetdate/framework/functions/facebook_login.php. It is a custom solution developed by us.

    This hook runs at registration:
    do_action(‘fb_register_action’,$user_ID);

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Tracking researches #8711
     Abe
    Keymaster

    Hi, You need to hire a developer for this or do it yourself if you have PHP/MYSQL knowledge.
    All searches go to the members page so you can add your script there. Template location: sweetdate/members/index.php

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Create a Match Page #8710
     Abe
    Keymaster

    Hi,
    I understand what you need but that isn’t available in Sweetdate. You need to hire a developer to create a custom page for you where users can see their recommended matches

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: avatar #8709
     Abe
    Keymaster

    Hi, That can’t be changed to depend on the BpAlbum plugin. It is a built-in functionality from Buddypress. Maybe search their forum

    Cheers

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Reformatting the left-right-sidebar Template Page #8708
     Abe
    Keymaster

    Extra sidebar can;t be changed like that. In functions.php search for kleo_extra_sidebar and modify the class there

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Check box field checked #8706
     Abe
    Keymaster

    Hi, You are right. Buddypress isn’t checking the default options at registration. Being related to Buddypress core it will not be an easy task to change the functionality

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Buddypress v1.9 Plugin Update – Issues #8693
     Abe
    Keymaster

    Please disable the new Notifications component. We will 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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Remove 'Create an Account' #8692
     Abe
    Keymaster

    You set the register form in Sweetdate – HOmepage. Set it to Mixed

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 40 posts - 8,321 through 8,360 (of 8,607 total)

Log in with your credentials

Forgot your details?