Forum Replies Created
-
Author
-
SQadmin
KeymasterYou 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 solutionSQadmin
KeymasterHi, 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 solutionSQadmin
KeymasterHi,
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 solutionSQadmin
KeymasterHi, I guess that is because there are plenty elements in that page. Maybe activating caching might help.
Regards,
AbeHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
For #1 see this topic: https://archived.seventhqueen.com/forums/topic/blog-sidebar-problem2. This is the right code to add if you want to remove the sidebar:
COPY CODEadd_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 solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterHi,
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 translationHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 14, 2013 at 11:44 in reply to: change the short code of the total number of man or woman #6598SQadmin
KeymasterHi,
This topic applies to your question: https://archived.seventhqueen.com/forums/topic/big-bug-with-manwoman-number-and-searchYou 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 solutionSQadmin
KeymasterHi,
Set a background image from Sweetdate – Styling options – Header. Set it to cover so it will fit on the whole areaHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi, 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 solutionSQadmin
KeymasterHi, 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 solutionSQadmin
KeymasterHi,
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 solutionSQadmin
KeymasterWe are happy if you are happy 🙂
ThanksHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterI don’t know what you added.. this is the sample code that needs to be modified accordingly to your needs:
COPY CODEadd_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 solutionSQadmin
KeymasterThat 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 solutionSQadmin
KeymasterHi,
Lets talk on email if you want to develop these functionalities. Send us an email at themesupport@seventhqueen.comHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterIn 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 solutionSQadmin
KeymasterHi,
Please add this to sweetdate-child/functions.phpCOPY 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 solutionSQadmin
KeymasterDoes the nav from our site opens? http://seventhqueen.com/demo/sweetdatewp/
Look for javascript errors in the browser consoleHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterHm.. 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 solutionSQadmin
KeymasterWe 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 solutionSQadmin
KeymasterThat 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 solutionSQadmin
KeymasterHi,
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 solutionSQadmin
KeymasterHi,
Right now that is not possible. We will note it and maybe sometime add itHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterActive 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 “?>” lineHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
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 added2. 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 solutionSQadmin
KeymasterThat 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 solutionSQadmin
KeymasterWe 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 solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterHi 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,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterWe 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 solutionSQadmin
KeymasterHi, 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 solutionSQadmin
KeymasterHi,
I think there is one but here is the code you have to add to sweetdate-child/functions.phpCOPY 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 solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterHi,
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 solutionSQadmin
KeymasterYou 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 solutionSQadmin
KeymasterSee 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 -
AuthorPosts