Beiträge von kajinjeyam

    [COLOR=#333333]Sowas wie das [/COLOR][COLOR=#333333][FONT=arial black][FONT=arial]WP Inline Comment Errors Plugin habe ich mir vorgestellt. Kann man sowas auch ohne Plugin umsetzen? Wenn ja wie. Ausserdem funktioniert das Plugin auch nicht wirklich. Da kommt folgende Fehlermeldung:
    [/FONT][/FONT][/COLOR][COLOR=#000000][FONT=Times]Warning[/FONT][/COLOR][COLOR=#000000][FONT=Times]: in_array() expects parameter 2 to be array, null given in[/FONT][/COLOR][COLOR=#000000][FONT=Times]/home/kajen/public_html/home/wp-content/plugins/wp-inline-comment-errors/wp_inline_comment_errors.class.php[/FONT][/COLOR][COLOR=#000000][FONT=Times] on line [/FONT][/COLOR][COLOR=#000000][FONT=Times]536

    Warning: array_combine() expects parameter 1 to be array, null given in/home/kajen/public_html/home/wp-content/plugins/wp-inline-comment-errors/wp_inline_comment_errors.class.php on line 516[/FONT][/COLOR]

    Sowas wie das [FONT=arial black][FONT=arial]WP Inline Comment Errors Plugin habe ich mir vorgestellt. Kann man sowas auch ohne Plugin umsetzen? Wenn ja wie. Ausserdem funktioniert das Plugin auch nicht wirklich. Da kommt folgende Fehlermeldung:
    [/FONT][/FONT][COLOR=#000000][FONT=Times]Warning[/FONT][/COLOR][COLOR=#000000][FONT=Times]: in_array() expects parameter 2 to be array, null given in[/FONT][/COLOR][COLOR=#000000][FONT=Times]/home/kajen/public_html/home/wp-content/plugins/wp-inline-comment-errors/wp_inline_comment_errors.class.php[/FONT][/COLOR][COLOR=#000000][FONT=Times] on line [/FONT][/COLOR][COLOR=#000000][FONT=Times]536

    Warning: array_combine() expects parameter 1 to be array, null given in/home/kajen/public_html/home/wp-content/plugins/wp-inline-comment-errors/wp_inline_comment_errors.class.php on line 516


    [/FONT][/COLOR]

    Hallo,
    Zur Zeit wird man bei meinem Kommentar Formular auf eine extra Fehlermeldung Seite von Wordpress weitergeleitet, wenn ein Pflichtfeld nicht ausgefüllt wird. Dies möchte ich nicht, da der Benutzer immer auf zurück klicken muss und ich finde, dass es Designmäßig nicht gut aussieht. Gibt's da eine Möglichkeit, dies wie beim Contactform 7, umzustzen? Möglichst ohne Plugin?

    Danke euch im Vorraus!

    Hallo,

    Ich habe versucht, mein Kontakt Formular etwas abzuändern. Dazu habe ich den folgenden Code in functions.php benutzt:

    Code
    $comments_args = array(        // change the title of send button 
            'label_submit'=>'Send',
            // change the title of the reply section
            'title_reply'=>'Write a Reply or Comment',
            // remove "Text or HTML to be displayed after the set of comment fields"
            'comment_notes_after' => '',
            // redefine your own textarea (the comment body)
            'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><br /><textarea id="comment" name="comment" aria-required="true"></textarea></p>',
    );
    comment_form($comment_args);

    und im comments.php:

    PHP
    <?php comment_form($args); ?>

    Doch leider funktioniert das nicht so recht.

    Hallo,
    Ich möchte beim previous_post_link und next_post_link, dass der Name des nächsten post angezeigt wird an Stelle von weiter oder zurück. Zur Zeit sieht mein Code in single.php folgendermaßen aus:

    PHP
    <?php previous_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ); ?>
                <?php next_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ); ?>
    
    
    <ul id="previous-next-links">
                <?php previous_post_link('%link', '<li class="back">&laquo; Zur&uuml;ck</li>', TRUE); ?> 
                <?php next_post_link( '%link', '<li class="next">Weiter &raquo;</li>', TRUE ); ?> 
                </ul>

    Den code folgendermaßen abzuändern bringt nichts, da dann auch Posts von anderen Kategorien erscheinen:

    PHP
    <?php previous_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ); ?>
                <?php next_post_link( $format, $link, $in_same_term = false, $excluded_terms = '', $taxonomy = 'category' ); ?>
    
    
    
    
    <ul id="previous-next-links">
                <?php previous_post_link('%link'); ?> 
                <?php next_post_link( '%link'); ?> 
                </ul>

    Und wenn ich das TRUE drinnen lasse erscheint als Link nur eine 1. Anyone could help me?

    Hallo,

    seitdem ich die "/%category%/%postname%/" Struktur verwende, funktioniert meine pagination nicht mehr. Bei der Kategorie Basis, habe ich ein . hineingesetzt. Anybody help?

    Das hier ist der Code:

    Hallo,

    ich habe versucht den Befehl commen_reply_link() in mein comments.php file einzubinden, leider ohne Erfolg. Kann mir da jemand helfen?