Forum Replies Created

Viewing 27 posts - 1 through 27 (of 27 total)
  • Author
  • in reply to: "Popular Stick image" on pricing table #50500
     ofcentral
    Participant

    yes, I know. But that removes the popuar-image…

    in reply to: No Forums #50197
     ofcentral
    Participant

    just deactivate bbpress in plugins.

    in reply to: "Popular Stick image" on pricing table #50196
     ofcentral
    Participant

    may I push that again…
    this code doesnt work for me:

    COPY CODE
    .membership .pricing-table.popular:after {
        background: url("images/pop.png") no-repeat scroll center center rgba(181, 41, 41, 0);
    }

    the image is in the folder /public_html/wp-content/themes/sweetdate-child/images

    in reply to: Translation problem #50129
     ofcentral
    Participant

    Hi Laura,
    yes thank you – it seems that Pmpro was responsible for the problems.
    Feel free to use my german language files – everything is translated except the admin interface.

    in reply to: Members Sidebar #49171
     ofcentral
    Participant

    Hi laura,
    oh, you’re right πŸ˜€ thank you very much!
    You’re support is really great!

    in reply to: Members Sidebar #49095
     ofcentral
    Participant

    Ok, it seems that my link didn’t work.
    I meant your demo member page: http://seventhqueen.com/demo/sweetdatewp/members/an-ra/

    in reply to: Translation problem #48954
     ofcentral
    Participant

    yes, of course, thank you very much!

    by the way, I translated everything again with PoEdit on my local machine. Some phrases in “/membership-account/membership-levels/” are still english, altough I translated them in my .po-File.

    in reply to: Translation problem #48856
     ofcentral
    Participant

    Now I translated some strings in the SweetDate text domain “BuddyPress”. After saving them, the them “forgot” to show the already translated strings as “Quick profile navigation” and “Friend Requests”!
    It seems that this translation plugin has some bugs?!

    in reply to: Translation problem #48729
     ofcentral
    Participant

    Please also have a look here (screenshots in the attachement)

    The strings have been translated, but they’re still shown in english.

    in reply to: Translation problem #48727
     ofcentral
    Participant

    Hi Laura,
    thank you for your answer.
    Strange, I translated that several times, and sometimes the theme also shows this translation. But as soon as I save the text domain β€œpmpro”, the theme “forgets” some of my theme translations.

    in reply to: Translation problem #48527
     ofcentral
    Participant

    Thank you for your fast answer!
    http://www.floggster.com/login
    Blog Password: F*4P8aGNp*wTbdwZ@T^^
    Username: abe-temporary
    Password: vAtDkywc2gUXcf2n7vQp

    in reply to: Translation problem #48424
     ofcentral
    Participant

    Attached my .po File. Feel free to use it as a contribution as soon as we fixed the bug πŸ˜‰

    in reply to: How to change matching system #39258
     ofcentral
    Participant

    great, thank you!

    in reply to: How to change matching system #38735
     ofcentral
    Participant

    @abe, did you already have time to check that?
    maybe you can implement a backend-function to translate these fields. I think many users have this problem.

    in reply to: Matching Fields not showing correctly and fail to work #38537
     ofcentral
    Participant
    in reply to: Translation #38468
     ofcentral
    Participant

    Yes, without hardcoding.

    How I did it:
    1) Import the languages files in the plugin
    2) the plugin scans all BuddyPress-Files
    3) Download the .mo and .po files
    4) edit it with Poedit, now you should see these words.

    in reply to: Translation #38456
     ofcentral
    Participant

    I guess localization plugin is not able to display these items:

    in reply to: Translation #38443
     ofcentral
    Participant

    Okay, I found it – had to download the .mo and .po-File and edit with Poedit.

    in reply to: Translation #38440
     ofcentral
    Participant

    @webpixel, does that work for you? I translated all of them, but on the profile page “Profile”, “Notifications” and “Friends” are still not translated (the others are).


    @Laura
    :
    ScriptingGuard in the localization plugin returns these errors:
    /wp-content/themes/sweetdate/framework/shortcodes/tinymce/js/jquery.livequery.js
    /wp-content/themes/sweetdate/framework/shortcodes/tinymce/js/jquery.appendo.js
    /wp-content/themes/sweetdate/framework/shortcodes/tinymce/js/base64.js
    /wp-content/themes/sweetdate/framework/shortcodes/tinymce/js/popup.js

    in reply to: How to change matching system #38216
     ofcentral
    Participant

    Thank you @Abe!

    URL: http://testsystem.oliver-flueckiger.ch/login
    Blog Password: F*4P8aGNp*wTbdwZ@T^^
    Username: abe-temporary
    Password: W8*5&$ty8shbf6Hs2qEX

    My functions.php:

    COPY CODE
    <?php
    /**
     * @package WordPress
     * @subpackage Sweetdate
     * @author SeventhQueen <themesupport@seventhqueen.com>
     * @since Sweetdate 1.0
     */
    
    /**
     * Sweetdate Child Theme Functions
     * Add extra code or replace existing functions
    */ 
    //my changes to profile tabs 
    
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
    	global $bp_tabs;
    	$bp_tabs = array();
    
    	$bp_tabs['base'] = array(
    			'type' => 'regular',
    			'name' => __('About me', 'kleo_framework'),
    			'group' => 'Base',
    			'class' => 'regulartab'
    	);
    
    	$bp_tabs['Ich suche'] = array(
    			'type' => 'regular',
    			'name' =>  __('Ich suche', 'kleo_framework'),
    			'group' => 'Ich suche',
    			'class' => 'regulartab'
    	);
    	
    	$bp_tabs['Aussehen'] = array(
    			'type' => 'regular',
    			'name' => __('Aussehen', 'kleo_framework'),
    			'group' => 'Aussehen',
    			'class' => 'regulartab'
    	);
    			
    	$bp_tabs['Meine Vorlieben'] = array(
    			'type' => 'regular',
    			'name' => __('Meine Vorlieben', 'kleo_framework'),
    			'group' => 'Meine Vorlieben',
    			'class' => 'regulartab'
    	);
    	
    	/* rtMedia tab - only if plugin installed */
    	if (class_exists('RTMedia')) 
    	{
    		$bp_tabs['rtmedia'] = array(
    				'type' => 'rt_media',
    				'name' => __('Photos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    
    	/* Bp-Album tab - only if plugin installed */
    	elseif (function_exists('bpa_init')) {
    		$bp_tabs['bp-album'] = array(
    				'type' => 'bp_album',
    				'name' => __('My photos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}	
    	
    }	
    /* Disable WordPress Admin Bar for all users but admins. */
      show_admin_bar(false);
     
    //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'] = 'Ich bin';
    	$kleo_config['matching_fields']['looking_for'] = 'Ich suche';
    	
    	//sex percentage
    	$kleo_config['matching_fields']['sex_percentage'] = 49;
    	
    	//single value fields like select, textbox,radio
    	$kleo_config['matching_fields']['single_value'] = array (
    		'Status' => 10,
    		'Country' => 5,
    		'City' => 5,
    		'Drinking Habits' => 5,
    		'Dietary Preferences' => 5,
    		'Smoking Habits' => 5
    	);
    	
    	//multiple values fields like multiple select or checkbox
    	$kleo_config['matching_fields']['multiple_values'] = array (
    		'For' => 5,
    		'Interests' => 5,
    	);
    }
    
    ?>
    
    in reply to: Progress Bar for Profile #38076
     ofcentral
    Participant

    Maybe you didn’t activate the advanced profiles in your buddypress-settings?

    in reply to: How to change matching system #38074
     ofcentral
    Participant

    Thank you very much for your fast reply, that’s what I call great support!

    yes, I also renamed it there, I tried it several times. Maybe there’s something wrong with the code?

    in reply to: How to change matching system #38013
     ofcentral
    Participant

    Hi,
    I’m referring to Post .
    I translated the fields “I am a” and “Looking for” both in the .po-File as well as in the WordPress-Profile Fields-Section. As soon as I translate the fields in the Profile Fields-Section (only in the .po-File doesn’t work), the matching algorithm doesn’t work, altough I also translated it in your custom code:

    COPY 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'] = 'Translation 1';
    	$kleo_config['matching_fields']['looking_for'] = 'Translation 2';
    
    	//sex percentage
    	$kleo_config['matching_fields']['sex_percentage'] = 49;
    	);
    }
    

    Can you help me? Thanks a lot!

    in reply to: Profile header: #37994
     ofcentral
    Participant

    great, thank you!

    in reply to: Profile header: #37926
     ofcentral
    Participant

    Thanks for your fast answer!
    Which custom code do you mean?

    in reply to: Translation contribution #37873
     ofcentral
    Participant

    @rugwarrior i’m translating it to german, already got 35%. you could help me?

    in reply to: Buddypress – Who clicked at my Profile? #37173
     ofcentral
    Participant

    Hi @Adam,
    did you hack the plugin?

Viewing 27 posts - 1 through 27 (of 27 total)

Log in with your credentials

Forgot your details?