Forum Replies Created
-
Author
-
Abe
KeymasterGlad it works.
Don’t forget to rate our theme *****
Thanks
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.Abe
KeymasterWOW great 🙂
Unfortunately those are generated by Buddypress. please refer to WPML forum and maybe they have a solution
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.Abe
KeymasterSorry but I don’t understand what you are trying to achieve. Please put a image with pointers to what you need and where
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.Abe
KeymasterAnother options would be to hire a developer from sites like microlancer.com
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.Abe
KeymasterBy default you can’t and you have to extend that functionality by copying the function kleo_status_icon from wp-content\themes\sweetdate\custom_buddypress\bp-functions.php to your child theme functions.php file
I hope you understand that this is a custom work which requires programming skills and a dedicated amount of time that isn’t covered by our support team.
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.Abe
KeymasterHello, similar topic here? https://archived.seventhqueen.com/forums/topic/total-member-number-mismatch
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.Abe
KeymasterHi, That could come from a custom code of yours.. maybe to hide the admin members.
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.Abe
KeymasterHi, Can you try doing the same thing on our demo site? http://seventhqueen.com/demo/sweetdatewp/members/demo/
It seems to behave normaly there. Also try to see if you have installed any plugin that might interfere.
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.Abe
KeymasterFor that you have to add this CSS to Sweetdate – Styling options – QUick css
COPY CODE.search-item .date, .search-item .date a {color: black;}
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.Abe
KeymasterHello, We are going to fix this and release it in our next update. Thank 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.Abe
KeymasterHello,
You need to edit the template that generated the popup, which is in sweetdate/page-parts/general-register-modal.php and just remove this part:COPY CODE<div class="six columns"> <input type="text" id="fullname" name="field_1" class="inputbox" required placeholder="<?php _e("Your full name", 'kleo_framework');?>"> </div>
I am glad you like our theme. Thank you
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.Abe
KeymasterHI,
To hide the activity you should add this CSS to Sweetdate – Styling options – Quick css:COPY CODEspan.activity {display:none}
If you want to change shortcode functionality you need to copy the function named kleo_status_icon from sweetdate/custom_buddypress/bp-functions.php to you child theme functions.php and modify as you wish there.
As attributes he can have the ones from bellow with the default values
‘type’ => ‘total’,
‘image’ => ”,
‘subtitle’ => ”
Type can be the field value of the Sex field you set in Sweetdate – BuddypressHi 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.Abe
KeymasterHi, I don’t think that is our theme 🙂
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.Abe
KeymasterHi, Try leaving your name of the groups in English. Then modify the below code to match your group names and add it to the main theme functions.php at the end just before the ending ?> line
After that this strings should appear in WPML string translation
You’ll notice I have wrapped the name attribute in a translation tag __() and leaved the group attribute in the english name just like it is added in buddypress users profile fieldsCOPY CODE//my changes to profile tabs add_action('after_setup_theme','kleo_my_custom_tabs'); function kleo_my_custom_tabs() { global $bp_tabs; $bp_tabs = array(); $bp_tabs[] = array( 'type' => 'regular', 'name' => __("About me","kleo_framework"), //this is the showed tab name 'group' => 'About me', // this must be the same as the profile fields group name 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => __("Myself Summary", "kleo_framework"), 'group' => "Myself Summary", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => __("Looking for","kleo_framework"), 'group' => "Looking for", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => __("Lifestyle","kleo_framework"), 'group' => "Lifestyle", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => __("Physical","kleo_framework"), 'group' => "Physical", 'class' => 'regulartab' ); /* 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' ); } }
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.Abe
KeymasterHello,
Unfortunately the systems aren’t connected by default and this requires considerable amount of work to be achieved, which is not under the scope of this support forum. If you need to extend that functionality you can hire a developer.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.Abe
KeymasterHi @Pat2013, Your problem is related to HTTPS also?
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.Abe
KeymasterHi @studiblog,
Please give us access to your ftp server to do some tests.
Mark the reply as privateHi 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.Abe
KeymasterHi, You could talk to your hosting and see if it is related to their config. After you save the Permalinks a file named .htaccess is created in the root of your site. Check if it has access to write it.
For Buddypress to work it has to be configured with pretty permalinks like Post name in the settings 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.Abe
KeymasterHi, Each page will add a different class to the body tag. You can reference it in you CSS to and add a white background
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.Abe
KeymasterHello, Really nice. Thank 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.Abe
KeymasterHi, Add this CSS please
COPY CODE.widgets-container.sidebar_location .widgets ul li:before { content: ""; } .widgets-container.sidebar_location .media-tabs-container .rt-media-tab-panel ul li {width:auto;}
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.Abe
KeymasterHi, I did a function to count all members that have profile fields added
Add it to your sweetdate-child/functions.php and then put the function name like I said aboveCOPY CODE//My total numbers function my_total_count() { global $wpdb; $sql = "SELECT ".$wpdb->base_prefix."bp_xprofile_data.user_id FROM ".$wpdb->base_prefix."bp_xprofile_data JOIN ".$wpdb->base_prefix."bp_xprofile_fields ON ".$wpdb->base_prefix."bp_xprofile_data.field_id = ".$wpdb->base_prefix."bp_xprofile_fields.id $where"; $match_ids = $wpdb->get_col($sql); return count($match_ids); }
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.Abe
KeymasterThis is obviously not a theme issue since it worked before in your environment. You should send the emails trough the SMTP server, check the logs on your server for any problems related to email, disable any plugins that might affect this
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.Abe
KeymasterHere is the code:
COPY CODE//my changes to profile tabs add_action('after_setup_theme','kleo_my_custom_tabs'); function kleo_my_custom_tabs() { global $bp_tabs; $bp_tabs = array(); $bp_tabs[] = array( 'type' => 'regular', 'name' => "Лични данни (About me)", //this is the showed tab name 'group' => 'Лични данни (About me)', // this must be the same as the profile fields group name 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => "Обобщение за мен (Myself Summary)", 'group' => "Обобщение за мен (Myself Summary)", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => "Търся (Looking for)", 'group' => "Търся (Looking for)", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => "Стил на живот (Lifestyle)", 'group' => "Стил на живот (Lifestyle)", 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => "Физически данни (Physical)", 'group' => "Физически данни (Physical)", 'class' => 'regulartab' ); /* 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' ); } }
For it to work the names added above in the “group” attribute must exactly match the profile fields Group as in Users – Profile fields(even a white space after the name)
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.Abe
KeymasterHi, I suppose you need to make the image from the photo editing software you are using, eq Photoshop
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.Abe
KeymasterHey, Sorry for the delay. I will get back right away with the code for you
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.Abe
KeymasterThanks @adam 🙂
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.Abe
KeymasterHi, Try adding this CSS to Sweetdate -Styling options – Quick css
COPY CODE.front-form-button { background: white ! Important;}
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.Abe
KeymasterYou just add that code to your functions.php file inside the theme folder
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.Abe
KeymasterGlad you figured it out
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.Abe
KeymasterHi, That is not available
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.Abe
KeymasterHi,
This are the atributes and the default values if they are not specified:‘type’ => ‘total’,
‘image’ => ”,
‘subtitle’ => ”,
‘class’ => ”The type attribute can have a profile field value like “Man” to count all users that are man. Also set the sex field in Sweetdate – Buddypress for this to 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.Abe
KeymasterStrange 🙂
in custom_buddypress/bp-functions.php try replacing
bp_get_total_member_count() with
bp_core_get_total_member_count()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.Abe
KeymasterBuddypress profile page styling is found under Sweetdate – Buddypress
Cheers
AbeHi 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.Abe
KeymasterBuddypress counts them by different critearia, if they logged in and have activity info. You should see how many appear in the members directory because that is the correct number
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.Abe
KeymasterHi, Please try with the default WordPress theme and see if it is the same behaviour
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.Abe
Keymasterhi, There were some topics about this and it seems that profile values can’t be translated by WPML. You should ask them maybe they have a solution for 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.Abe
KeymasterHi, You set restrictions from Sweetdate- Memberships for Buddypress pages.
Every post/page has a box to apply restrictions also.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.Abe
KeymasterHi,
You should search for a plugin since there is only the default buddypress functionality on activity listingHi 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.Abe
KeymasterHello,
I guess you don’t have the String translation plugin in the lowest version, which means that it is possible you won’t be able to translate some stringsHi 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