Forum Replies Created
-
Author
-
SQadminKeymaster
Hi,
To change the tabs follow this topic: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
You need to install our customized version. You should have seen a notification to install it. Replace your plugin files with the one from this archive: https://archived.seventhqueen.com/files/paid-memberships-pro.zipHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIn our demo it uses the About me field. Check out this topic to change to another field: https://archived.seventhqueen.com/forums/topic/member-directory-page-about-me-text-does-not-display
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Right now you can set restrictions from Membership -> Advanced(starting with version 2.1 it will be under Sweetdate -> Membership). You will find all three options there.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou can redirect users at the first login to avatar page by adding this code to sweetdate-child/functions.php
COPY CODEfunction function_new_user($user_id) { add_user_meta( $user_id, '_new_user', '1' ); } add_action( 'user_register', 'function_new_user'); //The next function will check if it's the first login and redirect the user. function function_check_login_redirect($user_login, $user) { $logincontrol = get_user_meta($user->ID, '_new_user', 'TRUE'); if ( $logincontrol ) { //set the user to old update_user_meta( $user->ID, '_new_user', '0' ); //Do the redirects or whatever you need to do for the first login wp_redirect( home_url().'/members/'.$user_login.'/profile/change-avatar/#item-nav', 302 ); exit; } } add_action('wp_login', 'function_check_login_redirect', 10, 2);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe tested it and works. Like I said before,it counts comments waiting for moderation so make sure your new comments are set to be moderated before going public
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterBy default it should redirect to homepage not admin area, maybe you added some plugin?
To redirect to their profile: https://archived.seventhqueen.com/forums/topic/redirect-user-to-their-profile-after-loginHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Best way if to add another profile field and then add it into the form.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterRight now it does not take the avatar but we are trying to add that functionality in next update
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterDepending on what you want to show. Most of the times I don’t think you will need a coder.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
This is the function you need to add in order to assign a specific membership level to a newly registered user. Add it into your sweetdate-child/functions.phpCOPY CODEadd_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
This one assigns level with ID 1
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Yes you could use that plugin if it suits your needs. We will take a look and maybe add that functionality also.
Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAwesome. Thanks
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe used for all the pages the included Sidebars feature that you tried to use.
For forums that doesn’t work but it works with that plugin. Make sure to add widgets to the bbPress sidebar.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, You are good. Just the main theme receives update. Sweetdate child is your own custom theme that contains changes if that is the case
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIf you want to add a blog to user profiles you can use this plugin that works well: http://wordpress.org/plugins/social-articles/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I don’t think there is a plugin that does that. If you want a quotation from us give us details about what options to be available for a product and more details in a mail at: themesupport@seventhqueen.com and we will let you know.
We will probably release an update next week to include the slider and some improvements.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterPlease read this topic that is exactly what you need: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterhi,
You mean because of this text on our demo: ” Free Membership expires after 14 Days. ”
We didn’t see a problem in that.
If you want to modify the levels template you can create paid-memberships-pro/pages/levels.php file in your sweetdate child theme and copy the content from wp-content/plugins/paid-memberships-pro/pages/levels.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
It requires some code change but it can be done. You can give me some credentials to ftp or tell me the name of each field for the birthday so I can give you the code to add.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2013 at 12:09 in reply to: Make Sign Up Button Go To Register Page (skip lightbox) #2699SQadminKeymasterHi,
Please read this topic that will guide you trough:
https://archived.seventhqueen.com/forums/topic/how-to-disable-modal-loginHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2013 at 12:08 in reply to: Home Page – How to Replace "Image" with dynamic content? #2698SQadminKeymasterHi, Please read this topic to add something next to the form:
https://archived.seventhqueen.com/forums/topic/adding-text-in-homepageHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
It can be done with small changes
Copy header.php from main theme to your sweetdate-child theme
edit it and aroung line 159 change ‘menu_class’ => ‘left’ to ‘menu_class’ => ‘right’Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2013 at 12:03 in reply to: Automatic page navigation when trying to edit profile page… #2696SQadminKeymasterHi,
Yes indeed is better your way 🙂
We are including it in the official version also. we tried ftp but no acces so please change the in file located in custom_buddypress/bp-functions.php the following:
search for: profile/change-avatar/
and replace with: profile/change-avatar/#item-navThat’s it
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 12, 2013 at 11:53 in reply to: Log In Button redirects me to Error code: ERR_CONNECTION_RESET #2695SQadminKeymasterI see you haven’t changed it in your site. We tested the change on your site and worked.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterCan you give us a link since it seems like an isolated issue?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
It should work. Please empty cache if you use a plugin and browser cacheHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, There is no predefined setting to restrict the forums.
There is a code you can see how to do that: http://www.paidmembershipspro.com/2012/01/lockdown-bbpress-wp-plugin-forums-using-paid-memberships-pro/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Date is already in the blog posts. Is shows just bellow the title.
To modify the widget you have to edit main theme file which is not recommended. If you want to to do that the file is located in framework/widgets/widget_recent_posts.php
Somewhere around line 59 you can render the date using this function:Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
You said that you want to disallow users from creating groups. That setting does exactly that and allows only admins to create. create groups from WP Admin -> GroupsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
That is the way it should be .
Child theme doesn’t get updated, just the main one.Cheers
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 simple solution since that data needs to be stored somewhere and you need to allow users to posts things in a field
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI am working on something like this when user goes and chooses the level, then it needs to register. After the user registers he will be redirected to the checkout page for the level he already chosen. Will keep you posted.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi.
Please replace the contents of this file: sweetdate/custom_buddypress/kleo-bp-search.php with this: https://archived.seventhqueen.com/files/kleo-bp-search.txt4 is good, 5 would be great
Just kidding. ThanksHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterNo, I don’t think there is already a plugin for that.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWell you need to post a new comment to appear 🙂
It counts comments that are waiting moderation so you should comment as another user.
I made a code change so it only appears to admin users:
http://d.pr/n/61DpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi Gapron,
That needs custom development since Woocommerce has plenty of options to set for a product. It needs some sort of front-end editor plugin or woocommerce marketplace.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSo in conclusion this solution worked for us:
– WPML plugin
– WMPL String translation plugin
– From WPML -> String Translation -> Auto-register strings only when logged in as an administrator
– Make this core Buddypress change as in here: http://wpml.org/forums/topic/translate-buddypress-profile-fields/#post-64803
– Browse trough the site so the strings get registeredIf you update Buddypress you need to do the core change again.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Instead adding those lines of code I gave you try to do this change in Buddypress core and see if it changes something: http://wpml.org/forums/topic/translate-buddypress-profile-fields/#post-64803Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
That is changeable from WP Admin -> Sweetdate-> BuddypressHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTo change the button url to the membership levels change the href=”#” with href=”“
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts