Forum Replies Created
-
Author
-
SQadmin
KeymasterIn our demo, testimonials is a widget that you need to add to Footer level 2 widget area
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
Add your fields under Users – Profile fields. Then check which you want to appear in the form in Sweetdate – BuddypressHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
There is a topic that guides you to add tabs next to profile image. Translation is your problem. You need to change to your new group name
https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-imageHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
You can redefine in sweetdate-child/functions.php the function that handles that text:COPY CODEfunction kleo_copyright_text() { echo '<p>'. __("Copyright", 'kleo_framework').' © '.date("Y").' '. get_bloginfo('name').'. <br class="hide-for-large show-for-small"/>'. get_bloginfo( 'description' ).'</p>'; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi, As admin it should work. It is Buddypress default behaviour
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterOther member doesn’t have your problem and I guess it was fixed with my code.
do you have any htaccess rules?
talk with the hosting because I remember another member having a similar problem resolved it with themHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterWhat icon? Clear your browser cache
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterI don’t think that is the problem with 2.2. Here is v2.1 if you want to make a test:
https://archived.seventhqueen.com/files/sweetdate_2.1.zipHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHello all 🙂
This code added to footer.php before the wp_footer() line will make the page open at the buddypress navigation level:COPY CODE<script> jQuery(document).ready(function() { jQuery("#item-nav .item-list-tabs a, #subnav a").each(function() { jQuery(this).attr('href',jQuery(this).attr('href')+"#item-nav"); }); }); </script>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
This is going to be fixed in v2.3Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterThose strict standard errors are coming from different plugins and are more of a notice instead of error. so no worries.
Your problem is that the file can’t be accessed or it does not exist at that location:
http://cyco.io/wp-content/themes/sweetdate/framework/shortcodes/tinymce/popup.phpYou also have installed a restriction plugin
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 29, 2013 at 13:50 in reply to: Log In Button redirects me to Error code: ERR_CONNECTION_RESET #5331SQadmin
KeymasterIn v.2.3 the Read more links on posts carousel will work. It was a problem with the swype jquery plugin and we updated to the latest version.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterUser rtmedia plugin that shows uploaded media in your WP Admin – Media
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
Keymasterwp_redirect(bp_get_loggedin_user_link());
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
This is the complete file: http://d.pr/n/h50G
If it doesn’t work in wp-config.php set WP_DEBUG to TRUE and see the error in the popupHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
This is the complete file: http://d.pr/n/h50G
If it doesn’t work in wp-config.php set WP_DEBUG to TRUE and see the error in the popupHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYes you are right. This addresses only the images
COPY CODE<script type="text/javascript"> jQuery(document).ready(function() { jQuery(".article-content a[href$='.jpg'], .article-content a[href$='.gif'], .article-content a[href$='.png']").prettyPhoto(); }); </script>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
You can only block the whole profile from showing. Settings under Sweetdate – MembershipsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
You are right. Here is the code with the fix to match on both user preferences:COPY CODE//Sex match if ((isset($kleo_config['matching_fields']['sex_match']) && $kleo_config['matching_fields']['sex_match'] == '1') || !isset($kleo_config['matching_fields']['sex_match']) ) { $field1_u1 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid1); $field12_u1 = xprofile_get_field_data($kleo_config['matching_fields']['looking_for'], $userid1); $field1_u2 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid2); $field12_u2 = xprofile_get_field_data($kleo_config['matching_fields']['looking_for'], $userid2); if ( $field1_u1 == $field12_u2 && $field12_u1 == $field1_u2 ) { $score += $kleo_config['matching_fields']['sex_percentage']; } //if no sex match, return the score else { return $score; } }
here is the code if you want the script not to stop if the sex preferences does not match
COPY CODE//Sex match if ((isset($kleo_config['matching_fields']['sex_match']) && $kleo_config['matching_fields']['sex_match'] == '1') || !isset($kleo_config['matching_fields']['sex_match']) ) { $field1_u1 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid1); $field12_u1 = xprofile_get_field_data($kleo_config['matching_fields']['looking_for'], $userid1); $field1_u2 = xprofile_get_field_data($kleo_config['matching_fields']['sex'], $userid2); $field12_u2 = xprofile_get_field_data($kleo_config['matching_fields']['looking_for'], $userid2); if ( $field1_u1 == $field12_u2 && $field12_u1 == $field1_u2 ) { $score += $kleo_config['matching_fields']['sex_percentage']; } else { $score += 10; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYou can send it on our email: themesupport@seventhqueen.com but we don’t promise anything. We will take a quick look and see what we can do
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
We haven’t interfered in the default Multisite behaviour. All the functionality related to that is handled by WordPress itself and Buddypress.
Check any plugins you are using or settingsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterYour code is old. Put the new code that is in my above post
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterWe don’t have a code. You need to go in detail and make your custom code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
Add to sweetdate-child/style.css or in WP admin – Sweetdate – Styling options – Quick css your css like this where you can add your styling:h7 { color: #333; background: #ccc; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
Keymaster@gideon1210 please stop creating two topics with the same question at the same time.
check the body classes since it should already be a specific class for homepage and use @adam code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
Those should appear, at least it appeared in our tests and @sv1aud
Maybe you haven’t made the core changes to Buddypress right?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterSee this topic: https://archived.seventhqueen.com/forums/topic/how-do-i-remove-the-forums-tab
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
Each multiple value should add the specific percentage specified.
I just tested it and works. Also if members are not compatible by sex the fields won’t count
//If we want to match by members sex. values: 0|1
$kleo_config[‘matching_fields’][‘sex_match’] = 1;Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterI just registered and looks good.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
Keymasterlook under wp-content/plugins folder and the plugin should be there
regarding the bpAlbum I think I responded to you in another post of yours… translate the string with a space to hide it
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterIt appears in every page
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
That implies some php code added to your sweetdate-child/functions.php
This time I will provide you the code:COPY CODEadd_action( 'template_redirect', 'my_redirect_home' ); function my_redirect_home() { if( is_user_logged_in() && is_front_page() ) { wp_redirect( site_url( 'members' ) ); exit(); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
I think that implies changing your plugin code because is related to thatHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi.
That is done by editing page-parts/home-register-form.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterPlease see this solution here: https://archived.seventhqueen.com/forums/topic/blank-page-screen-when-loading-shortcodes
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
If you are using the child theme try copying sweetdate/members/single/activity/permalink.php to sweetdate-child/members/single/activity/permalink.phpHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterIf your allowed membership levels ids are 3 and 4 that is correct
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterWell this way it works. Strange 🙂
COPY CODEform.custom div.custom.dropdown ul li.selected { background: none repeat scroll 0 0 #333333; color: #333333; } form.custom div.custom.dropdown ul li { background: #c9c8c6; color: #555555; } .form-search.custom div.custom.dropdown a.current{ background-color: #c9c8c6; border: 1px solid #DDDDDD; color: #141414; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
It is all in Woocommerce settings : wp-admin/admin.php?page=woocommerce_settings&tab=payment_gatewaysHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionSQadmin
KeymasterHi,
It is all in Woocommerce settings : wp-admin/admin.php?page=woocommerce_settings&tab=payment_gatewaysHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts