Forum Replies Created
-
Author
-
April 16, 2014 at 01:28 in reply to: "Submit" (for replying) button missing from Forums(mobile only) #15214AfrosteinParticipant
Great, will really appreciate it!
AfrosteinParticipantWe don’t have any posting problems or button problem there. Just the bad view on the activity feed if someone comments like photo-3.png in my previous post.
AfrosteinParticipantWe have to use it. It’s part of SweetDate and it looks great on a desktop 🙂 Just need it to do the same on mobile.
AfrosteinParticipantalso, how can we make the profile and group pictures smaller. Se the religion picture above. To big on smartphone screen.
We have 2 problems. (1) the scrambled words and (2) some pages seem to be too big on mobile
Thanks.
AfrosteinParticipantHello we have this same issue. We applied the code but it still shows the age of members in the members listing. Profile setting is already default: Only Me.
Another way to fix this? Thanks.
AfrosteinParticipant@jdtoppin Thanks. I wish that was the issue. We’re trying everything but still the same problem. Will try uninstalling the plugin W3 Total Cache now and reinstall it.
AfrosteinParticipantIs there anyway within Sweetdate to do this without another plugin. Your answer above was before the latest release of Sweetdate. (2.4)
AfrosteinParticipantI’m not seeing a “Submit” button on my Activation page after activation e-mail link is clicked) (only Log in and Sign Up buttons) Any ideas on why this is happening?
Thanks.
AfrosteinParticipantHello,
I’m people are having a problem after the activation e-mail. The e-mail works fine and then takes them too the memberships level page where they select their membership and click the box to agree to terms.
Problem: after clicking box and pushing the login button it takes them to Create An Account page again. How do I get it to stop this 2nd Create an Account page and go straight to their profile after selecting their membership? Thank you.
AfrosteinParticipantI found these strings, but none of them allow editing. They say “bother” and should say “brother.”
Any more ideas.
13 wp-content/themes/sweetdate/feedback-no-topics.php <p><?php _e( ‘Oh bother! No topics were found here!’, ‘bbpress’ ); ?></p>
13 wp-content/themes/sweetdate/feedback-no-search.php <p><?php _e( ‘Oh bother! No search results were found here!’, ‘bbpress’ ); ?></p>
13 wp-content/themes/sweetdate/feedback-no-replies.php <p><?php _e( ‘Oh bother! No replies were found here!’, ‘bbpress’ ); ?></p>
13 wp-content/themes/sweetdate/feedback-no-forums.phpAfrosteinParticipantHi Abe,
Thanks so much for looking into this. I’m not sure how else to restate the problem. The issue is how can users create their own groups. 1 week ago it was easy. Just click on Groups in the profile (lower) level buttons and it went to the groups page where all groups were listed and the Create a Group button appeared. How does a user (or you when you logged in) get directly to the Create A Group button from the user profile without entering /groups into the browser?
Thanks.
AfrosteinParticipantHello @wisinyyandel7 Terms and Conditions and Privacy Policies are usually written by lawyers or those with legal knowledge. (here in the United States) I’m not sure about other countries, because the laws about privacy and other civil matters are not exactly the same.
Hello @harryshapes I fixed my problem…or maybe it fixed itself… I don’t know. 🙂 Anyway, I did what you did but also do this: Memberships- Advanced Settings- scroll down to “Require Terms of Service at sign up?” select your Terms of Service page from the drop down music and hit “save settings”
Hope this helps both of you. Good luck.
AfrosteinParticipantHi Abe. I understand everything you said. Per my last e-mail item #5 I have already gone into Wp Admin-Settings-Pages. User Group field assigned to “Groups” page. Also, under Wp Admin-Settings-Buddypress-Settings “allow all users to form groups” is enabled. Sending private link now. Thanks.
AfrosteinParticipantHey Abe,
Tried everything. Even a complete reinstall last night. No change. As it stands now
1) Admin can create groups
2) “Groups” page exists under (WP > Pages) Quick view shows the page with the groups and the Create A Group button.
3) When clicking on the “Groups” button from the profile (lower row of buttons) instead of pointing to mydomain.com/groups it points to “mydomain.com/members/username/activity/groups/”
4) Deactivated and reactivated each plugin individually
5) All settings are set to allow user to create groupsAny ideas on a fix? Thanks.
AfrosteinParticipantAbe,
I re-posted a few question because where I originally posted before said the issues were “resolved” and I could not change that status. (so maybe that’s why they were going unanswered) Thanks.
AfrosteinParticipantHi Studiblog,
I was going to to update it today with that plugin. But it says it’s only compatible up to WP 3.5.2 (we’re on WP 3.8 now)
AfrosteinParticipantHello,
I used the above CSS code to remove the RSS icon in groups. Good!
Do we also have to add any additional code to actually stop the RSS feed from happening? Is removing those icons enough? I agree with what studiblog said in his post about it being a security (or privacy) concern for members. The plugin he mentioned is not compatible with WP 3.8 according to that link. Thanks.
AfrosteinParticipantHello,
I’ve found the code on here in the forum to have the terms and conditions check box appear in the blue registration box on the homepage. Good!
But, when I go into SweetDate> Misc>Terms and Conditions to assign a page for the terms and conditions…whatever page I select it never shows the Terms of Service page. It always just shows the Create an Account page. How do I get it to go to the Terms of Service page so people can read it? Thanks.
AfrosteinParticipantalso the “group directory” does not show up for user or admin…just noticed this.
The only code I added under function.php is:
*/
{
remove_action(‘kleo_bp_before_profile_name’, ‘kleo_bp_compatibility_match’);
}
//remove feeds
function bp_remove_feeds() {
remove_action( ‘wp’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘wp’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘wp’, ‘groups_action_group_feed’, 3 );
}
add_action(‘bp_include’, ‘bp_remove_feeds’);
add_action(‘after_setup_theme’,’kleo_my_hearts_actions’);function kleo_my_hearts_actions()
{
/* disable matching on member profile */
remove_action(‘kleo_bp_before_profile_name’, ‘kleo_bp_compatibility_match’);/* Replace the heart over images */
add_filter(‘kleo_img_rounded_icon’, ‘my_custom_icon’);/* Replace the heart from register modal */
add_filter(‘kleo_register_button_icon’, ‘my_custom_icon_register’);/* Replace the heart from About us widget */
add_filter(‘kleo_widget_aboutus_icon’, ‘my_custom_icon_about_widget’);
}/* Replace the heart with a camera icon function */
function my_custom_icon () {
return ‘camera’;
}/* Replace the heart from register modal with a user icon function */
function my_custom_icon_register () {
return ‘user’;
}
/* Replace the heart from about us widget with a user icon function */
function my_custom_icon_about_widget () {
return ‘user’;
}
/* Filter the redirect url for login*/
add_filter(“login_redirect”,”kleo_redirect_to_profile”,100,3);
function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
/*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
if(!is_super_admin($user->ID))
return bp_core_get_user_domain($user->ID );
else
return $redirect_to_calculated; /*if site admin*/
}AfrosteinParticipantIs there a line of code or some other method to get it functioning correctly? I really don’t want to re-install the theme for this one issue. Status:
1) Plugins in use
a) Woocommerce
b) bbpress
c) buddy press
d) contact form 7
e) W3 Total Cache
f) Paid Memberships Pro
g) WordPress Importer2) Group Creation checked and enabled under Settings> Buddypress
3) Under WP Admin>Pages>Groups>View I see the Create a Group button
AfrosteinParticipantYes, it’s enabled. Will check plugins. Now it’s not showing up for Admin!
Now only shows up for admin if I go Profile scroll down to Groups then select Create a Group.
AfrosteinParticipantRight Abe, but it’s not showing up for users.
1) Shows up for Admin (yes)
2) Shows up for users (no)it use to show last week for users too…has disappeared now.
AfrosteinParticipantHello,
I’m having this problem as well. Users can’t create groups even though I have that enabled. But, the admin can create groups. When I “view page” through the Dashboard in ‘Pages’ I see the Create a Group button there.
Suggestion for a fix?
Thanks.
-
AuthorPosts