-
Author
-
June 28, 2018 at 01:51 #202214vladislavParticipant
Hello.
1) I just registered as a usual user and received a confirmation e-mail. After I clicked a link I was redirected to the website where I pushed “activate” button. After that, I was redirected to a blank page with 404. Why? I want people to be sent after login to the main page or to their profiles. How can I achieve that?
Also, I could not see new member’s avatar in the “newest” members list on the front page. RIght now there are only three admin users, but there must be one more which is called Zveru. You can find login and password for regular user Zveru amoung “private details” The avatar of the user Zveru must be seen among others! So, fix this problem too
2) How can I create something like Profile’s image gallery for users? Right now all users could upload only one profile photo, but I want there could be a bunch of them. You can see something like that in many dating websites: when you click on the profile photo – it opens a list of slides in the square window
3) I want my previous question will be answered. Can you tell me when it could be? It is very important to me, but you guys do not give me the answer for a long time. Soon it will be a week since I started the previous topic. This sad problem stops me to starting my website. I talking about problems with Facebook login and with SSL.
June 28, 2018 at 21:33 #202330LauraModeratorHello,
1- make sure the correct pages are set at Settings – Buddypress and check the plugin Peter’s login redirect
Your users won’t show at new users or at the directory until they login, activation is not login
2-you can use rtmedia for an algún at their profiles
3-we are working at the Facebook issue, what is the SSL issue you have?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
June 28, 2018 at 22:37 #202344vladislavParticipant2)
a) How can I remove the message “OOOPS! There is no message find upon request, while uploading new images? (screenshot 1)
b) How to rename “Media” tab in the user Profile to a “Photos” and forbid to upload Video? (screenshot 2)
c) I want to put other already uploaded images (or their preview) on the right side from profile picture (there is a lot of empty space). Maybe there is some photo plugin for that?
3) Ok, thanks! The other guy helped me with Facebook and SSL problem already.
June 30, 2018 at 00:05 #202428LauraModeratorHello, for
2-
a) Add this to style.css of child themeCOPY CODEp.rtmedia-no-media-found { display: none !important; }
b) Changed it using Loco Translate
c) Go to sweetdate – Profile tabs to activate the tabs you want to useHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
June 30, 2018 at 01:38 #202441vladislavParticipantThanks for some answers, but one question you miss.
c) I want to put other already uploaded images (or their preview) on the right side from profile picture (there is a lot of empty space). Maybe there is some photo plugin for that?
As you can see from the screenshot of your own promo (attached), your Media tab is named “My Photos” (how actually? the way you already described?)
and several photo previews are placed on the right side of the profile picture. How can I do the same?Is it a way to place their pictures without putting all profile tabs there?
Attachments:
You must be logged in to view attached files.June 30, 2018 at 18:29 #202492Kieran_SQModeratorHi,
As per Laura’s reply to C you need to go to WP Admin > Theme Options > BP Profile Tabs. Toggle the feature to on, check the box for rtMedia and enter a label (My photos) for the box. Save and clear cache(s) to see changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
Attachments:
You must be logged in to view attached files.June 30, 2018 at 19:28 #202502vladislavParticipantThanks! It works! Can I somehow put button “upload” for images near the profile picture? The two places where this button will look nice I show you in the screenshot.
Attachments:
You must be logged in to view attached files.June 30, 2018 at 20:40 #202508Kieran_SQModeratorHi,
There isn’t actually a theme hook there so it would be quite difficult and complex to add to. You can however make use of the hook kleo_bp_header_actions which will add code (a button) to right of the image where you would see ‘Add Friend’, ‘Public Message’ and ‘Private Message’.
Try adding the below snippet to your SweetDate Child theme’s functions.php file via WP Admin > Appearance > Editor > SweetDate Child > Functions.php
Note: This snippet must be copied from the ticket and not the email otherwise formatting will be lost and cause errors.
COPY CODEfunction sqk_add_upload_photos_to_member_header_meta() { $link = home_url('/members/' . bp_core_get_username(get_current_user_id())); if (is_user_logged_in() && bp_is_my_profile()) { echo '<div class="generic-button" id="upload-photo-button-1"><a href="' . $link . '/media/" id="photo-1">Upload Photos</a></div>'; } } add_action('kleo_bp_header_actions', 'sqk_add_upload_photos_to_member_header_meta');
This code checks that the user is logged in and that the user is viewing their own profile – if these two conditions are met it will echo the HTML for a button in the meta area (buttons area to the right of the image). When the button is clicked the user will be redirected to the domain.com/members/username/media/ page where they can use the rtMedia uploader.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 30, 2018 at 21:17 #202512vladislavParticipantThanks. Almost what I wanted. But can you improve this button a little?
1) The buttons ‘Add Friend’, ‘Public Message’ and ‘Private Message’ are disappeared. And for now, it is only one button at this place “Upload Photos”… Can there will all 4 buttons together?
2) Can you make this “Upload photos” button dark blue? I want it would be not like others…
3) When I click “Upload photos” button – the media library is opened for uploading new images, but visitors could not understand that, because they do not see what really happened. Because it happened below visible screen. Can this “Upload photos” button work like anchor link? So when user click it – the page scroll it down to the right spot of the page?
Attachments:
You must be logged in to view attached files.June 30, 2018 at 21:31 #202517Kieran_SQModeratorHi,
1. The buttons have not disappeared. You’re viewing your own profile and therefore they’re not rendered because you cannot add yourself as a friend and it is unlikely you’ll ever want to click the buttons to @mention or private message yourself.
You can test this by checking your profile and the profile of another member. Then remove the code and check the profiles again.
2. You can customize the colors used for the button with the below CSS
COPY CODEa#photo-1 { color: white !important; background-color: darkblue !important; }
3. Yes, in the code simply add #main to the end of the URL after the /media/
Updated example below
COPY CODEfunction sqk_add_upload_photos_to_member_header_meta() { $link = home_url('/members/' . bp_core_get_username(get_current_user_id())); if (is_user_logged_in() && bp_is_my_profile()) { echo '<div class="generic-button" id="upload-photo-button-1"><a href="' . $link . '/media/#main" id="photo-1">Upload Photos</a></div>'; } } add_action('kleo_bp_header_actions', 'sqk_add_upload_photos_to_member_header_meta');
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
June 30, 2018 at 21:49 #202523vladislavParticipantThank you very much! You give great help today! You can close this ticket:)
June 30, 2018 at 21:51 #202524Kieran_SQModeratorHi,
Great, glad this is all working now. I will close this ticket for you.
All the best,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
-
AuthorPosts
You must be logged in to reply to this topic.