Forum Replies Created

Viewing 40 posts - 521 through 560 (of 2,655 total)
  • Author
  • in reply to: Same age in members-loop #6609
     SQadmin
    Keymaster

    You can add this code to show the age in the profile:

    COPY CODE
    
    /* Birthday to age in profile page */
    bp_get_the_profile_field_value();
    add_filter('bp_get_the_profile_field_value', 'kleo_age_field',10,3);
    function kleo_age_field($value, $type, $id)  {
    	$age_field = sq_option('bp_age_field');
    	if ($age_field == $id) {
    		$value = xprofile_get_field_data($id);
    		$diff = time() - strtotime($value);
    		$age = floor($diff / (365*60*60*24));
    		$value = sprintf( _n( '%s year', '%s years', $age, 'buddypress' ), $age );
    	}
    	return $value;
    }
    
    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: Increase Group Excerpt Limit #6607
     SQadmin
    Keymaster

    Hi, I have added above a css rule that disables the height limit: https://archived.seventhqueen.com/forums/topic/increase-group-excerpt-limit#reply-4007

    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 Groups Page for Non-logged In Users #6605
     SQadmin
    Keymaster

    Hi,
    To do that in the menu use this plugin: http://wordpress.org/plugins/menu-items-visibility-control/

    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 lag #6604
     SQadmin
    Keymaster

    Hi, I guess that is because there are plenty elements in that page. Maybe activating caching might help.

    Regards,
    Abe

    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: Sidebar Not Appearing and Group Sidebar Issues #6603
     SQadmin
    Keymaster

    Hi,
    For #1 see this topic: https://archived.seventhqueen.com/forums/topic/blog-sidebar-problem

    2. This is the right code to add if you want to remove the sidebar:

    COPY CODE
    
    add_action('wp_head', 'kleo_disable_group_sidebar', 11);
    function kleo_disable_group_sidebar()
    {
    	if(BP_GROUPS_SLUG == bp_current_component())
    	{
    	remove_action('kleo_buddypress_before_content', 'kleo_buddypress_sidebar');
    	remove_action('kleo_buddypress_after_content', 'kleo_buddypress_sidebar');
    	add_filter('kleo_content_class', create_function(null, 'return "twelve";'));
    	}
    }
    

    Also you have to replace the contents of this file: wp-content/themes/sweetdate/page-parts/buddypress-before-wrap.php with http://d.pr/n/InGg

    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: Member Level Displayed on all users Profile #6602
     SQadmin
    Keymaster

    You are right. I have updated 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: BuddyPress Wall Integration #6599
     SQadmin
    Keymaster

    Hi,
    I wanted to make sure you are translating the plugin and not the theme. You can check if the .mo file exists in the plugin location.. If it is there.. then you need to ask the developer or find some info about the translation

    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 the short code of the total number of man or woman #6598
     SQadmin
    Keymaster

    Hi,
    This topic applies to your question: https://archived.seventhqueen.com/forums/topic/big-bug-with-manwoman-number-and-search

    You need to add the “type” attribute something like: type=”Mechanics”

    Also you need to set the Sex field from Sweetdate -> Buddypress. This is used for the member count

    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: Home page picture #6596
     SQadmin
    Keymaster

    Hi,
    Set a background image from Sweetdate – Styling options – Header. Set it to cover so it will fit on the whole area

    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: White Space on the Right #6595
     SQadmin
    Keymaster

    Hi, I couldn’t log in with the credentials provided. When not logged in all looks 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: Post Update Button Off Center on Mobile #6580
     SQadmin
    Keymaster

    Hi, can you check please if this happens on our demo here http://seventhqueen.com/demo/sweetdatewp/ ? I’ve tested again and seems to be ok, or maybe you can send me a link to look closer.

    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: tweeks #6546
     SQadmin
    Keymaster

    Hi,
    You just choose a theme from the right sidebar and go at the bottom of the page to create a topic
    I didn’t understand if you have a question in your last reply 🙂

    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: different fields #6545
     SQadmin
    Keymaster

    We are happy if you are happy 🙂
    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 contribution #6544
     SQadmin
    Keymaster

    You probably need to increase php memory_limit to 128MB. Talk at your hosting.

    For poedit you can find plenty of info on using it, like http://betterwp.net/wordpress-tips/create-pot-file-using-poedit/

    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: User Meta on Membership Page #6538
     SQadmin
    Keymaster

    I don’t know what you added.. this is the sample code that needs to be modified accordingly to your needs:

    COPY CODE
    
    add_action('after_setup_theme',' kleo_my_member_data');
    function kleo_my_member_data()
    {
    	global $kleo_config;
    	//this is the details field, right now it take the “About me” field content
    	$kleo_config['bp_members_details_field'] = 'About me';
    	//this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there
    	$kleo_config['bp_members_loop_meta'] = array(
    	'I am',
    	'Type',
    	'City'
    	);
    } 
    
    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: Video shortcode isn´t working #6537
     SQadmin
    Keymaster

    That url is wrong. in the visual shortcodes or in the demo content we have added a sample url. it has to be something like youtube.com/embed/xx

    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: Additional functions for car-sharing theme #6536
     SQadmin
    Keymaster

    Hi,
    Lets talk on email if you want to develop these functionalities. Send us an email at themesupport@seventhqueen.com

    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: Same age in members-loop #6535
     SQadmin
    Keymaster

    In our theme we used default buddypress xprofile date field. Just set it under Sweetdate – Buddypress – Age field

    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 Sidebar and alignment. #6534
     SQadmin
    Keymaster

    Hi,
    Please add this to sweetdate-child/functions.php

    COPY CODE
    
    /* category pages without sidebar */
    add_action('after_setup_theme','kleo_cat_sidebar');
    function kleo_cat_sidebar() {
    	add_filter('kleo_content_class','kleo_change_cat_sidebar');
    	remove_action('kleo_after_content', 'kleo_sidebar');
    }
    function kleo_change_cat_sidebar() {
    	return 'twelve';
    }
    

    2. Add this css to WP admin – Sweetdate – Styling options – Quick css box:

    COPY CODE
    
    #call-to-actions {
        text-align: left;
    }
    

    Then I saw you centred the whole text from the editor. Align it to the left from the page 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: Mobile Nav problem. #6529
     SQadmin
    Keymaster

    Does the nav from our site opens? http://seventhqueen.com/demo/sweetdatewp/
    Look for javascript errors in the browser console

    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: Show Online Status #6528
     SQadmin
    Keymaster

    You have some strange single quotes.. replace them with the regular ‘ from the keyboard

    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: Can't login.. Stuck on Sending info #6525
     SQadmin
    Keymaster

    Hm.. that could come from the fact that you are logged in on another tab and the current tab hasn’t been refreshed and won’t log you in since you already are.

    I will try to think of 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: Can't login.. Stuck on Sending info #6524
     SQadmin
    Keymaster

    We haven’t encountered this but when you do please look at the browser console log for errors

    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 code in the head tag #6523
     SQadmin
    Keymaster

    That code should go in header.php from the sweetdate theme via FTP

    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/Change Settings->Notifications #6522
     SQadmin
    Keymaster

    Hi,
    Those are generated by buddypress with this action: bp_notification_settings
    Try searching buddypress forums on changing this
    You can change buddypress strings by translating buddypress into english and put your english version of the text as the translated text 🙂

    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: Featured Member #6521
     SQadmin
    Keymaster

    Hi,
    Right now that is not possible. We will note it and maybe sometime add it

    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: Twitter & Social Icons #6520
     SQadmin
    Keymaster

    You definitely are using another theme for mobile 🙂 why are you saying that you are not, since we entered you site and viewed it

    We have tested it with an iPhone 5 and other Android devices and all works fine. Please test on another cell phone.

    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: tweeks #6518
     SQadmin
    Keymaster

    Active theme means your active theme and in it you will find functions.php
    You added it in a wrong way if your site isn’t working. Add the code at the end of functions.php before the ending “?>” line

    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: Sidebar Not Appearing and Group Sidebar Issues #6517
     SQadmin
    Keymaster

    Hi,
    1. We did the same thing and works.
    – Try to disable some plugins.
    – Try to set WP_DEBUG to TRUE in wp-config.php
    – Try to remove any extra custom code you added

    2. In our site the sidebar in to the right.. not below. probably you did something that messed with it

    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: RTMedia Album – SQL syntax error #6513
     SQadmin
    Keymaster

    That probably comes from the plugin. Try updating also the theme to 2.2
    Don’t know why or where that is occurring.

    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: Home Page Image #6512
     SQadmin
    Keymaster

    We added that using Revolution slider. All the assets are found in the package downloaded from TF in Demo content/revolution_slider

    You could import the slider and follow the readme.txt or don’t use the slider and just put the image in Sweetdate – Styling options – as header background

    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 with the signup process #6511
     SQadmin
    Keymaster

    You need to copy the php template files to the same location in sweetdate-child to keep the changes on next updates

    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: Post Update Button Off Center on Mobile #6510
     SQadmin
    Keymaster

    Hi Nicolaus, I solved this, it will be available in next update. Until then you can use in sweetadmin/styling options/quick css box a temporary rule:

    COPY CODE
    
    #whats-new-form .rtmedia-container {
    	clear: both;
    }
    

    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: Still having the facebook Issue #6508
     SQadmin
    Keymaster

    We just registered. Maybe there is something in your side

    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 search page name leading/spacing question #6506
     SQadmin
    Keymaster

    Hi, You could add this css to sweetdate-child/style.css or in WP admin – Sweetdate – Styling options – Quick css:

    COPY CODE
    
    .search-item .author {
        height: 22px;
        margin-bottom: 0;
    }
    .search-item p {
        margin-bottom: 0;
        padding: 5px 8px 0;
    }
    
    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: turning off linking words in users profile text #6504
     SQadmin
    Keymaster

    Hi,
    I think there is one but here is the code you have to add to sweetdate-child/functions.php

    COPY CODE
    
    /* remove profile field links */
    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    
    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: White Space on the Right #6501
     SQadmin
    Keymaster

    You have a plugin that does that probably or you added some codes. Not providing a link to your site makes us wander in to the dark

    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 do I change the hearts #6500
     SQadmin
    Keymaster

    Hi,
    To remove the Friendships heart add this to Sweetdate – Styling options – Quick css:

    COPY CODE
    
    #friends-my-friends:before {content: "";}
    

    to replace it with a star for example, do it like this:

    COPY CODE
    
    #friends-my-friends:before {content: "";}
    

    for the groups:

    #invites:before {content: “”;}

    You can choose another icon from here: http://fortawesome.github.io/Font-Awesome/3.2.1/cheatsheet/

    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 directory #6499
     SQadmin
    Keymaster

    You need a custom developed solution to match your need. We haven’t developed something similar to help you

    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 Horizontal Search #6498
     SQadmin
    Keymaster

    See this: https://archived.seventhqueen.com/forums/topic/horizontal-nav
    Increase the column width if you want but it will increase all fields.

    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 - 521 through 560 (of 2,655 total)

Log in with your credentials

Forgot your details?