Forum Replies Created

Viewing 40 posts - 7,881 through 7,920 (of 8,607 total)
  • Author
  • in reply to: Sign up requiring full name #10198
     Abe
    Keymaster

    Glad it works.

    Don’t forget to rate our theme *****

    Thanks

    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: No info is shown #10178
     Abe
    Keymaster

    WOW great 🙂

    Unfortunately those are generated by Buddypress. please refer to WPML forum and maybe they have a solution

    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: Welcome page – Change Background #10177
     Abe
    Keymaster

    Sorry but I don’t understand what you are trying to achieve. Please put a image with pointers to what you need and where

    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: Activity in buddypress #10174
     Abe
    Keymaster

    Another options would be to hire a developer from sites like microlancer.com

    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: Changing out the [kleo_status_icon type #10173
     Abe
    Keymaster

    By default you can’t and you have to extend that functionality by copying the function kleo_status_icon from wp-content\themes\sweetdate\custom_buddypress\bp-functions.php to your child theme functions.php file

    I hope you understand that this is a custom work which requires programming skills and a dedicated amount of time that isn’t covered by our support team.

    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: MIssmatch in total registred members #10172
     Abe
    Keymaster

    Hello, similar topic here? https://archived.seventhqueen.com/forums/topic/total-member-number-mismatch

    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: Prettyphoto not fullscreen #10170
     Abe
    Keymaster

    Hi, That could come from a custom code of yours.. maybe to hide the admin members.

    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: Prettyphoto not fullscreen #10169
     Abe
    Keymaster

    Hi, Can you try doing the same thing on our demo site? http://seventhqueen.com/demo/sweetdatewp/members/demo/

    It seems to behave normaly there. Also try to see if you have installed any plugin that might interfere.

    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: Text color on Members Directory #10166
     Abe
    Keymaster

    For that you have to add this CSS to Sweetdate – Styling options – QUick css

    COPY CODE
    
    .search-item .date, .search-item .date a {color: black;}
    
    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: Country City autocomplete is not working #10164
     Abe
    Keymaster

    Hello, We are going to fix this and release it in our next update. 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: Sign up requiring full name #10163
     Abe
    Keymaster

    Hello,
    You need to edit the template that generated the popup, which is in sweetdate/page-parts/general-register-modal.php and just remove this part:

    COPY CODE
    
          <div class="six columns">
            <input type="text" id="fullname" name="field_1" class="inputbox" required placeholder="<?php _e("Your full name", 'kleo_framework');?>">
          </div>
    

    I am glad you like our theme. Thank you

    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: Two Questions about the home page #10162
     Abe
    Keymaster

    HI,
    To hide the activity you should add this CSS to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    span.activity {display:none}
    

    If you want to change shortcode functionality you need to copy the function named kleo_status_icon from sweetdate/custom_buddypress/bp-functions.php to you child theme functions.php and modify as you wish there.
    As attributes he can have the ones from bellow with the default values
    ‘type’ => ‘total’,
    ‘image’ => ”,
    ‘subtitle’ => ”
    Type can be the field value of the Sex field you set in Sweetdate – Buddypress

    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: Twitter #10161
     Abe
    Keymaster

    Hi, I don’t think that is our theme 🙂

    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: No info is shown #10160
     Abe
    Keymaster

    Hi, Try leaving your name of the groups in English. Then modify the below code to match your group names and add it to the main theme functions.php at the end just before the ending ?> line
    After that this strings should appear in WPML string translation
    You’ll notice I have wrapped the name attribute in a translation tag __() and leaved the group attribute in the english name just like it is added in buddypress users profile fields

    COPY CODE
    
    //my changes to profile tabs
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
            
        $bp_tabs = array();
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' =>  __("About me","kleo_framework"), //this is the showed tab name
                'group' => 'About me', // this must be the same as the profile fields group name
                'class' => 'regulartab'
        );
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => __("Myself Summary", "kleo_framework"),
                'group' => "Myself Summary",
                'class' => 'regulartab'
        );
        $bp_tabs[] = array(
                    'type' => 'regular',
                    'name' => __("Looking for","kleo_framework"),
                    'group' => "Looking for",
                    'class' => 'regulartab'
        );
            
        $bp_tabs[] = array(
                    'type' => 'regular',
                    'name' => __("Lifestyle","kleo_framework"),
                    'group' => "Lifestyle",
                    'class' => 'regulartab'
        );
        $bp_tabs[] = array(
                    'type' => 'regular',
                    'name' => __("Physical","kleo_framework"),
                    'group' => "Physical",
                    'class' => 'regulartab'
        );
            
            
            
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia'))
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('My work', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
    }
    
    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: woocommerce and buddypress #10159
     Abe
    Keymaster

    Hello,
    Unfortunately the systems aren’t connected by default and this requires considerable amount of work to be achieved, which is not under the scope of this support forum. If you need to extend that functionality you can hire a developer.

    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: New error, membership problem #10157
     Abe
    Keymaster

    Hi @Pat2013, Your problem is related to HTTPS also?

    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: New error, membership problem #10156
     Abe
    Keymaster

    Hi @studiblog,
    Please give us access to your ftp server to do some tests.
    Mark the reply as private

    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: Permalink Issue #10155
     Abe
    Keymaster

    Hi, You could talk to your hosting and see if it is related to their config. After you save the Permalinks a file named .htaccess is created in the root of your site. Check if it has access to write it.
    For Buddypress to work it has to be configured with pretty permalinks like Post name in the settings page.

    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: Make Certain Page Neutral Color #10153
     Abe
    Keymaster

    Hi, Each page will add a different class to the body tag. You can reference it in you CSS to and add a white background

    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: Just wanna say thank you! #10152
     Abe
    Keymaster

    Hello, Really nice. 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: Sidebar widget CSS Issue #10151
     Abe
    Keymaster

    Hi, Add this CSS please

    COPY CODE
    
    .widgets-container.sidebar_location .widgets ul li:before {
        content: "";
    }
    .widgets-container.sidebar_location .media-tabs-container .rt-media-tab-panel ul li {width:auto;}
    
    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: Total Member Number Mismatch #10124
     Abe
    Keymaster

    Hi, I did a function to count all members that have profile fields added
    Add it to your sweetdate-child/functions.php and then put the function name like I said above

    COPY CODE
    
    //My total numbers
    function my_total_count() {
    	global $wpdb;
    
    	$sql = "SELECT ".$wpdb->base_prefix."bp_xprofile_data.user_id FROM ".$wpdb->base_prefix."bp_xprofile_data 
    			JOIN ".$wpdb->base_prefix."bp_xprofile_fields ON ".$wpdb->base_prefix."bp_xprofile_data.field_id = ".$wpdb->base_prefix."bp_xprofile_fields.id 
    			$where";
    
    	$match_ids = $wpdb->get_col($sql);
    	return count($match_ids); 
    }
    
    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: Welcome Email after Registration not being sent #10120
     Abe
    Keymaster

    This is obviously not a theme issue since it worked before in your environment. You should send the emails trough the SMTP server, check the logs on your server for any problems related to email, disable any plugins that might affect this

    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: No info is shown #10119
     Abe
    Keymaster

    Here is the code:

    COPY CODE
    
    //my changes to profile tabs
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
    		
        $bp_tabs = array();
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' =>  "Лични данни (About me)", //this is the showed tab name
                'group' => 'Лични данни (About me)', // this must be the same as the profile fields group name
                'class' => 'regulartab'
        );
     
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => "Обобщение за мен (Myself Summary)",
                'group' => "Обобщение за мен (Myself Summary)",
                'class' => 'regulartab'
        );
     
        $bp_tabs[] = array(
    				'type' => 'regular',
    				'name' => "Търся (Looking for)",
    				'group' => "Търся (Looking for)",
    				'class' => 'regulartab'
        );
    		
        $bp_tabs[] = array(
    				'type' => 'regular',
    				'name' => "Стил на живот (Lifestyle)",
    				'group' => "Стил на живот (Lifestyle)",
    				'class' => 'regulartab'
        );
        $bp_tabs[] = array(
    				'type' => 'regular',
    				'name' => "Физически данни (Physical)",
    				'group' => "Физически данни (Physical)",
    				'class' => 'regulartab'
        );
    		
    		
    		
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia'))
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('My work', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
     
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
    }
    

    For it to work the names added above in the “group” attribute must exactly match the profile fields Group as in Users – Profile fields(even a white space after the name)

    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: Background color in front page #10106
     Abe
    Keymaster

    Hi, I suppose you need to make the image from the photo editing software you are using, eq Photoshop

    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: No info is shown #10100
     Abe
    Keymaster

    Hey, Sorry for the delay. I will get back right away with the code for you

    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 Search #10099
     Abe
    Keymaster

    Thanks @adam 🙂

    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: Registration box linked to button color? #10098
     Abe
    Keymaster

    Hi, Try adding this CSS to Sweetdate -Styling options – Quick css

    COPY CODE
    
    .front-form-button { background: white ! Important;}
    
    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 expiry #10097
     Abe
    Keymaster

    You just add that code to your functions.php file inside the theme folder

    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: No facebook integration #10068
     Abe
    Keymaster

    Glad you figured it out

    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: Horizontal search bar on home page #10049
     Abe
    Keymaster

    Hi, That is not available

    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: Changing out the [kleo_status_icon type #10048
     Abe
    Keymaster

    Hi,
    This are the atributes and the default values if they are not specified:

    ‘type’ => ‘total’,
    ‘image’ => ”,
    ‘subtitle’ => ”,
    ‘class’ => ”

    The type attribute can have a profile field value like “Man” to count all users that are man. Also set the sex field in Sweetdate – Buddypress for this to work

    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: Total Member Number Mismatch #10047
     Abe
    Keymaster

    Strange 🙂
    in custom_buddypress/bp-functions.php try replacing
    bp_get_total_member_count() with
    bp_core_get_total_member_count()

    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: >> Text color #10046
     Abe
    Keymaster

    Buddypress profile page styling is found under Sweetdate – Buddypress

    Cheers
    Abe

    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: MIssmatch in total registred members #10045
     Abe
    Keymaster

    Buddypress counts them by different critearia, if they logged in and have activity info. You should see how many appear in the members directory because that is the correct number

    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: BadgeOS not working #10044
     Abe
    Keymaster

    Hi, Please try with the default WordPress theme and see if it is the same behaviour

    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 field value #10039
     Abe
    Keymaster

    hi, There were some topics about this and it seems that profile values can’t be translated by WPML. You should ask them maybe they have a solution for that

    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: Restrict page access #10038
     Abe
    Keymaster

    Hi, You set restrictions from Sweetdate- Memberships for Buddypress pages.
    Every post/page has a box to apply restrictions also.

    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: Link-preview #10037
     Abe
    Keymaster

    Hi,
    You should search for a plugin since there is only the default buddypress functionality on activity listing

    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: Which WPML version for SweetDate #10036
     Abe
    Keymaster

    Hello,
    I guess you don’t have the String translation plugin in the lowest version, which means that it is possible you won’t be able to translate some strings

    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 - 7,881 through 7,920 (of 8,607 total)

Log in with your credentials

Forgot your details?