Forum Replies Created
-
Author
-
Santos RamosParticipant
Thanks Radu, But that did not work.
I installed Paid Memberships Pro – bbPress Add On but I don’t see how to set the privacy.
I went to forums, click edit and I only see require membership but that does not do anything and the forums still open to the public.
Attachments:
You must be logged in to view attached files.Santos RamosParticipantThanks Laura,
Paid Memberships Pro is the problem.
I deactivated all the plugins and when I activate Paid Memberships Pro I get the blocked blog.
If I go to Paid Memberships Pro and unselect blog, the blog still blocked.
Can you please help!
Thanks,
SantosAttachments:
You must be logged in to view attached files.Santos RamosParticipantThanks,
Thats works but now I get the 404 error when I click on the forums
I though it would redirect to the membership page if you are not logged in?Attachments:
You must be logged in to view attached files.Santos RamosParticipantThanks for the help.
Now I understand how the membership works!About the blog.
I would like the blog to be viable by anyone!
Right now I need to login to be bale to see the blog.The blog is not locked to the free membership.
How can I fix this?
Thanks!
Santos RamosParticipantHere is the code I added to the child theme, I’m not sure is the code is the problem.
<?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
*/add_action(‘after_setup_theme’,’kleo_my_actions’);
function kleo_my_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 ‘edit’;
}
/* Replace the heart from about us widget with a user icon function */
function my_custom_icon_about_widget () {
return ‘user’;
}/**
* Sweetdate Child Theme Functions
* Login no spaces code
*/add_action(‘bp_init’,’bpdev_remove_bp_pre_user_login_action’);
function bpdev_remove_bp_pre_user_login_action(){
remove_action( ‘pre_user_login’, ‘bp_core_strip_username_spaces’ );
}//add a filter to invalidate a username with spaces
add_filter(‘validate_username’,’bpdev_restrict_space_in_username’,10,2);
function bpdev_restrict_space_in_username($valid,$user_name){
//check if there is an space
if ( preg_match(‘/\s/’,$user_name) )
return false;//if myes, then we say it is an error
return $valid;//otherwise return the actual validity
}/* 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*/
}?>
Santos RamosParticipantThanks Adamdale1!
But I’m using the sweetdate theme. I think the Kleo is a new theme?
Santos RamosParticipantLaura,
It did work before with the code that Abe give me but after the update stopped working.
I understand if you can’t make it work but can you ask another Moderator to look it up.
Setting up membership pro is not an option for my site. It would make it confusing for the users.
Thanks and I hope this can be fixed soon.
Santos RamosParticipantThank you Abe!
But if I do that I will need to do a full upgrade and it will delete my custom changes?
Do you know what pages where changed?
Thanks!
Santos RamosParticipantHello,
I checked- Themes – Sweetdate theme and it says that I have V 2.6. I updated the theme yesterday to V 2.4.
I only changed the updated files. What version is correct?Thanks,
SantosSantos RamosParticipantPlease reply when you get a chance!
I would like resize the image holder on the home page and I would like to remove new user bellow the register box. I will create the
At the moment the home page image image is using too much space for my needs.Can please tell me what code I need to cahange?
Thanks for the help!
Santos RamosParticipantHello,
Can you please reply to my questions!
I would like to get the site done soon!Thanks!
SantosSantos RamosParticipantHi Andrew,
If I’m not logged in and I click on the Groups link or a user profile link I get a blank page.
When I turn off the memberships filter and I click on he Groups link or a user profile I can see the groups and user profiles profiles. The problem is that I get the black page when the membership filter is on. What can I do to fix this problem?(Restrict viewing other profiles/ Restrict certain levels
/Not logged in and Not members)( Restrict access to single group page to Not logged in and not member )
Thanks,
SantosSantos RamosParticipantThanks for the help.
1) The css code did not change the line spacing. Is there anything else to try?
2) I was not able to change the color of the button but I can live with it.
3) I deleted 2 of the images from ( about us – Meet out team )
how can I center the single image on the page?Thanks again.
SantosSantos RamosParticipantThanks of the answers! but do I really need yo have a groups forum?
When I create the group forums the links are really long ( group- forum/forum/ forum)Right now I don’t have a root forum and the link looks like this ( http://ridepond.com/group-forums/ )
Thanks for the help!
Santos RamosParticipantThanks for the help!
I want to make sure I do this right!
I got an error after I copied the functions.php file from sweetdate to sweet date-child.
Do I need to delete the functions.php from sweetdate after I copy the file to the child?
Here is the error.
Warning: require_once(framework/constants.php) [function.require-once]: failed to open stream: No such file or directory in /home3/santosra/public_html/ridepond.com/wp-content/themes/sweetdate-child/functions.php on line 41
Fatal error: require_once() [function.require]: Failed opening required ‘framework/constants.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home3/santosra/public_html/ridepond.com/wp-content/themes/sweetdate-child/functions.php on line 41
Santos RamosParticipantThanks! I added few widgets and is not showing.
But I change the name of Forum Root Slug to ( group-forums ) and Forum Root to ( general-forums )The widget Default forum wrapper is set to plugin-bbpress.php.
I tried the other selections but nothing.Can that be the problem?
Santos RamosParticipantI installe the plugin but it did not work.
Is that the plugin you guys used on the sweet date site?
Santos RamosParticipantThanks!
What I need is to allow only the admin to create groups.
If I desabe groups creations on Settings -> Buddypress -> Settings -> Enable group then the groups creation does not
work for admin and users.Thanks for the quick reply.
Santos RamosParticipantThanks!
One more question.I see age, city…tc but I still don’t see where to add the information about me?
I also don’t see any about it check button on the sweetdate/buddypress selections.
Where can I set that up?
Thanks!
Santos RamosParticipantThanks for the help.
I’m still working on the changes but I have one more questions about ( 7) profiles fields.I imported the demo fields but they are for a dating site.
How can I add new fields to the page? the user where need to ad dates selections.
Is this done done true PHP of the wordpress admin page?
Thanks,
SantosSantos RamosParticipantThanks!
1) The problem is that I don’t want to have square icons and the square button is set to off but I still get the square icons.
2) I know i have to go to Budypress > Search customization to change it to search but when I change it I sonly see the search box. How do I add the car type, Smoker ( yes or no ) Going from and going to?ALso, how do I change the tex above the search options? ( Find others going your way so you can Car-Share together.
Save money, cut your carbon and have fun! Great for both drivers and passengers. )3) Where do I change the video and images bellow Sweet stories from our Travelers?
Thanks!
-
AuthorPosts