Loading...

evani2003

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Localize countries in Dropbox #10003608
    evani2003
    Participant

    Thank you a thousand times!

    My boyfriend helped to optimize it. Use this code instead of yours in your functions.php and you will have no worries about updating:

    add_filter( 'option_pie_countries', 'eva_translate_countries_option' );
    
    function eva_translate_countries_option ( $countries ) {
    	
    	$countries_t = array();
    	for($i=0; $i<sizeof($countries); $i++){
     		$ct = __($countries[$i], "piereg");
     		array_push($countries_t, $ct);
    	}
    	sort($countries_t);
    	$countries = $countries_t;
    				
    	return $countries;
    }

    🙂

    in reply to: Text area problems (line breaks, quotation marks) #10003589
    evani2003
    Participant

    What kind of login information do you need? How/Where can I provide it to you?

    in reply to: Localize countries in Dropbox #10003588
    evani2003
    Participant

    Hey,

    I have the same problem. How did you solve it?

    Thank you!

    Eva

    in reply to: Line break in textarea #10003537
    evani2003
    Participant

    Do you mean something like that http://dgkv.info/info.php ?

    in reply to: Line break in textarea #10003508
    evani2003
    Participant

    Hello,

    I have the same issue. We are using the “Text Area” field. We want that the users could add some text about themselves in this field. Some users want to add line breaks here, but after saving all line breaks are deleted. Another problem are quotation marks added to this field. Every time after saving, a new slash is added before the quotation mark (after a while it looks like ////////”)
    Please have a look at this issue. It would be gerat to have a tiny mce editor or something like that for the “Text Area” field. I think this would be great for a lot of pie register users too.

    Thanks!

    in reply to: Line break in textarea #10003506
    evani2003
    Participant

    Hello,

    I have the same issue. We are using the “Text Area” field. We want that the users could add some text about themselves in this field. Some users want to add line breaks here, but after saving all line breaks are deleted. Another problem are quotation marks added to this field. Every time after saving, a new slash is added before the quotation mark (after a while it looks like ////////”)
    Please have a look at this issue. It would be gerat to have a tiny mce edior or something like that for the “Text Area” field. I think this would be great for a lot of pie register users too.

    Thanks!

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