Forum Replies Created
-
Author
-
AbeKeymaster
Hi, Your reply is very vague. Please tell us what error you are receiving and other useful info for debugging your problem.
CheersHi 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 you are just translating the theme in your language and you are not using two languages in the same time you don’t need WPML. You just need to translate the theme in your language using Codestyling Localization plugin for example. Fields are added from Users – Profile fields
If you want multiple languages in the same time, use WPML and switch to your added language to see the translated field or to register strings that need to appear in the backend for translation
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 you no longer have the I am a, Looking for and you have just one Gender field, disable sex matching with:
$kleo_config[‘matching_fields’][‘sex_match’] = 0;
and add the Gender as a single value field, like:
$kleo_config[‘matching_fields’][‘single_value’] = array (
‘Gender’ => 50,
‘Country’ => 5,
‘City’ => 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.AbeKeymasterHi, you should create those as profile fields so users can complete them from their profile.
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.AbeKeymasterThank 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.AbeKeymasterHi,
That shouldn’t have affected your menu. Go to Appearance – Menus and see if there is something wrong with them or see any plugins you have installed latelyHi 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, please see this topic to add fielfs in members loop
https://archived.seventhqueen.com/forums/topic/member-directory-page-about-me-text-does-not-displayHi 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,
That Popular is an image. Change the image with your own with this css added to Sweetdate.- Styling options – Quick cssCOPY CODE.membership .pricing-table.popular:after { background: url('http://path to image'); }
For any other template changes,file is: sweetdate/paid memberships pro/pages/levels.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.AbeKeymasterHello, you could create a profile field named Type where you put your existing types users can choose from.
You can also check out this plugin: BuddyPress User Account Type plug in. There is also a free 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.AbeKeymasterHi,
Sorry, there isn’t a simple solution to this. Try hiring a developer to help you achieve this functionality.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,
Please leave the mixed form and add this code to sweetdate-child/functions.phpCOPY CODEadd_action('wp_head','my_custom_act'); function my_custom_act() { remove_action('after_header_content','render_user_search'); }
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’ll do some tests and let you knowHi 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 probably a hosting problem. Try activating debug mode to see more wordpress errors. Set WP_DEBUG to TRUE in wp-config.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, you can install Paid Memberships Pro to restrict those areas. Set them from Sweetdate – Memberships after installation
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.AbeKeymasteradd this code to sweetdate-child/functions.php and modify it for your needs:
COPY CODE//send a welcome email when a user account is activated add_action('bp_core_activated_user','kleo_welcome_user_notification',10,3); function kleo_welcome_user_notification($user_id,$key=false,$user=false) { if(is_multisite()) return ;// we don't need it for multisite //send the welcome mail to user //welcome message $welcome_email = __( 'Dear USER_DISPLAY_NAME, Your new account is set up. You can log in with the following information: Username: USERNAME LOGINLINK Thanks! SITE_NAME' ); //get user details $user = get_userdata( $user_id ); //get site name $site_name = get_bloginfo('name'); //update the details in the welcome email $welcome_email = str_replace( 'USER_DISPLAY_NAME', $user->first_name, $welcome_email ); $welcome_email = str_replace( 'SITE_NAME', $site_name, $welcome_email ); $welcome_email = str_replace( 'USERNAME', $user->user_login, $welcome_email ); $welcome_email = str_replace( 'LOGINLINK', wp_login_url(), $welcome_email ); //from email $admin_email = get_site_option( 'admin_email' ); if ( empty($admin_email) ) $admin_email = 'support@' . $_SERVER['SERVER_NAME']; $from_name = $site_name;//from $message_headers = "From: \"{$from_name}\" \n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n"; //EMAIL SUBJECT $subject = sprintf(__('Welcome to %1$s '), $site_name) ; //SEND THE EMAIL wp_mail($user->user_email, $subject, $welcome_email, $message_headers); return true; }
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.AbeKeymasterWe fixed this. An update is coming tomorrow v3.2.1
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.AbeKeymasterYes that is the way it looks right now because of a template problem. We are doing our best to fix 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.December 23, 2013 at 15:00 in reply to: Search by city or by gender not bringing the rights search results. HELP! #8730AbeKeymasterThat is the way your profile fields are configured in Users – Profile fields. That is fine. But when you search you have to put the name users have typed.
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.AbeKeymasterof course 🙂
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.AbeKeymasterWe don’t know a plugin for that, sorry
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 because of your hosting configuration. Best way is to send mail from a SMTP server using a plugin like SMTP configure
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, That is a hook that just renders added content using add_action wordpress function.
Read more: http://codex.wordpress.org/Function_Reference/do_actionHi 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, Similar topic here: https://archived.seventhqueen.com/forums/topic/change-name-to-username
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 23, 2013 at 14:46 in reply to: How to install the theme updates once they are available? #8722AbeKeymasterHi, On a update you will loose existing theme files and will be replaced by new files. Always make a backup before updating.
You can update automatically from Wp Admin – Dashboard – Updates in you put your TF username and API key in Sweetdate – MiscellaneousManual update via FTP can be done, replacing all theme files with the new files downloaded from Themeforest. Theme files must have a style.css inside sweetdate folder(to make sure you are pasting the right files)
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.AbeKeymasterSimple solution:
add data-default-opened=”none” attribute to ul class=”accordion”
file: wp-content/themes/sweetdate/members/single/profile/profile-loop.php
result:COPY CODE<ul class="accordion" data-default-opened="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.AbeKeymasterTHanks @escort
also from admin->sweetdate->Memberships you change the order of the levelsHi 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, In what page is it looks “screwy”? Or all the pages are affected?
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 should search on bbPress forums to see how you can get them.
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 will increase for each matched value from the multiple values
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, in sweetdate/framework/functions/breadcrumb.php change in line 506 from $bp->displayed_user->userdata->display_name to $bp->displayed_user->userdata->user_login
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,
Easy job with the “header_profile_dropdown” filter. Add this to your sweetdate-child/functions.phpCOPY CODEadd_filter('header_profile_dropdown', 'my_profile_link'); function my_profile_link($links) { $links[] = '<li><a href="http://mydomain.com/help">Help</a></li>'; return $links; }
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 think the easiest way is to define a new Field Group and add there the field with the image. Use http://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ for image field
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,
Here is the file that handles facebook registration: sweetdate/framework/functions/facebook_login.php. It is a custom solution developed by us.This hook runs at registration:
do_action(‘fb_register_action’,$user_ID);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 need to hire a developer for this or do it yourself if you have PHP/MYSQL knowledge.
All searches go to the members page so you can add your script there. Template location: sweetdate/members/index.phpCheers
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 understand what you need but that isn’t available in Sweetdate. You need to hire a developer to create a custom page for you where users can see their recommended matchesCheers
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, That can’t be changed to depend on the BpAlbum plugin. It is a built-in functionality from Buddypress. Maybe search their forum
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.AbeKeymasterExtra sidebar can;t be changed like that. In functions.php search for kleo_extra_sidebar and modify the class there
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 right. Buddypress isn’t checking the default options at registration. Being related to Buddypress core it will not be an easy task to change the functionality
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.AbeKeymasterPlease disable the new Notifications component. We will 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---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.AbeKeymasterYou set the register form in Sweetdate – HOmepage. Set it to Mixed
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