Forum Replies Created
-
Author
-
September 3, 2013 at 23:58 in reply to: Issue with "Custom Metaboxes and Fields for WordPress" Script #2190SQadminKeymaster
Thanks for noticing that. We were just preparing the package for the 2.0 membership and will include the fix for the error
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasteris_user_logged_in()
🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThat should be enough. try without www
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 2, 2013 at 22:33 in reply to: Issues with setting up Buddypress with Multisite and your theme #2165SQadminKeymasterTry this: http://wordpress.org/plugins/multisite-plugin-manager/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterBasically you will have to add the css to the theme
COPY CODE//CSS #profile {background:#ccc;}
by the profile field, that you can check with:
COPY CODE//PHP xprofile_get_field_data( 'Location');
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 2, 2013 at 22:23 in reply to: Issues with setting up Buddypress with Multisite and your theme #2162SQadminKeymasterHi.
I guess Buddypress has to be network activated and install on the second theme, not the main, if you want to use it only there. That could be your problemHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou also have a setting in theme to enable Facebook registration, just after you switched ON the Facebook integration: Enable Registration via Facebook
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTo modify the way it looks you have to modify this file to match your needs: sweetdate/bbpress/loop-single-forum.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterCan you provide a link with access on our email? themesupport@seventhqueen.com
This happens when you are uploading from the activity tab or media tab?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, We are doing our best to release it these day since we are doing some final touches and tests.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou have to allow users to delete their account by going to WP admin -> Settings -> Buddypress -> Settings -> Account Deletion
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
In Facebook application settings you need to set:
Website with Facebook Login -> Site URL:
The site url has to be the same with your website.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 default functionality for this.
Custom coding is required for this.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou can try setting up a forum and then to the “Forum attributes” you can set the Type: Category
Then other forums added should have set the parent to that Forum category.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterProbably it is some sort of Unlike. We do not give support for core functionalities of this plugin and that probably is the default functionality.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
This implies some template changes in members/members-loop.php
You need get the similar code from that plugin and add it there. This is beyond the scope of our support.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, The thumb size can be modified from wp-content/plugins/bp-custom.php
By default this should be the sizes:COPY CODEdefine( 'BP_AVATAR_THUMB_WIDTH', 120 ); //change this with your desired thumb width if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) define( 'BP_AVATAR_THUMB_HEIGHT', 120 ); //change this with your desired thumb height
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIf you disabled the Profile page, then it won’t be reachable. Normally when you are viewing a profile, the default active tab is the Activity tab.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou need to configure it with widgets from Appearance -> Widgets
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 2, 2013 at 06:59 in reply to: Issues with setting up Buddypress with Multisite and your theme #2132SQadminKeymasterHi,
What exactly is the problem? Have you successfully installed the theme?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSeptember 1, 2013 at 12:02 in reply to: Register on Landing page but no search page on member site #2117SQadminKeymasterThat is right, and if you want conteny only for guests use kleo_only_guests shortcode.
I mean that after login you will be redirected to the the page you previously were.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymaster@bastkopf is right, you should upload an image around 1000px width and set it to cover to fill the area or play with the settings to see which suites your needs.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI think this happens when an user is not logged in. We’ll take a look
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 31, 2013 at 22:37 in reply to: Register on Landing page but no search page on member site #2105SQadminKeymasterYou can differentiate content in pages with these 2 shortcodes:
[kleo_only_members]Content to show for members only[/kleo_only_members]
[kleo_only_guests]Content to show for guests only[/kleo_only_guests]This code is used to redirect to the last page user was viewing. Add this to the file located on your server at wp-content/themes/sweetdate-child/functions.php
COPY CODEadd_filter('login_redirect', 'redirect_previous_page', 10); function redirect_previous_page(){ $request = $_SERVER["HTTP_REFERER"]; $req = explode(get_option('siteurl'),$request); if (isset($req[1])){ $redirect = site_url( $req[1], 'login_post' ); } else { $redirect = site_url( '', 'login_post' ); } return $redirect; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
So to add the “Personal Info” tab this is the complete code like in the link I first sent:COPY CODEadd_action('after_setup_theme','kleo_my_tab'); function kleo_my_tab() { global $bp_tabs; $bp_tabs[] = array( 'type' => 'regular', 'name' => __('Personal Info', 'kleo_framework'), 'group' => __('Personal Info', 'kleo_framework'), 'class' => 'regulartab' ); }
PS: The name and group are case sensitive.
Make sure you have the child-theme activated
Make sure the user has filled data in that groupHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterUpdate trough WordPress admin by adding you Themeforest username and API key to WP Admin -> Sweetdate -> Miscellaneous and the update will appear in wp-admin/update-core.php
or
re-download the theme form themeforest and replace the old one on the server.Either way you should back-up your files
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYes you can put the field in the form even if is not in the Base group
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYou need to copy the 3 folders(members,groups,activity) to the root of the themes
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
If you want not to show “looking for” in the registration page you need to move it out of the Base group profile.
If you want to count online members you can try this:
https://archived.seventhqueen.com/forums/topic/big-bug-with-manwoman-number-and-search
if you want statistics for every profile field you can use this shortcode:
[kleo_member_stats field=”” value=””]
that can be user for example:
[kleo_member_stats field=”Looking for” value=”Friend”]Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
‘name’ it is the name you want to appear on the tab name
‘group’ => is the group name you want to show profile fields fromThanks @Harvinder
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWhat images are you referring to?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 31, 2013 at 22:04 in reply to: Register on Landing page but no search page on member site #2093SQadminKeymasterOh. you can remove it. I thought you wan to show something else in the exact same location, but you can remove it and build the page with shortcodes.
To remove it add this snippet to wp-content/themes/sweetdate-child/functions.phpCOPY CODEadd_action('after_setup_theme','remove_search_form',11); function remove_search_form() { remove_action('after_header_content','render_user_search'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterGreat!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Please read this topic: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-imageCheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We are doing our best to release it at the beginning of the weekHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 31, 2013 at 11:20 in reply to: Register on Landing page but no search page on member site #2068SQadminKeymasterHello,
Thank you very much for the kind words.To have the registration box for non-logged in users you can set the form to Mixed in WP Admin -> Sweetdate -> Homepage
But this setting will have the search form for logged-in users. To change the form to something else you need to modify the template file located in wp-content/themes/sweetdate/page-parts/home-search-form.php
This will require HTML knowledge or PHP depending on what you need to show there.Make sure to do all file changes using the sweetdate-child theme:
To modify the template above, copy that file to wp-content/themes/sweetdate-child/page-parts/home-search-form.php and do all the changes there.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Latest update is 1.5.1
Make sure to have the latest one. If it still doesn’t work please send us an email with temporary access to FTP and site
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I don’t know any setting to accomplish that. Try on the rtMedia plugin supportHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterCan you please be more specific with your issues? Doesn;t work for me doesn’t say much
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
We are using on our demo the All In One SEO Pack plugin which seems to be doing a pretty good jobHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts