-
Posts
2,678 -
Joined
-
Last visited
Content Type
Profiles
Forums
Tutorials
Everything posted by truongwp
-
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.
-
Hello, Actually, you can customize this by overriding review box template. But this will require coding skill. Thank you.
-
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
Hello, Please list all features you want. We will consider adding them to future versions. Thank you. -
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
For CSS code, please try using this: .wq-question-image img { width: auto; } Thank you. -
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
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. -
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
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. -
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
Hello, I don't see your images are scaled. Please check again. Thank you. -
[WP Quiz Pro] Flip Card Featured Image Not showing up
truongwp replied to fruitsinsuits.shop's topic in Pre Sales Questions
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. -
[WP Quiz Pro] Multiple results in my personality quiz
truongwp replied to ryan8's topic in Pre Sales Questions
Hello, Please share your details in the Sensitive data area, don't post them in your reply. Thank you. -
[WP Quiz Pro] Multiple results in my personality quiz
truongwp replied to ryan8's topic in Pre Sales Questions
Hello, Can you please share your quiz URL for us can check it? Thank you. -
[WP Review Pro] Migrating old reviews
truongwp replied to nameez_nazeem's topic in Pre Sales Questions
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. -
[WP Review Pro] Migrating old reviews
truongwp replied to nameez_nazeem's topic in Pre Sales Questions
Hello, We can do those 2 things. But you need to add some code to your theme. Thank you. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
Hello again, I want to ask you a question. Do you want to show ads on page load or after clicking answer? Thank you. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
Hello, Thank you for understanding. We will consider to add this feature, or add hooks for extending to support this. Thank you very much. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
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. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
Hello, Do you want to display all questions in a page or only one question in a page with next/prev buttons? Thank you. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
Hello, Do you want to show one ads for all questions or each question has an unique ad? Thank you. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
Hello, You will need to add custom code to your child theme to do this. Thank you. -
[WP Quiz Pro] Does your plugin have this functionality?
truongwp replied to epicstephen's topic in Pre Sales Questions
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. -
[Rank Math] Doesn't accept its own settings json import file
truongwp replied to florencelevot's topic in Rank Math Free
Hello, I can't login to your site now. It shows "Not available." Can you please check your login url again? Thank you. -
[Rank Math] Doesn't accept its own settings json import file
truongwp replied to florencelevot's topic in Rank Math Free
Hello, Did you go to wp-admin > Rank Math > Import & Export > Import Settings? Thank you. -
[WP Review Pro] Is WP Review Pro compatible with MyCred?
truongwp replied to kontakt14's topic in Pre Sales Questions
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. -
[Rank Math SEO Plugin] HTTPS redirect error when plugin active
truongwp replied to Nadine_Shemilt's topic in Rank Math Free
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. -
[Content Locker] Use within template file
truongwp replied to andrew15's topic in Pre Sales Questions
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.