Forum Replies Created
-
Author
-
SQadminKeymaster
Hi, Please come with more details and a link to your site because is the exact same question as the topic initiator and we responded already.
Members need to activate profiles by their email to show in site,Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIn that case follow @strikewebsolutions solution.
CheersHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterI see this in your site: Invalid App Id: Must be a number or numeric string representing the application id.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, You can try this plugin: BuddyPress user account type PRO (allows different user types)
By default the theme can’t do thatHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAll I get is “Coming soon”
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThat is related to all buddypress pages that can be changed from Sweetdate – Buddypress
If you want to edit the template: sweetdate/members/index.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThis is the code that should be added, with you changes on the field names:
COPY CODEadd_action('after_setup_theme',' kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the “About me” field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am', 'Type', 'City' ); }
Because it does a caching on those fields you can add this also to sweetdate-child/functions.php and remove it once the new fields appear:
COPY CODEdelete_transient( 'kleo_bp_meta_fields');
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTry with them in the first function:
COPY CODEadd_action(‘bp_after_member_header’,'kleo_my_custom_tab’, 0); function kleo_my_custom_tab() { global $bp_tabs; $bp_tabs = array(); /* Change About me to About Us & Add Our Photos tab on profile */ $bp_tabs['base'] = array( ‘type’ => ‘regular’, ‘name’ => apply_filters(‘kleo_extra_tab2′,__(‘About Us’, ‘kleo_framework’)), ‘group’ => ‘About Us’, ‘class’ => ‘regulartab’ ); $bp_tabs[] = array( ‘type’ => ‘regular’, ‘name’ => bp_get_member_profile_data( ‘field=Partner 1: First Name’ ), ‘group’ => ‘Partner1′, ‘class’ => ‘regulartab’ ); $bp_tabs[] = array( ‘type’ => ‘regular’, ‘name’ => bp_get_member_profile_data( ‘field=Partner 2: First Name’ ), ‘group’ => ‘Partner2′, ‘class’ => ‘regulartab’ ); /* rtMedia tab – only if plugin installed */ if (class_exists(‘RTMedia’)) { $bp_tabs['rtmedia'] = array( ‘type’ => ‘rt_media’, ‘name’ => __(‘Our photos’, ‘kleo_framework’), ‘class’ => ‘mySlider’ ); } /* Bp-Album tab – only if plugin installed */ elseif (function_exists(‘bpa_init’) AND sq_option(‘bp_album’, 1) == 1) { $bp_tabs['bp-album'] = array( ‘type’ => ‘bp_album’, ‘name’ => __(‘Our Photos’, ‘kleo_framework’), ‘class’ => ‘mySlider’ ); }
Seems the code didn’t copied well. Do the changes in your existing code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterYes it is, don’t worry. Maybe you did something wrong.
Provide us with temp access to your FTP pleaseHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi @gavinthompson,
My code above had a dot missing. Sorry for that. Also you haven’t set the slider right. I modified the height of the slider to 520pxHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterSend them here: themesupport@seventhqueen.com
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, As it says in the field description:
“Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires.”
So the counter starts from the date the membership is enabled regardless of the recurring options you set.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterNope. Copy them directly to the main theme since the next version will contain those changes and you won’t loose them.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, There are some plugins out there. Just search
Example: http://wordpress.org/plugins/wp-users-exporter/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Try this: http://wordpress.org/plugins/buddypress-pending-activations/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHave you tried my suggestion with adding some random text to the template and see if it displays to make sure you are editing the right one or the file is in place?
Probably you Sweetdate Child shows 2.0 which is good because the child theme doesn’t get updated
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi @Tenshi, Try my version: http://pastebin.com/17p1jb9c
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Thank you for the kind words
That should work by default. There is no need for any customizations. Make sure you are using the latest versionHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterThat can be changed from sweetdate/assets/scripts/app.js around line 244 ‘fgColor’: ‘#ffffff’,
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterGreat. Glad you figured it out
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
It has nothing to do with the theme. Are you doing this from the Plugins menu?
You can try deleting the plugin folder and installing it againHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe can’t guess where your problem comes from..
You definitely did something wrong. Give us a link, credentials for access, etcHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi , To translate the BP-Album you need to add the translated .mo/.po to this location wp-content/themes/sweetdate/framework/inc/bp-album/includes/languages
You need to translate in into your language using the Poedit softwareHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, There is no option to add the Terms checkbox to the registration. I think there is a plugin for that. Try searching the wordpress repository
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 21, 2013 at 23:20 in reply to: "Who can see this field" options as a global profile setting? #4827SQadminKeymasterHi, That is not possible by default. You can achieve it by modifying the default template registration/register.php probably with a javascript code to match your needs.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterTo change the layout width you need to edit in app.css around line 38 like this example:
COPY CODE.row { width: 1170px; margin: 0 auto; }
Regards.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterWe haven’t tested it yet, but if you buy it and it doesn’t work we will try and repair it for you
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
With php you can put any shortcode like this:
<?php echo do_shortcode('[kleo_button url="register" style="standard" size="large" round="radius" icon="0,before" target="_self"] Join us for FREE [/kleo_button]');?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Please see this topic: https://archived.seventhqueen.com/forums/topic/missing
You should add your required subset if it is available for the font you choose. Check them like this:
http://www.google.com/fonts#QuickUsePlace:quickUse/Family:Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, That is not possible. Is just for bringing something important up.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHim
You can see this topic on putting the login/sign-up button on the main menu: https://archived.seventhqueen.com/forums/topic/log-in-signup-buttonHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterDon’t know what you are talking about. Provide details, links, screenshots. etc
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterAdd this code to sweetdate-child/functions.php to have those 2 buttons in the main menu: http://d.pr/n/vd5S
They will also show in the regular menu.You can remove the existing ones and leave only the ones in the main menu by editing header.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
Similar topic here: https://archived.seventhqueen.com/forums/topic/change-min-age-year-profile-fields-should-be-updated-automaticallyHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
I found this google-ing: http://spoonjab.com/bp-wp-profile-reviews/Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
The name field searches only in that field. Searching by username is not possible right now.
We don;t have a database of country/city.The ajax pagination should be fixed in v2.2
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, Do you have a link to see what you are talking about?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterIf you are talking about the home slider that is not added with a shortcode, you can add this to sweetdate-child/functions.php
COPY CODEadd_action('after_setup_theme','my_slider_mod'); function my_slider_mod() { remove_action('kleo_after_header', 'kleo_home_revslider') ; if (sq_option('home_rev',0) == 1 && function_exists('putRevSlider') && !is_user_logged_in()) { add_action('kleo_after_header', 'kleo_home_revslider') ; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi, It looks you haven’t added the code or done changes to the slider height in Revolution slider settings. Give us temporary access so we we quickly help you. Mark the reply as private
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadminKeymasterHi,
You can add this functionality for all links inside a page or post by putting this code in footer.php, somewhere before the wp_footer() line:COPY CODE<script> jQuery(document).ready(function() { jQuery(".article-content a").prettyPhoto(); }); </script>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts