Forum Replies Created

Viewing 40 posts - 1,361 through 1,400 (of 2,655 total)
  • Author
  • in reply to: Display username in members list meta #3818
     SQadmin
    Keymaster

    Maybe:

    COPY CODE
    
    add_filter('kleo_bp_meta_fields', 'my_extra_data_mb_loop');
    function my_extra_data_mb_loop($output)
    {
        global $members_template;
        array_unshift($output,'<span style="text-align:center">'.$members_template->member->user_login.'</span>');
        return $output;
    }
     
    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: login when restricting pages #3817
     SQadmin
    Keymaster

    Hi,
    The popup should work in any page. maybe you have an error in a page if it doesn’t appear. Can you provide a link to your site?

    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: Display 'Group Directory' as a list. #3816
     SQadmin
    Keymaster

    I think you did some changes or have a plugin that affects this. You should try disabling plugins that might affect this or think if you modified the members template.

    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: Facebook Privacy? #3813
     SQadmin
    Keymaster

    Hi,
    I have added a line to the facebook functions file that will allow you to customize user data before it is added to wordpress. Please replace your framework/functions/facebook_login.php content with the one from this file: https://archived.seventhqueen.com/files/facebook_login.txt

    After that you are able to modify the data that is saved for the user with a filter added to your sweetdate-child/functions.php

    COPY CODE
    
    
    add_filter('kleo_fb_register_data', 'kleo_custom_fb_data');
    function kleo_custom_fb_data($userdata)
    {
    	/*
    	 * $userdata is an array with the values that will be saved and looks like this:
    	 $userdata = array(
    	   'user_login' => 'facebook_user',
    	   'user_email' =>'emailfrom@facebook.com',
    	   'user_pass' => 'already_generated_pass',
    	   'display_name' =>'My nice name');
    	 */
    	
    	//change user data example
    	$userdata['display_name'] = 'Not a real name';
    	$userdata['user_login'] = 'generate_me_an_unreal_username';
    	
    	return $userdata;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     SQadmin
    Keymaster

    Hi, That was a file permission problem.If it occurs you need to make sure you have write permissions the the specified location. Usually the hosting company can fix it easily

    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: Register form on homepage only for non-members #3811
     SQadmin
    Keymaster

    Try the mixed form that shows a register form for non-logged in users and a search form for logged in users

    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: 404 Page Error #3810
     SQadmin
    Keymaster

    This is fixed in the theme version 2.1. Try re-downloading the theme from themeforest and replacing existing theme files. Remember to always do files backup before updating.
    Custom sidebars need contain widgets to show.

    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: Hide Comment count in Post Article Meta #3807
     SQadmin
    Keymaster

    Hi, You can add this css to Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    .link-list li:last-child {
        display: none;
    }
    
    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: Drop Down Selections Restricted #3801
     SQadmin
    Keymaster

    Hi BurntCorkMedia, can you send me a link to look into? Our email is: themesupport@seventhqueen.com – with “in attention to Robert”. Also please tell me what browser you use.

    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: Chat plugin #3794
     SQadmin
    Keymaster

    Hi,
    Yes you can limit access to cometchat by wrapping their code in header.php like this:

    http://d.pr/n/TVWo

    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: Colour of text in search box #3793
     SQadmin
    Keymaster

    For the top links bottom border add this css to Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    .top-links {border-bottom: 1px solid #fff}
    
    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: Colour of text in search box #3792
     SQadmin
    Keymaster

    Hi, The text color is set by “Top Menu Link Color”
    If you want to use a different color than the one set for the Top Menu Link Color add this css to Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    .form-search.custom input[type="text"], .form-search.custom input[type="password"] {color: #fff}
    
    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: Redirect guests to register page for restricted areas #3791
     SQadmin
    Keymaster

    You can change it by adding this code snipped to sweetdate-child/functions.php

    COPY CODE
    
    //Redirect only guests to register page
    add_filter('kleo_pmpro_url_redirect', 'kleo_my_custom_guest_redirect');
    
    function kleo_my_custom_guest_redirect($redirect)
    {
    	if (!is_user_logged_in()){
    		return home_url().'/register';
    	}
    	else
    	{
    		return $redirect;
    	}
    }
    
    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 #3789
     SQadmin
    Keymaster

    Hi, From WP admin -> Settings -> Buddypress -> Settings -> Account Deletion allow users to delete acount:
    http://d.pr/i/AL2w

    Then in user profile -> settings:
    http://d.pr/i/udYn

    PS: Being logged as admin won’t show that in your profile

    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: .psd Images #3788
     SQadmin
    Keymaster

    Hi, Maybe you haven’t seen my answer above that you need to change the shortcode and add an image attribute like:
    [kleo_status_icon type=”Man” subtitle=”Men online” image=”http://image_source_change_this_link.jpg&#8221; ]

    So you need to upload your custom images and replace in each shortcode the image url: http://image_source_change_this_link.jpg with your uploaded image

    Let me know if 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: Remove Friend Requests #3785
     SQadmin
    Keymaster

    You can disable friend component from Settings -> 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: Pop ups out of no where?! #3783
     SQadmin
    Keymaster

    So after updating it is fine?

    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: myCRED and BadgeOS #3782
     SQadmin
    Keymaster

    Hi, Quick fix for you 🙂

    Add this css in Sweetdate -> Styling options -> Quick css:

    COPY CODE
    
    .fixed.log-entries {position:static;}
    
    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 #3780
     SQadmin
    Keymaster

    Hi, Don’t know about that errors. It should not happen

    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: Display 'Group Directory' as a list. #3779
     SQadmin
    Keymaster

    Hi, You can provide a link to your search page so we can see it in action

    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: Users online problem #3778
     SQadmin
    Keymaster

    The problem is with the image because it is higher that all others. Make all icons the same dimension.

    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: Search changes #3775
     SQadmin
    Keymaster

    Hi,
    That’s not possible by default unfortunately. You need to extend this with some development work.

    Cheers

    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: Need [Kleo] Text Widget #3774
     SQadmin
    Keymaster

    A solution for this can be do to it from css for each widget. You need to inspect each element with Firebug for example and see widget wrapper class. For example to the search widget add a search icon before the title:

    COPY CODE
    
    .widget_search h5:before {content: "";font-family: FontAwesome;}
    

    Look here for icons and what to put inside the content attribute:
    http://astronautweb.co/snippet/font-awesome/

    Add the css to Sweetdate -> Styling options -> Quick css

    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: Display username in members list meta #3772
     SQadmin
    Keymaster

    Hi, This code added to sweetdate-child/functions.php does the trick:

    COPY CODE
    
    
    add_filter('kleo_bp_meta_fields', 'my_extra_data_mb_loop');
    function my_extra_data_mb_loop($output)
    {
    	global $members_template;
    	array_unshift($output,$members_template->member->user_login);
    	return $output;
    }
    
    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: search not found #3768
     SQadmin
    Keymaster

    Set the matching fields(I am, Looking for) in Sweetdate -> Buddypress if you want to search for a value in another field and vice-versa. This is how we set it up on our demo

    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 change matching system #3767
     SQadmin
    Keymaster

    Hi, Matching is enabled by default and shows when you are logged in and viewing somebody else profile

    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: Predefined Profile tabs missing #3766
     SQadmin
    Keymaster

    Hi, Please follow this topic and should work fine: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image

    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: RT media issue #3765
     SQadmin
    Keymaster

    Hi,
    This is discussed here:
    https://archived.seventhqueen.com/forums/topic/rtmedia-update-theme-issue
    Problem with rtMedia plugin

    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: Looking for #3764
     SQadmin
    Keymaster

    Hi,
    Read this topic that shows you how to handle those tabs:
    https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
    Your code should be something like:

    add_action('after_setup_theme','kleo_my_actions');
    function kleo_my_actions()
    {
        global $bp_tabs;
    $bp_tabs['looking-for'] = array(
        'type' => 'cite',
        'name' =>  __('Looking for new name', 'kleo_framework'),
        'group' => 'Looking for',
        'class' => 'citetab'
    );
    }
    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 not working! #3763
     SQadmin
    Keymaster

    Well, something is wrong since when you hit to register you get back to that page instead of the Register page. Look at our demo and see what normally happens: http://seventhqueen.com/demo/sweetdatewp-modern/

    PS. I like the way you styled the site.

    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: .psd Images #3762
     SQadmin
    Keymaster

    Hi, You don’t have to replace something in FTP. You need to edit Home page and change the shortcode to have your custom image something like:
    [kleo_status_icon type=”Man” subtitle=”Men online” image=”http://image_source_change_this_link.jpg&#8221; ]

    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: Error in functions-pmpro.php #3761
     SQadmin
    Keymaster

    Hi, I fixed it, It was related to the fact that you had changed your members link to parent/child page format. Not it is all good

    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: Revolution slider appears just half on homepage #3742
     SQadmin
    Keymaster

    Hi bastkopf, I think the sticky menu is ok now on Safari for mac but I need you to confirm that is ok on your browser too. I’ve made the changes only on this demo: http://seventhqueen.com/demo/sweetdatewp/

    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: Pop ups out of no where?! #3734
     SQadmin
    Keymaster

    Hi,
    Have you done changes to the main theme files? If you haven’t, try to replace main theme files with fresh ones.
    Can you provide a link? I am certain that is a plugin or some modification you have done to the code.

    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: Error in functions-pmpro.php #3732
     SQadmin
    Keymaster

    I will do some tests today 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: Revolution slider appears just half on homepage #3726
     SQadmin
    Keymaster

    Hi bastkopf, yes, seems to be some issues there on safari for mac, I’ll look into and come back few moments later.

    ps: many thanks for your patience.

    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: Avatar Crop Jumps Down #3720
     SQadmin
    Keymaster

    Hi, Seems to be a buddypress bug that comes from their cropping javascript.

    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: Mobile Issue: Log in & Sign Up Buttons on Blog #3719
     SQadmin
    Keymaster

    Hi,
    This happens on our demo also? http://seventhqueen.com/demo/sweetdatewp-travel/blog/

    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: Error in functions-pmpro.php #3717
     SQadmin
    Keymaster

    Hi, Have you added some custom code to that file?
    If not send us a private reply with temporary FTP access to take a look. Thanks

    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 #3714
     SQadmin
    Keymaster

    Glad you figured it out.

    Cheers

    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 - 1,361 through 1,400 (of 2,655 total)

Log in with your credentials

Forgot your details?