Forum Replies Created
-
Author
-
JohnDoe
ParticipantHow would i allign my logo w the menu now? and it looks like the text from dropdowns in my nav float right suddenly? @adam
JohnDoe
ParticipantHow to add ur second code so i give men for example the free ID automaticly , and woman a different ID
JohnDoe
ParticipantWhen i add the code again , it gives me an error after updating the file, and when i look for the error on the line it says, then it shows the line is empty..
However , in DreamWeaver it shows this line red to
$kleo_config[‘matching_fields’][‘multiple_values’] = array (
JohnDoe
ParticipantI copy/pasted ur header.php , its really cool like that, but my nav is too long and gives the bar a second line with only 1 nav item . That’ ain’t looking good. Ciould you help me move the nav to left more so it fits nicely? Also nice job on the Fb like 🙂
JohnDoe
ParticipantOoops, you are right haha i’m sorry , was kinda busy with 10 things at the same time..
Anyways glad you worked it out 🙂
JohnDoe
ParticipantFor SEO use Yoasts Seo plugin
http://yoast.com/wordpress/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin
JohnDoe
ParticipantMorocc , winks or gifts aren’t available right now, post it in the suggestions section please.
https://archived.seventhqueen.com/forums/topic/sweetdate-wp-feature-requests
use this plugin for your mails.
JohnDoe
Participantin Sweetdate folder , find the folder : Page-parts , then open general-register-modal.php
Edit this part .
<?php } ?>
<button type=”submit” id=”signup” name=”submit” class=”radius alert button”><i class=”icon-<?php echo apply_filters(‘kleo_register_button_icon’,’heart’); ?>”></i> <?php _e(“CREATE MY ACCOUNT”, ‘kleo_framework’);?></button>
<?php do_action(‘fb_popup_register_button’); ?>(Don’t forget to copy the general-register-modal.php to your child folder and don’t modify your original sweetdate folder.)
JohnDoe
ParticipantIn child folder modify header php ,
find SIGN UP
a little above you will find :
<a href=”#”
Change the # to your link.
JohnDoe
Participantyou can add fields there by adding them in the profile fields base .
Users -> profile fields -> Base
JohnDoe
Participanti wanna make a custom Landing page , with a login / register form , but how do i make it communicate with website.
Like when they login on the landing, they get redirected to the homepage logged in?
JohnDoe
Participantlog in to Wp-Admin :
username John Doe
password onraagten69and see for yourself..
JohnDoe
ParticipantJohnDoe
Participanti added a few new profile fields , and added it in the code , like this
function kleo_my_match() {global $kleo_config;
$kleo_config['matching_fields']['starting_score'] = 1;
//required for initial match. If the sex preference matches it will continue to the specified fields below
$kleo_config['matching_fields']['sex'] = 'I am a';
$kleo_config['matching_fields']['looking_for'] = 'Looking for a';
//sex percentage
$kleo_config['matching_fields']['sex_percentage'] = 49;
//single value fields like select, textbox,radio
$kleo_config['matching_fields']['single_value'] = array (
'Marital status' => 20,
'Country' => 5,
'City' => 5,
'Religion' => 20,
'You have Children?' => 5,
);
//multiple values fields like multiple select or checkbox
$kleo_config['matching_fields']['multiple_values'] = array (
'Interests' => 10,
'Looking for' => 10,
);
}
I tested this with a user , before my match was 80% , now it’s still 80%
so i guess it didn’t work?
JohnDoe
Participant@bshosts can u link me to gravity forms plugin website? i searched for it, but there’s like 10 gravity form plugins 😉
JohnDoe
Participantyou can send me an email : arno.agten@gmail.com
with the things you want edited, i might help you , for free that is.
JohnDoe
ParticipantNot sure why there’s ?> and <?php like that?
add_action(‘wp_footer’,’kleo_disable_profile_links’, 11);
function kleo_disable_profile_links() {
?>
<script>
jQuery(document).ready(function() {
jQuery(“.profile-thumbs a”).attr(“href”,”#”);
jQuery(“.profile-thumbs a”).on(‘click’, function(e) {
e.preventDefault();
});
});
</script>
<?php
}Shouldn’t the tags be the other way around @sqadmin ?
JohnDoe
ParticipantTo add another field go to Users – Profile fields , u can there add new fields , and choose to make them required or not / if members can change visibility or not . Add them to the
Base section if you want them to show up in the /registerHope i helped
JohnDoe
ParticipantHow can we edit the Accordions on the profile page? i want them to stay open by default, and can be closed when user wants to.
JohnDoe
ParticipantInstead of that, u think i could integrate an auto completer like this?
<meta charset="utf-8">
<style>
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
#city { width: 25em; }
</style>
<script>
$(function() {
function log( message ) {
$( "<div/>" ).text( message ).prependTo( "#log" );
$( "#log" ).attr( "scrollTop", 0 );
}$( "#city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/searchJSON",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function( data ) {
response( $.map( data.geonames, function( item ) {
return {
label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
value: item.name
}
}));
}
});
},
minLength: 2,
select: function( event, ui ) {
log( ui.item ?
"Selected: " + ui.item.label :
"Nothing selected, input was " + this.value);
},
open: function() {
$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
},
close: function() {
$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
}
});
});
</script><div class="demo">
<div class="ui-widget">
<label for="city">Your city: </label>
<input id="city" />
Powered by geonames.org
</div><div class="ui-widget" style="margin-top:2em; font-family:Arial">
Result:
<div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
</div></div><!-- End demo -->
<div class="demo-description">
<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are cities, displayed when at least two characters are entered into the field.</p>
<p>In this case, the datasource is the geonames.org webservice. While only the city name itself ends up in the input after selecting an element, more info is displayed in the suggestions to help find the right entry. That data is also available in callbacks, as illustrated by the Result area below the input.</p>
</div><!-- End demo-description -->Looks like this : http://jqueryui.com/autocomplete/#remote-jsonp
could you help me custom code this? willing to pay for this.
JohnDoe
Participantin your php.ini you should find :
memory_limit =change it to this
memory_limit = 256M
should resolve your problem
JohnDoe
ParticipantCustomise this to Sweetdate
http://www.bitrepository.com/a-simple-ajax-username-availability-checker.html
JohnDoe
ParticipantI suggest you to remove sweetdate, and re-install it. ( you can also just ignore this post 😉 Just here trying to help.)
JohnDoe
ParticipantChange :
<div class=”six columns”>
<input type=”text” id=”username” required name=”log” class=”inputbox” value=”” placeholder=”<?php _e(“Username”, ‘kleo_framework’);?>”>
</div>To :
<div class=”six columns”>
<input type=”text” id=”username” required name=”log” class=”inputbox” value=”” placeholder=”<?php _e(“Email Address”, ‘kleo_framework’);?>”>
</div> -
AuthorPosts
