Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author DesignWall

    (@designwall)

    It’s placeholder string, you can open the Template.php file in the inc folder of the plugin then find the line 483, 484.

    Thread Starter olegator1

    (@olegator1)

    I did it! Can i ad the same placeholder to the answer form, that is below?
    https://imglink.ru/show-image.php?id=3c748b367dfcf5032b963c8c92140c6e

    Plugin Author DesignWall

    (@designwall)

    you can open the answer-submit-form.php file then find the line 16.
    Replace with the following code:
    <?php dwqa_init_tinymce_editor( array( 'content' => $content, 'textarea_name' => 'answer-content', 'placeholder' => 'your string', 'id' => 'dwqa-answer-content' ) ) ?>

    Thread Starter olegator1

    (@olegator1)

    Plugin Author DesignWall

    (@designwall)

    I have checked on our demo and it works fine, you can send me the code in your file. I will check it.

    Thread Starter olegator1

    (@olegator1)

    <?php
    /**
    * The template for displaying answer submit form
    *
    * @package DW Question & Answer
    * @since DW Question & Answer 1.4.3
    */
    ?>

    <div class=”dwqa-answer-form”>
    <?php do_action( ‘dwqa_before_answer_submit_form’ ); ?>
    <div class=”dwqa-answer-form-title”><?php _e( ‘Your Answer’, ‘dwqa’ ) ?></div>
    <form name=”dwqa-answer-form” id=”dwqa-answer-form” method=”post”>
    <?php dwqa_print_notices(); ?>
    <?php $content = isset( $_POST[‘answer-content’] ) ? sanitize_text_field( $_POST[‘answer-content’] ) : ”; ?>
    <?php dwqa_init_tinymce_editor( array( ‘content’ => $content, ‘textarea_name’ => ‘answer-content’, ‘placeholder’ => ‘Ответ’, ‘id’ => ‘dwqa-answer-content’ ) ) ?>
    <?php dwqa_load_template( ‘captcha’, ‘form’ ); ?>

    <?php if ( dwqa_current_user_can( ‘post_answer’ ) && !is_user_logged_in() ) : ?>
    <p>
    <label for=”user-email”><?php _e( ‘Your Email’, ‘dwqa’ ) ?></label>
    <?php $email = isset( $_POST[‘user-email’] ) ? sanitize_email( $_POST[‘user-email’] ) : ”; ?>
    <input type=”email” class=”” name=”user-email” value=”<?php echo $email ?>” >
    </p>
    <p>
    <label for=”user-name”><?php _e( ‘Your Name’, ‘dwqa’ ) ?></label>
    <?php $name = isset( $_POST[‘user-name’] ) ? esc_html( $_POST[‘user-name’] ) : ”; ?>
    <input type=”text” class=”” name=”user-name” value=”<?php echo $name ?>” >
    </p>
    <?php endif; ?>

    <select class=”dwqa-select” name=”dwqa-status”>
    <optgroup label=”<?php _e( ‘Who can see this?’, ‘dwqa’ ) ?>”>
    <option value=”publish”><?php _e( ‘Public’, ‘dwqa’ ) ?></option>
    <option value=”private”><?php _e( ‘Only Me & Admin’, ‘dwqa’ ) ?></option>
    </optgroup>
    </select>

    <input type=”submit” name=”submit-answer” class=”dwqa-btn dwqa-btn-primary” value=”<?php _e( ‘Submit’, ‘dwqa’ ) ?>”>
    <input type=”hidden” name=”question_id” value=”<?php the_ID(); ?>”>
    <input type=”hidden” name=”dwqa-action” value=”add-answer”>
    <?php wp_nonce_field( ‘_dwqa_add_new_answer’ ) ?>
    </form>
    <?php do_action( ‘dwqa_after_answer_submit_form’ ); ?>
    </div>

    Plugin Author DesignWall

    (@designwall)

    You can copy code in the following link: https://snippi.com/s/04izl65
    Note: Please click the Raw button under the code section box.

    Thread Starter olegator1

    (@olegator1)

    I do not why but it does not work too

    Thread Starter olegator1

    (@olegator1)

    I do not know why but it does not work too

    Plugin Author DesignWall

    (@designwall)

    Please send me your site URL.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to translate into russian “Comment” on answer page’ is closed to new replies.