Forum Replies Created
-
Author
-
jenny555Participant
Hello,
1) remove in your css
`#groups .six.columns:nth-child(2n+1) {
clear: right;
}`
2) look for the “shortcode” that displays the groups in your homepage and replace it with[kleo_section centered=1]
[kleo_row][kleo_one][kleo_h2]Find a Travel Cuckoo Meet Up Group[/kleo_h2][/kleo_one]
[kleo_row][kleo_one][kleo_h4]Looking for other travelers in your area? Traveling somewhere you’re not familiar with? Get the details from a Travel Cuckoo Meet Up Group.[/kleo_h4][/kleo_one]
[kleo_recent_groups]
[/kleo_row]
[/kleo_section]
jenny555ParticipantHi jwchameleoncor,
Currently, your group appear better than before, but not as it should. Do as I tell you and normally they will display correctly.
1) remove the lines that I have said to you in your style.css
2) Open your home page and look at the shortcode that displays the groups (at the bottom).
I board before handling copy / paste the entire page into a file not to lose the layout, if it does not suit youhere’s shortcode as should be. by entering your text, you’ve probably change something. Either you replace your one. is looking for the errors and correcting them (if you’re afraid to make a bad manipulation).
Sorry, for the other questions, I don’t know.
[kleo_section centered=1]
[kleo_row][kleo_one][kleo_h2]Find a Travel Cuckoo Meet Up Group[/kleo_h2][/kleo_one]
[kleo_row][kleo_one][kleo_h4]Looking for other travelers in your area? Traveling somewhere you’re not familiar with? Get the details from a Travel Cuckoo Meet Up Group.[/kleo_h4][/kleo_one]
[kleo_recent_groups]
[/kleo_row]
[/kleo_section]
jenny555ParticipantHello Laura.
Wow, you are great! really! thank you for the considerable work that you do! I shall have wanted help to relieve you a little, but I am still not able and my English is bad. but if you need anything, I’m here.I think if you have not been able to enter in the admin, it is because the “goodbyeaptchka” plugin. I turned off, you should normally have access.
Now I will test all this.And especially when you have a little more time, could you help me put the buddypress menu like as kleo ( with icons)…? Thank you, I wish you good luck. 😉
jenny555ParticipantI think the problem is the shortcode in the home page.
can you copy / paste here the shortcodes of your homepage?
I try to help you. (not at private reply, because I’m not a moderator)
(you can delete what I have told you to stick in the css)jenny555ParticipantHi,
try this in your style.css (child)COPY CODE#groups .six.columns:nth-child(2n+1) { clear: right; }
jenny555Participantjenny555ParticipantHi,
Go to your admin panel -> Sweetdate –> Miscellaneous and check your username and API key ThemeForest are correct.
you can have your username and API key by logging on themeforest.net. In the top menu, do a roll over on your username and click settings. Bottom left you will find your API key.
Regardsjenny555ParticipantMake sure you do not leave an open file (wp-config, .htaccess …) with your ftp, because both files are open, you can do this kind of problems (because the old file overwrites the new).
check your wp-config is correct, if changed, close it and open it again, but be careful to check your ftp (delete the local file, download and open again). If this does not help, try the file
htaccess, php ini …
Regards,
jennyjenny555ParticipantI also wrote this message: https://archived.seventhqueen.com/forums/topic/sweetdate-wider-grafic
you can answer me here.
thanksjenny555Participantwow !, I will like to have the same thing in sweetdate! also “quick navigation” in kleo is so cool! would well fit into the sweetdate.
jenny555ParticipantHi,
1) to order the menu buddypress, download the attached plugin.
2) you can use loco translate to rename the tabs.
3) for adding tabs, there are plugins, but they are no longer updated. the plugin I mentioned at the beginning, did whatever you wanted, but it no longer works with the latest versions of buddypress (the name of the plugin is: BP custom menu profile).
Bye!Attachments:
You must be logged in to view attached files.jenny555ParticipantHi, If you have not found a plugin, follow this LINK, sqadmin and abe have explained how to change the “Buddypress” menu.
jenny555ParticipantHi, I know that there is a buddypress extension that does this, but I do not remember where it is. looking into wordpress extentions.
August 18, 2015 at 00:27 in reply to: How to use default man avatar and women avatar of my image files ? #73496jenny555ParticipantHello Laura, problem solved! it works!
Here is the solution for members who have the same problem as me …
We do need to change, “I am a” and “Man” in your language (case sensitive). Then, this blocking, it is the “SECU.” before url in the code. I deleted it and it works.
Here are the correct code. But I have more questions then I’ll open another topic. In the meantime, thank you.COPY CODE//Avatar default add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' ); function myavatar_add_default_avatar( $url ) { global $bp; $gender = xprofile_get_field_data('Je suis', bp_get_member_user_id()); if ($gender == "Un Homme") { return $img_url = '/wp-content/uploads/2015/08/avatarh.png'; } else { return $img_url ='/wp-content/uploads/2015/08/avatarf.png'; } } add_filter( 'bp_core_mysteryman_src', 'myavatar_add_default_avatar' ); add_filter( 'bp_core_default_avatar_user', 'myavatar_add_default_avatar' );
jenny555ParticipantHello Laura,
yes i have the french language activated. I tried what you told me to do, but it doesn’t work. Here is my functions file:COPY CODE<?php /** * @package WordPress * @subpackage Sweetdate * @author SeventhQueen <themesupport@seventhqueen.com> * @since Sweetdate 1.0 */ /** * Sweetdate Child Theme Functions * Add extra code or replace existing functions */ //Avatar default add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' ); function myavatar_add_default_avatar( $url ) { global $bp; $gender = xprofile_get_field_data('Je suis', bp_get_member_user_id()); if ($gender == "Homme") { return $img_url = SECU.'/wp-content/uploads/2015/08/avatarh.png'; } else { return $img_url = SECU.'/wp-content/uploads/2015/08/avatarf.png'; } } add_filter( 'bp_core_mysteryman_src', 'myavatar_add_default_avatar' ); add_filter( 'bp_core_default_avatar_user', 'myavatar_add_default_avatar' ); //manual total members add_filter( 'bp_get_total_member_count', 'kleo_my_total_members' ); function kleo_my_total_members($number) { $number = str_replace(".","",$number); return 1284; } //manual number online members add_filter( 'kleo_online_users_count', 'kleo_my_online_users', 10, 2); function kleo_my_online_users($number, $value) { switch ($value) { //ALL MEMBERS ONLINE case FALSE: return '195'; break; case "Woman": return $number+51; break; case "Man": return $number+134; break; default: return $number; break; } } ?>
what doesn’t work? Also I didn’t understand what I have to change in the homepage. Thanks
Note : Please do not reply to the another post, thanks
August 16, 2015 at 01:46 in reply to: How to use default man avatar and women avatar of my image files ? #73188jenny555ParticipantHello Laura,
yes i have the french language activated. I tried what you told me to do, but it doesn’t. Here is my functions file:COPY CODE<?php /** * @package WordPress * @subpackage Sweetdate * @author SeventhQueen <themesupport@seventhqueen.com> * @since Sweetdate 1.0 */ /** * Sweetdate Child Theme Functions * Add extra code or replace existing functions */ //Avatar default add_filter( 'bp_core_fetch_avatar_no_grav', '__return_true' ); function myavatar_add_default_avatar( $url ) { global $bp; $gender = xprofile_get_field_data('Je suis', bp_get_member_user_id()); if ($gender == "Homme") { return $img_url = SECU.'/wp-content/uploads/2015/08/avatarh.png'; } else { return $img_url = SECU.'/wp-content/uploads/2015/08/avatarf.png'; } } add_filter( 'bp_core_mysteryman_src', 'myavatar_add_default_avatar' ); add_filter( 'bp_core_default_avatar_user', 'myavatar_add_default_avatar' ); //manual total members add_filter( 'bp_get_total_member_count', 'kleo_my_total_members' ); function kleo_my_total_members($number) { $number = str_replace(".","",$number); return 1284; } //manual number online members add_filter( 'kleo_online_users_count', 'kleo_my_online_users', 10, 2); function kleo_my_online_users($number, $value) { switch ($value) { //ALL MEMBERS ONLINE case FALSE: return '195'; break; case "Woman": return $number+51; break; case "Man": return $number+134; break; default: return $number; break; } } ?>
what doesn’t work? Also I didn’t understand what I have to change in the homepage. Thanks
August 13, 2015 at 20:14 in reply to: How to use default man avatar and women avatar of my image files ? #72903jenny555ParticipantHi, i try it, but it doesn’t work for me. I also have a problem with the display of women online and men online in homepage doesn’t work well, this may be related. Can you help me please?
-
AuthorPosts