-
Author
-
December 10, 2014 at 15:48 #38434LauraModerator
Hello, i will check them one by one and will let you know 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 10, 2014 at 19:08 #38466LauraModeratorHello, here are some answers, first i would really suggest to use a translation plugin rather than translating php files, because if an update is done in any plugin or theme, you will lose all of those translations.
1. Please use Codestyling Localization Plugin here: https://wordpress.org/plugins/codestyling-localization/
You can translate plugins and themes from here and when an update comes they wont be lost! 🙂2. Did i understand right? do you want to redirect user to your activity page and not to profile page? if so, share with me the code you are using and the id of the activity page.
3. Try this plugin https://wordpress.org/plugins/full-utf-8/
4. The problem is that the error is the translation.
1= To check, remove translation of your country.
2= Back BuddyPress original translation.
3= Try a mention again.
4= If it does not error, returns translation of your country.
5= Look at this line in the file. Po translation: “%1$s mentioned you in an update:\n\n\”%2$s\”\n\nTo view and respond to the message, log in and visit: %3$s\n\n———————”
Compare with the translation of your country. It should be the same if not, then thats is where the error is coming!5. Yes you can add the fields you cant following the names as in the code, like ‘Cidade’, but those fields need to be inside of the Básico group.
6. Is not a bug, because of your custom fields and groups, match system doesnt work, so you need to setup a new matching system with your values, check here https://archived.seventhqueen.com/forums/topic/match-numbers
Will come with 7 and 8 soon
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 14:21 #38551LauraModeratorHello, ok lets try one by one so it can be fixed 🙂
No, the translations are not auto, you can choose to do it or not, but updates adds usefull new functionalities and errors fixing so i would suggest to do all translations in codestyling and update theme when it has an update.The translation plugins shows the error because maybe you have a memory limit, we can try a code, but if your hosting doesnt allow it, you should talk to them because i have no power there.
Try adding this to wp-config.php
define(‘WP_MEMORY_LIMIT’, ’96M’);If not, try this in .htaccess (if you can see it)
php_value memory_limit 64MIf nothing changes then talk to your host.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 14:53 #38579LauraModeratorHello, awesome! lets move to point 2.
Replace the redirect code for this and change the url to your activity pageCOPY CODEif( !function_exists('custom_user_login_redirect') ) { function custom_user_login_redirect() { $redirect_to = 'http://mysite.com/activity'; return $redirect_to; } add_filter('login_redirect','custom_user_login_redirect',10,3); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 16:02 #38615LauraModeratorHello, moving to point 3.
Try adding this to wp-config.php
define(‘DB_CHARSET’, ‘latin1’);if not try this
define(‘DB_CHARSET’, ‘utf8’);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 16:10 #38621LauraModeratorHello, this is something coming from your database, try this http://blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips/seeing-weird-characters-on-blog-how-to-fix-wordpress-character-encoding-latin1-to-utf8/ or contact your hosting provider
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 16:28 #38630LauraModeratorOkay then point 4, Maybe we can try to hide warnings as the error is just a warning ad the mentions work properly, try adding this to your wp-config.php
error_reporting(0);
@ini_set(‘display_errors’, 0);Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 18:33 #38651LauraModeratorHello, the point 5, is the description after the age/ sex/… what you want?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 22:48 #38674LauraModeratorHello, working on a code for point 5, lets move to point 6 for the moment,
Add this to your functions.phpCOPY CODE//change matching system add_action('after_setup_theme','kleo_my_match'); function kleo_my_match() { global $kleo_config; $kleo_config['matching_fields']['starting_score'] = 1; //If we want to match by members sex. values: 0|1 $kleo_config['matching_fields']['sex_match'] = 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 FIELD NAME HERE'; $kleo_config['matching_fields']['looking_for'] = 'LOOKING FOR FIELD NAME HERE'; //sex percentage $kleo_config['matching_fields']['sex_percentage'] = 49; //single value fields like select, textbox,radio $kleo_config['matching_fields']['single_value'] = array ( 'FIELDNAME' => 20, 'FIELDNAME' => 5, 'FIELDNAME' => 5 ); //multiple values fields like multiple select or checkbox $kleo_config['matching_fields']['multiple_values'] = array ( 'FIELDNAME' => 10, 'FIELDNAME' => 10, ); }
To setup this matching system, first you need to know what fields will count as matching for the users, you want that if they are from the same city it gives a 5% of match? those settings can be done from the code, as you see sex percentage is set to 49, but you can change it as you want, this means if a man wants a woman, and woman wants a man, they both will have 49% of match.
To add more fields to match just copy
‘FIELDNAME’ => 10,
And add it after the others depending on if the field is multiple value or simple value (As set in users > profile fields)You can also change the 10 for the % you want that field to count.
Read the comments carefully and follow the steps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 11, 2014 at 23:38 #38681LauraModeratorHello, lets do something, i will add the code for you, just tell me what fields you want to count and the % of each item, also gender %.
Please list them one by one, not the group of fields, just each field, like Music, Movies, Languages…Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 02:53 #38715LauraModeratorHello, but what % for each field?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 14:22 #38762LauraModeratorHello, matching system is ready and working 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 16:06 #38795LauraModeratorHello, point 5 fixed 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 16:08 #38796LauraModeratorHello, for the last point, 7, share with me the image you want to change and for what image you will.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 16:15 #38801LauraModeratorHello, so what do you actually need now?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 16:34 #38803LauraModeratorHello, can you tell me the css you changed?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 12, 2014 at 17:16 #38819LauraModeratorHello, check out the fontawesome icons here http://fortawesome.github.io/Font-Awesome/3.2.1/icons/ then the icon you choose, look for the UNICODE and add it to style.css in child theme:
COPY CODE.icon-pinterest-sign: before {content: “\ f0d3″;}
change UNICODE number for the “f0d3”
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.December 12, 2014 at 17:41 #38831LauraModeratorHello, great 🙂 if got any question dont doubt to ask.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
You must be logged in to reply to this topic.