Forum Replies Created
-
Author
-
SQadminKeymaster
Hi
The total depends on the text domain you are using … I guess.
The plural issue doesn’t make any senseHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Text added in those pages won’t show because they are mapped to buddypress components and will show only buddypress content.
To show content before you can edit buddypress specific templates if you like or use the existing hooks to add contentHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
That is how buddypress works and can’t be changed easily
Maybe it will be available in upcoming buddypress versions.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
We are working on a registration form to switch between the search form. It will be available these weeks in next updateHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterJust put the whole new code.
The line is no. 4 from the snippet.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
There is no setting for changing into square but I’ll give you a code snippet. You can paste it into Sweetdate/Styling options/Quick css box.COPY CODE.avatar, .attachment-shop_thumbnail, .carousel-profiles li, .carousel-profiles img, .buddypress.widgets ul.item-list .item-avatar, .buddypress.widgets .avatar-block .item-avatar { border-radius: 3px !important; }
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
I modified a line. It was interpreted wrong by the editorHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
You might check:
https://archived.seventhqueen.com/forums/topic/buddypress-not-showingHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterPlease check not to be a hosting problem.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Indeed, by default Buddypress doesn’t allow you to set visibility options to Name field.
To achieve that you can add this piece of code into your sweetdate-child/functions.php file(you need to activate the child theme)COPY CODEadd_filter(‘bp_xprofile_get_hidden_fields_for_user’,'bp_define_hidden_fields’, 10 ,3 ); function bp_define_hidden_fields( $hidden_fields, $displayed_user_id, $current_user_id ) { //if not admin or if not the the profile of the current userif if ( !is_super_admin( $current_user_id) AND ($displayed_user_id != $current_user_id) ) { //add name field ( id = 1 ) to the hidden fields $hidden_fields[] = 1; } return $hidden_fields; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI think it’s ok now, you can change your password.
Best regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterCan you send me a temporary username and password at themesupport@seventhqueen.com?
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi kash101,
You need to put your content with class “twelve columns” width in “row” class. In fact this is how Foundation grid works.
Ex:
[kleo_one]
[kleo_status_icon type="total" subtitle="Members in total"]
[kleo_status_icon type="members_online" subtitle="Members online"]
[kleo_status_icon type="women_online" subtitle="Women online"]
[kleo_status_icon type="men_online" subtitle="Men online"]
[/kleo_one]
Best regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIf you added it in sweetdate-child/functions.php it should work
Anyway that was an example how to replace the form. Another one is to modify the way you like the form template:
page-parts/home-search-form.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Please download the whole package again from Themeforest and replace your existing theme files.
Also make a backup of the old files just in case.
Seems to be a problem at TF not recognizing the new 1.4 versionHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
We’ll look into this and let you knowHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
I see that you have different values in the Sex and Looking for selects
They should be the same: Moškega and Moški in order for the search to workAlso is the same topic as this one:
https://archived.seventhqueen.com/forums/topic/research-dont-workHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi rugwarrior,
Foundation 4 was rebuilt from the ground and there are significant differences between 3 and 4.
Sweetdate is build on Foundation3 and you have specific docs here http://foundation.zurb.com/old-docs/f3/Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
There are two pictures, one from Sweetdate/Homepage tab http://d.pr/i/Q9Vd that you need to remove and one from Sweetdate/Layout settings tab – Boxed background type that you already changed.Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Add this to sweetdate-child/functions.php to in the remov actions function:remove_filter( ‘bp_get_the_profile_field_datebox’, ‘custom_bp_datebox’,10,7);
Then, bellow add this:
COPY CODEfunction my_custom_bp_datebox($html, $type, $day, $month, $year, $field_id, $date) { $current_year = date("Y"); $allowed_year = $current_year - 13; if($type == 'year'){ $html = '<option value=""' . selected( $year, '', false ) . '>----</option>'; for ( $i = $allowed_year; $i >= 1920; $i-- ) { $html .= '<option value="' . $i .'"' . selected( $year, $i, false ) . '>' . $i . '</option>'; } } return $html; } add_filter( 'bp_get_the_profile_field_datebox', 'my_custom_bp_datebox',10,7);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Try giving read permissions. Check with your hostingHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi stevhong,
You can remove that PNG image from admin: Sweetdate/Homepage tab/Home image and remove background.Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAbout the search. How it is not working? On our demo it works
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Try to download the package from TF and rewrite the files. We will see if there is a problem with auto updater.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
You don’t have to add that function for the translation to work.
Those notices can be ignored. What exactly isn’t working?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi twoshoes,
We will look into this and we will get back soon with an answer.Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe’re glad we could help
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Those two pop-up templates are:
../themes/sweetdate/page-parts/general-login-modal.php and
../themes/sweetdate/page-parts/general-register-modal.phpYou can change icon class within “i” tag http://d.pr/i/Qcmd with your preferred icon class. You have a full list of classes here: http://fortawesome.github.io/Font-Awesome/cheatsheet/
ps: thanks for your kindly words 😉
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi Claudio,
I think we forgot about that pink colors from popups, we will fix this in next update. Until then you can change colors applying directly in admin Sweetdate/Styling options/Quick css box like this:COPY CODE.reveal-modal .pink-text { color: #1eb6c7; }
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi stevhong,
1. Under Settings/BuddyPress/Pages at registration section you need to assign your Register page to buddypress Register page.
2. You can define custom fields from Users/Profile Fields.
Fields in the “Base” group will appear on the signup page.ps: Looking to your site “User registration is currently not allowed.” – go to Settings/General and tick Anyone can register.
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We already tested 1.8 and seems to be ok. Also we install it on http://seventhqueen.com/demo/sweetdatewp/ to be tested from all users.You can login with user “demo” and password “demo”.
Regards,
RobertHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
I was telling you that the options are different in the 2 select fieldsYou can remove the searching for option and only leave the gender one. Also deselect it from the matching fields in Sweetdate – Buddypress
You can remove the searching for field also from user profilesHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSeems like php files can’t be accessed even they exists. Has to be something miss configured on your install… maybe the htaccess is restricting acces to them or something from the server
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Try making them !imporfant
But it should work without too.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYes please do a manual update via FTP untill we test the issue.
Thank you.
Make sure to backup data just in caseHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
I saw that the option from Sex and Looking for fields are differentIn one you have femme and in the other you have une femme
For the search to match the fields they gotta have same optionsAlso set the matching fields under Sweetdate – Buddypress
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
Is this the correct link to the theme?
http://norskmodell.no/wordpress/wp-content/themes/sweetdateHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Budypress by default it gets only the fields in the Base groupHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThe shortcode uses buddypress function for that count so it should report the same…
Adding others users to the group changes something?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi
You need to change this in header.php
You’ll need to replace the existing line:COPY CODE<title ><?php wp_title( '|', true, 'right' ); ?></title >
Also do not modify main theme file. Use the included child theme.
Copy header.php to sweetdate-child/header.php and do the changes thereHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts