Forum Replies Created
-
Author
-
AbeKeymaster
HI, It has been released today.
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.AbeKeymasterMaybe you have rtMedia re-activated. Give us site access to take a look
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.AbeKeymasterHi. You shouldn’t have replaced your sweetdate-child theme where you have your customizations
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.AbeKeymasterVersion 2.3.1
Features
– Buddypress 1.9 compatibility. Fixed notifications templates
– Buddypress activity privacy plugin compatibility
– Update Revolution slider to 4.1.4
– Fix rtMedia display issue on privacy profile page
– Fix for Search/Sign Up on home page search form – Full width & alignment
– WPML About us widget string compatibility
– Latest members carousel to use thumb image by default
– Added class attribute for all existing shortcodes
– Fixed PMPRO Mailchip plugin error when used with SweetdateFile changes:
archive.php
assets/styles/app.css
assets/styles/responsive.css
assets/scripts/app.js
comments.php
custom_buddypress/_inc/css/default.css
custom_buddypress/_inc/global.js
custom_buddypress/bp-functions.php
custom_buddypress/class-bp-tabs.php
custom_buddypress/kleo-bp-search.php
framework/classes/SQueen.php
framework/constants.php
framework/frontend.php
framework/shortcodes/shortcodes.php
framework/functions/facebook_login.php
framework/widgets/mailchimp/MCAPI.class.php
framework/widgets/widget_about_us.php
framework/widgets/widget_mailchimp.php
functions.php
functions-pmpro.php
functions-shortcodes.php
members/index.php
members/single/profile/profile-loop.php
members/single/home.php
members/single/notifications.php
members/single/notifications/feedback-no-notifications.php
members/single/notifications/notifications-loop.php
members/single/notifications/read.php
members/single/notifications/unread.php
page-templates/buddypress-online.php
paid-memberships-pro/pages/levels.php
page-parts/woocommerce-after-wrap.php
rtmedia/main.php
style.cssHi 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.AbeKeymasterHello,
1. You should find a plugin for that. We saw in the past Bp Docs
2. Add this code to replace default breadcrumb. code goes to sweetdate-child/functions.phpCOPY CODEfunction kleo_show_breadcrumb() { if (sq_option('breadcrumb_status') == 1) { if(!is_page_template('page-templates/front-page.php')) { echo '<section><div id="breadcrumbs-wrapp"><div class="row"><div class="nine columns"></div>'; do_action('kleo_after_breadcrumb'); echo '</div></div></section>'; } } }
3. Try this code. You should search Buddypress forums for buddypress related customizations
COPY CODE//remove feeds function bp_remove_feeds() { remove_action( 'wp', 'bp_activity_action_sitewide_feed', 3 ); remove_action( 'wp', 'bp_activity_action_personal_feed', 3 ); remove_action( 'wp', 'bp_activity_action_friends_feed', 3 ); remove_action( 'wp', 'bp_activity_action_my_groups_feed', 3 ); remove_action( 'wp', 'bp_activity_action_mentions_feed', 3 ); remove_action( 'wp', 'bp_activity_action_favorites_feed', 3 ); remove_action( 'wp', 'groups_action_group_feed', 3 ); } add_action('bp_include', 'bp_remove_feeds');
4. We just tested on our demo and works. Maybe a plugin you installed is interfering
5. See this topic: https://archived.seventhqueen.com/forums/topic/redirect-user-to-their-profile-after-login
you just need to change the redirection link from return bp_core_get_user_domain($user->ID ); to return bp_core_get_user_domain($user->ID ).’/activity/friends/’;6. those are generated by buddypress. There are lots of topics out there
http://codex.buddypress.org/buddypress-components-and-features/members-navigation-menus/
seventhqueen.com/support/forums/topic/buddypress-profile-landing-page-changeHi 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.AbeKeymasterHi, You can do a search for male or female or whatever you need and take the link that is generated. Now you put that link where you need 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.AbeKeymasterTry activating the main Sweetdate theme and re-save Sweetdate – Homepage options or for testing purposes do a test clean install in another location
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.AbeKeymasterYou can hide that portion with CSS. You can add it to Sweetdate – Styling options – Quick css
#profile, .buddypress #breadcrumbs-wrapp {display: 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.AbeKeymasterAlso make sure to have the latest theme 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.AbeKeymasterThat is the message you get and it is telling you that you can’t translate each user post.
You can switch to spanish now form user profile and it shows in Spanish..
There are some changes to be done to a Buddypress core file to translate profile fields to Spanish. You should make this changes each time you update Buddypress
This is the file: buddypress/bp-xprofile/bp-xprofile-template.php
Change:COPY CODEfunction bp_get_the_profile_field_name() { global $field; return apply_filters( 'bp_get_the_profile_field_name', $field->name ); }
with:
COPY CODEfunction bp_get_the_profile_field_name() { global $field; return apply_filters( 'bp_get_the_profile_field_name', __($field->name, "buddypress") ); }
and
$groups[$i]->name with __($groups[$i]->name, “buddypress”)Theme is multilingual, supports WPML but there are certain parts from Buddypress that can’t be translated like all user activity posts. We can’t interfere in Buddypress core…
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.AbeKeymasterHi, I don’t think these are problems. That is the default functionality
1. You should check Buddypress forums for modifying navigation items
2. Blue bg from what? Button, header section ?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.January 3, 2014 at 13:30 in reply to: BP-Album Image path issue when using sub-folder wordpress install #9027AbeKeymasterYour site you just gave me is http://urbanswingster.com/ and not http://urbanswingster.com/wp
I think you are misunderstanding something. Also the account is restricted to see anything on your siteHi 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.AbeKeymasterHi, Sorry, the gender won’t match since it should be different option and not the same value as other fields so you should exclude it and change $kleo_config[‘matching_fields’][‘sex_match’] = 1;
COPY CODEadd_action('after_setup_theme','kleo_my_match'); function kleo_my_match() { global $kleo_config; $kleo_config['matching_fields']['starting_score'] = 1; /*required for initial match. If the sex preference matches it will continue to the specified fields below*/ $kleo_config['matching_fields']['sex'] = 'I am a'; $kleo_config['matching_fields']['looking_for'] = 'Looking for a'; //sex percentage $kleo_config['matching_fields']['sex_match'] = 1; //single value fields like select, textbox,radio $kleo_config['matching_fields']['single_value'] = array ( 'Marital status' => 3, 'Country' => 5, 'City' => 5, 'Occupation' => 8, 'Annual Income' => 9, 'Education' => 8, 'Political Views' =>2, 'Religion' => 1, 'Body Type' => 2, 'Ethnicity' => 6 ); //multiple values fields like multiple select or checkbox $kleo_config['matching_fields']['multiple_values'] = array ( 'Interests' => 2, 'Languages Spoken' => 3 ); }
Also redefine the function for the matching calculation
COPY CODEfunction compatibility_score($userid1=false, $userid2=false) { global $kleo_config; if ($userid1 && $userid2) { $score = $kleo_config['matching_fields']['starting_score']; //Sex match if ((isset($kleo_config['matching_fields']['sex_match']) && $kleo_config['matching_fields']['sex_match'] == '1') || !isset($kleo_config['matching_fields']['sex_match']) ) { $field1_u1 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid1); $field1_u2 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid2); if ( $field1_u1 != $field1_u2 ) { $score += $kleo_config['matching_fields']['sex_percentage']; } //if no sex match, return the score else { return $score; } } //single fields match if (is_array($kleo_config['matching_fields']['single_value'])) { foreach ($kleo_config['matching_fields']['single_value'] as $key => $value) { if ( xprofile_get_field_data($key, $userid1) && xprofile_get_field_data($key, $userid2) && xprofile_get_field_data($key, $userid1) == xprofile_get_field_data($key, $userid2) ) { $score += $value; } } } //multiple fields match if (is_array($kleo_config['matching_fields']['multiple_values'])) { foreach ($kleo_config['matching_fields']['multiple_values'] as $key => $value) { $field1 = xprofile_get_field_data($key, $userid1); $field2 = xprofile_get_field_data($key, $userid2); if ( $field1 && $field2 && $field1 == $field2 ) { $intersect = array_intersect((array)$field1,(array)$field2); if ( count($intersect) >= 1 ) { $score += $value; } } } } return $score; } }
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.AbeKeymasterHi, If the field names are correct in the code and users have added them to the profile the code should 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.AbeKeymasterHello,
1.
You should see this topic for changing those tabs https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image. You move the photos array in the code so it will be the first one like this:COPY CODEadd_action('after_setup_theme','kleo_my_custom_tabs'); function kleo_my_custom_tabs() { global $bp_tabs; $bp_tabs = array(); /* 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' ); } $bp_tabs['looking-for'] = array( 'type' => 'cite', 'name' => __('Looking for', 'kleo_framework'), 'group' => 'Looking for', 'class' => 'citetab' ); $bp_tabs['base'] = array( 'type' => 'regular', 'name' => __('About me', 'kleo_framework'), 'group' => 'Base', 'class' => 'regulartab' ); $bp_tabs['social'] = array( 'type' => 'regular', 'name' => __('Social', 'kleo_framework'), 'class' => 'regulartab' ); }
2. Add this code to you sweetdate-child/functions.php and you will enable bp-album menu in WP admin:
COPY CODEadd_action( 'admin_menu', 'bp_album_add_admin_menu' );
3.
a) add this code to sweetdate-child/functions.phpCOPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); }
b) See this topic for changing matching system: https://archived.seventhqueen.com/forums/topic/match-numbers
4. We will take a look
5. Those are all the fields added to your groups in Users -Profile fields. Leave to that group only the fields you want.
6. Add this css to Sweetdate – Styling options – Quick css to remove some of the height
COPY CODE.search-item .search-body { height: auto; margin-bottom: 0; }
To show more members in one line you have to edit this template located in sweetdate/members/members-loop.php and replace “four columns” with “three columns”
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.AbeKeymasterHi, Unfortunately there isn’t such shortcode. Try searching a plugin, maybe you find something.
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.AbeKeymasterBy default it displays the entered Name field from your profile. maybe you added some code that changed that
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.December 31, 2013 at 20:55 in reply to: BP-Album Image path issue when using sub-folder wordpress install #8961AbeKeymasterThe plugin takes the path from wordpress settings. It is not hard-coded. I was telling you to try re-saving options from Settings – General and Settings – Permalinks
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.AbeKeymasterHi, There is no default restriction. You probably added it from the post edit page or checked a category in Memberships – Membership levels – in each level edit 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.December 31, 2013 at 20:39 in reply to: The things that are missing in order to be a professional portal #8959AbeKeymasterSome of them can be achieved using plugins. We will add the geo search but we don’t have an estimated time for 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.AbeKeymasterRight now we don’t have an estimated time for this
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.AbeKeymasterYou can try http://wordpress.org/plugins/bp-registration-options/
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.AbeKeymasterHi, Maybe you have done some template changes? See our demo and it is not acting like that
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.AbeKeymasterSorry, Not yet. We tried to include more fixes and got delayed a bit. It will be live on 1st or 2nd of January.
Thanks for understanding
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.AbeKeymasterHi, I don’t know of such plugin. In our demo we created a normal profile so users can test whole functionalities.
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.AbeKeymasterHi, We are not aware of a such plugin. You can just add them as profile fields
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.AbeKeymasterI have edited your code above. Try again with 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.AbeKeymasterHello,
Those strings belong to the theme. Try searching theme in the Sweetdate themeHi 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.December 31, 2013 at 19:53 in reply to: BP-Album Image path issue when using sub-folder wordpress install #8948AbeKeymasterHi, That is related to your wordpress settings. You need to install it in you subfolder and not to move it after you have installed it somewhere else.
Try re saving options from Settings – General and Settings – Permalinks
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.AbeKeymasterHi, You can’t remove the username from registration. Try searching for a Buddypress plugin maybe it exists.
To remove the username from profile page, edit members/single/member-header.php and remove line 35 with the bp_displayed_user_username() function in 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.AbeKeymasterHi, You are missing first line from the code:
add_action(‘after_setup_theme’,’kleo_my_match’);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.AbeKeymasterHi, this should be the full code:
COPY CODE//change matching system add_action('after_setup_theme','kleo_my_match'); function kleo_my_match() { global $kleo_config; $kleo_config['matching_fields']['starting_score'] = 1; //If we want to match by members sex. values: 0|1 $kleo_config['matching_fields']['sex_match'] = 1; //required for initial match. If the sex preference matches it will continue to the specified fields below $kleo_config['matching_fields']['sex'] = 'I am/We are'; $kleo_config['matching_fields']['looking_for'] = 'Interested in Meeting'; //sex percentage $kleo_config['matching_fields']['sex_percentage'] = 49; //single value fields like select, textbox,radio $kleo_config['matching_fields']['single_value'] = array ( 'Status' => 10, 'Country' => 5, 'City' => 5, 'Drinking Habits' => 5, 'Dietary Preferences' => 5, 'Smoking Habits' => 5 ); //multiple values fields like multiple select or checkbox $kleo_config['matching_fields']['multiple_values'] = array ( 'For' => 5, 'Interests' => 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.December 31, 2013 at 19:23 in reply to: Added your Custom Restrict Functions and receive php error #8944AbeKeymasterHi,
You just put the code from the How to into sweetdate-child/functions.php
You don’t have to alter sweetdate/functions.phpmake sure to put the exact code in sweetdate-child/functions.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.AbeKeymasterHi, This topic gives you all you need to know: https://archived.seventhqueen.com/forums/topic/membership-auto-in-registration#reply-2727
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.AbeKeymasterYou want just to translate to Spanish or you need two languages at the same time. If you just want to translate theme to Spanish you don’t need WPML
Anyway if you want who languages you need to translate all you pages, posts etc to Spanish.
Also install Buddypress Multilingual.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.AbeKeymasterHi, You can hire a developer from Microlancer to help you with 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.AbeKeymasterHi,
This is the file: wp-content/themes/sweetdate/lib/bp-album/includes/bpa.screens.php
and the function that handles the edit screen: bp_album_screen_edit_content()
You need PHP knowledge to change thatHi 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.AbeKeymasterHi, default role and recommended is Subscriber since they don’t need any special permissions
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.AbeKeymaster@airsidworld, strange if it doesn’t take the words from the slider. You should put a question on Revslider Themeforest comments page.
@hughm That should have nothing to do with Revslider if you don’t have some specific SEO meta tags. Maybe there is a specific setting for homepage. Ask the plugin developerHi 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.AbeKeymasterHi, This is the topic that shows you how to change the matching system: https://archived.seventhqueen.com/forums/topic/match-numbers#reply-2254
to match only “I am a” and “Looking for” this would be the code you have to add in sweetdate-child/functions.php
COPY CODE//change matching system add_action('after_setup_theme','kleo_my_match'); function kleo_my_match() { global $kleo_config; $kleo_config['matching_fields']['starting_score'] = 1; //If we want to match by members sex. values: 0|1 $kleo_config['matching_fields']['sex_match'] = 1; //required for initial match. If the sex preference matches it will continue to the specified fields below $kleo_config['matching_fields']['sex'] = 'I am a'; $kleo_config['matching_fields']['looking_for'] = 'Looking for a'; //sex percentage $kleo_config['matching_fields']['sex_percentage'] = 99; //single value fields like select, textbox,radio $kleo_config['matching_fields']['single_value'] = array (); //multiple values fields like multiple select or checkbox $kleo_config['matching_fields']['multiple_values'] = array (); }
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. -
AuthorPosts