[OFFER ALERT!] This Halloween, Get Any Premium Theme for Just $19 [GET IT NOW]
Jump to content

truongwp

Support
  • Posts

    2,678
  • Joined

  • Last visited

Everything posted by truongwp

  1. Hello, Sorry for this confusion. That means there is no way to show users rating (both features and non-features) in the place of author rating without coding skills required. Thank you.
  2. Hello, Actually, you can customize this by overriding review box template. But this will require coding skill. Thank you.
  3. Hello, Please list all features you want. We will consider adding them to future versions. Thank you.
  4. For CSS code, please try using this: .wq-question-image img { width: auto; } Thank you.
  5. Hello, Please share your login details in the "Sensitive Data" section by clicking the Add button on the top and bottom right-hand side on this ticket and follow the instructions shown in the screenshot below: Looking forward to helping you. Thank you.
  6. Hello, Please copy this file "wp-quiz-pro/templates/global/quiz-open.php" to "your-child-theme/wp-quiz/global/quiz-open.php". After that, please share us your admin account in the Sensitive data area. Thank you.
  7. Hello, I don't see your images are scaled. Please check again. Thank you.
  8. Hello, When you preview a quiz, it uses your theme template, so it will show thumbnail in most cases. The quiz shortcode template doesn't show thumbnail, but you can override that template. To prevent images from scaling, you can use custom CSS code. Please give your quiz URL, we will check and give you the code. Thank you.
  9. Hello, Please share your details in the Sensitive data area, don't post them in your reply. Thank you.
  10. Hello, Can you please share your quiz URL for us can check it? Thank you.
  11. Hello, it will take about 1 or 2 hours. Don't worry we will help you do that. Do you want to sort by comment reviews or visitor reviews? Thank you.
  12. Hello, We can do those 2 things. But you need to add some code to your theme. Thank you.
  13. Hello again, I want to ask you a question. Do you want to show ads on page load or after clicking answer? Thank you.
  14. Hello, Thank you for understanding. We will consider to add this feature, or add hooks for extending to support this. Thank you very much.
  15. Hello, We are developing the new version of this plugin and we will support adding ads to that position. In the current version, we can add custom HTML to that position but can't add custom settings to questions. So it will be too hard to manage your ads. If you display all questions in a page, we can use javascript to move ads from the bottom of answers to the above of answers. Thank you.
  16. Hello, Do you want to display all questions in a page or only one question in a page with next/prev buttons? Thank you.
  17. Hello, Do you want to show one ads for all questions or each question has an unique ad? Thank you.
  18. Hello, You will need to add custom code to your child theme to do this. Thank you.
  19. Hello, We can add ADs between questions, not between question and its own answers. But maybe we can do that via child theme. Thank you.
  20. Hello, I can't login to your site now. It shows "Not available." Can you please check your login url again? Thank you.
  21. Hello, Did you go to wp-admin > Rank Math > Import & Export > Import Settings? Thank you.
  22. Hello, Each review is store as a comment with `comment_type` is `wp_review_comment` or `wp_review_visitor`, so you can hook into `wp_insert_comment` to do your own actions (increase point or something else). This is an example: add_action( 'wp_insert_comment', function( $comment_id, WP_Comment $comment ) { if ( $comment->comment_type === 'wp_review_comment' ) { // Increase point or do something. } }, 10, 2 ); Hope this helps. Thank you.
  23. Hello, For WP Review Pro problem, you need to disable "Enable User rating in old posts" option in wp-admin > Settings > WP Review Pro > Global > General. I disabled it for you. Please check again. Thank you.
  24. Hello, For this "I wanted to change the description to a category and I received a 403 page Forbiden.", I see that I can update the description of "Uncategorized" category sucessfully. Please check again and create a new topic for this issue if it's still present. Thank you.
  25. Hello, I'm not sure this is what you need but you can use do_shortcode() function to display the shortcode in your template. https://developer.wordpress.org/reference/functions/do_shortcode/ Thank you.
×
×
  • Create New...