• Resolved moertel62

    (@moertel62)


    Hallo,
    wie kann ich den angezeigten Text von den G?stebucheintr?gen von
    annonymous schrieb am 21.Dezember 2018
    in
    annonymous schrieb im Dezember 2018
    ?ndern?

    function my_gwolle_gb_entry_read( $entry_html, $entry ) {
    	// $entry_html is a string
    	$old = '<span class="gb-date"> schrieb am ';
    	$new = '<span class="gb-date"> schrieb im ';
    	$entry_html = str_replace( $old, $new, $entry_html );
    	return $entry_html;
    }
    add_filter( 'gwolle_gb_entry_read', 'my_gwolle_gb_entry_read', 10, 2 );<code></code>

    funktioniert nicht mehr

    Dankefür die Hilfe

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Aha, the CSS classes have changed. Does this code work better?

    function my_gwolle_gb_entry_read( $entry_html, $entry ) {
    	// $entry_html is a string
    	$old = '<span class="gb-date-wrote-text"> schrieb am';
    	$new = '<span class="gb-date-wrote-text"> schrieb im';
    	$entry_html = str_replace( $old, $new, $entry_html );
    	return $entry_html;
    }
    add_filter( 'gwolle_gb_entry_read', 'my_gwolle_gb_entry_read', 10, 2 );
    Thread Starter moertel62

    (@moertel62)

    Hi Marcel

    it works, thanks for the second time ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text ?ndern’ is closed to new replies.