• Resolved kienvictory

    (@kienvictory)


    Hello!
    I user shortcode for my singgle page is:
    echo do_shortcode('[site_reviews_form assign_to="post_id" title="Submit a Review" description="Required fields are marked with an asterisk (*)"]');
    But my site not show description.
    Please help me fix it!
    Thanks!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Hi @kienvictory

    The “description” shortcode option has been removed in v3.0

    The reason for this is that the option was unnecessary as WordPress makes it easy to add this yourself in the editor without the overhead of having to generate it through the shortcode functions.

    I suggest you remove the “description” and “title” options from the shortcode and enter them yourself like this:

    <h3>Submit a Review</h3>
    <p>Required fields are marked with an asterisk (*)</p>
    <?= do_shortcode( '[site_reviews_form assign_to=post_id]' ); ?>
    • This reply was modified 5 years, 10 months ago by Gemini Labs.
    • This reply was modified 5 years, 10 months ago by Gemini Labs.
    Thread Starter kienvictory

    (@kienvictory)

    Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Site reviews form description not show.’ is closed to new replies.