Forum Replies Created
-
Author
-
JohnDoeParticipant
How would i allign my logo w the menu now? and it looks like the text from dropdowns in my nav float right suddenly? @adam
JohnDoeParticipantHow to add ur second code so i give men for example the free ID automaticly , and woman a different ID
JohnDoeParticipantWhen 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 (
JohnDoeParticipantI 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 🙂
JohnDoeParticipantOoops, you are right haha i’m sorry , was kinda busy with 10 things at the same time..
Anyways glad you worked it out 🙂
JohnDoeParticipantFor SEO use Yoasts Seo plugin
http://yoast.com/wordpress/seo/#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wpseoplugin
JohnDoeParticipantMorocc , 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.
JohnDoeParticipantin 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.)
JohnDoeParticipantIn child folder modify header php ,
find SIGN UP
a little above you will find :
<a href=”#”
Change the # to your link.
JohnDoeParticipantyou can add fields there by adding them in the profile fields base .
Users -> profile fields -> Base
JohnDoeParticipantJohnDoeParticipanti 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?
JohnDoeParticipant@bshosts can u link me to gravity forms plugin website? i searched for it, but there’s like 10 gravity form plugins 😉
JohnDoeParticipantyou can send me an email : arno.agten@gmail.com
with the things you want edited, i might help you , for free that is.
JohnDoeParticipantNot 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 ?
JohnDoeParticipantTo 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
JohnDoeParticipantHow 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.
JohnDoeParticipantin your php.ini you should find :
memory_limit =change it to this
memory_limit = 256M
should resolve your problem
JohnDoeParticipantCustomise this to Sweetdate
http://www.bitrepository.com/a-simple-ajax-username-availability-checker.html
JohnDoeParticipantI suggest you to remove sweetdate, and re-install it. ( you can also just ignore this post 😉 Just here trying to help.)
JohnDoeParticipantChange :
<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