sanumolu5
Forum Replies Created
-
Hi @dioni00,
Could you please tell which template should be modified to achieved the desired result?
hi @wprashed,
Then how to get to the solution? what is the solution?
Hi @wprashed,
From the Tutor LMS documentation, we cannot directly edit folders/files except templates, for plugin customization. Isn’t it?
Hi @largbasket,
Thank you for responding. We’ve successfully executed the process of duplicating the plugins/<plugin name>/templates into the child theme and renamed it to ‘tutor’. However, we’re uncertain about the specific files that need modification to attain the desired functionality. Your guidance in this matter would be greatly appreciated.Hello Dionisio,
Since this forum relies on volunteer assistance, would it be possible to leave this thread open and unresolved? This way, there’s a chance someone might offer further assistance regarding this matter.
Thank you.
Here is the video link
https://drive.google.com/file/d/1OT73ToK_Qb_5y581EwkOZb5-dICclOxp/view?usp=sharing
I appreciate your explanation. Would it be possible for me to leave this discussion thread open? Given that this is a voluntary forum, there’s a chance that a skilled developer or tech enthusiast might take an interest in analyzing the issue within the provided code. Their assistance could prove invaluable in resolving the matter.
Thank you for your response. Could you please provide more details about the data-related issues you mentioned? Additionally, I’d appreciate clarification on which specific website you are referring to.
Our support ticket remains open, and our developers have been diligently working with yours to resolve the issues we’ve encountered.
In fact, we’ve provided a recorded video demonstrating the major flaws upon your request. If it would help, we are more than willing to share the video here as well.
Given the differing responses from your developer team and your recent reply, it’s challenging for us to discern which information is accurate. Your clarification would greatly assist us in moving forward.
- This reply was modified 1 year, 3 months ago by sanumolu5.
An update – Deactivating Plugin Organizer has resolved this issue. Is there a way to make Gamipress compatible with Plugin Organizer?
An update – Deactivating Plugin Organizer has resolved this issue. Is there a way to make Gamipress compatible with Plugin Organizer?
@dioni00 ,
On one of my websites, I’ve utilized Profile Builder for Logins and Fluent Forms for Registrations. However, I’ve noticed that there are no options for Profile Builder and Fluent Forms in the Gamipress points awarding settings. How can I go about awarding points for Logins and Registrations in this specific setup?
That worked. Thank you.
I’ve got a technical question. Could you clarify the distinctions and commonalities between Achievements and Ranks? While I grasp how Achievements are used, I’m a bit uncertain about the purpose and differentiation of Ranks. Would you be able to provide some insights to clarify this for me?
Hi @dioni00,
Indeed, I discovered this even before receiving your response, and it proved effective. At present, I’ve employed [gamipress_user_points type=”all”] to exhibit user points. At this juncture, I’d like to inquire whether it’s feasible to display user points horizontally instead of vertically.
Furthermore, akin to how [gamipress_user_points type=”all”] exhibits all earned point types for the user, is there a method to compile a list of all the user’s achievements? Presently, only [gamipress_last_achievements_earned] is available in the shortcodes you provided.
Hi @dioni00 ,
Furthermore, I’m encountering a problem on another website where I’ve positioned Gamipress user achievements, user points, and user ranks within a sidebar widget. Despite providing titles for these widgets, they aren’t visible when viewed. Kindly refer to the attached screenshots for visual clarity.
https://drive.google.com/file/d/1nCVGw0KqppyZ2BAmCweJEvC4-psAqjxj/view?usp=sharing
https://drive.google.com/file/d/1h2jIsK8-pB9zoT570fiNnwF6jbA7U-Op/view?usp=sharing
Hi @dioni00
I’ve successfully created a dedicated dashboard page called “Rewards” by crafting a rewards.php file within themes/<child theme>/tutor/dashboard. Below is the code I’ve incorporated into the rewards.php file:
<?php /** * Frontend Rewards Page * * @package Tutor\Templates * @subpackage Dashboard * @author JKYog <[email protected]> * @link https://themeum.com * @version 1.4.3 */ use TUTOR\Input; // Obtain the current user's ID $user_id = get_current_user_id(); // Fetch the user's accumulated points $user_points = gamipress_get_user_points( $user_id ); // Retrieve the user's achievements $user_achievements = gamipress_get_user_achievements( $user_id ); ?> <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-24"><?php esc_html_e( 'Rewards', 'tutor' ); ?></div> <div class="tutor-dashboard-content-inner"> <section class="user-rewards"> <div class="tutor-row tutor-mb-24"> <h2><?php esc_html_e( 'User Points:', 'tutor' ); ?> <?php echo $user_points; ?></h2> </div> <div class="tutor-row tutor-mb-24"> <h3><?php esc_html_e( 'Achievements:', 'tutor' ); ?></h3> <?php echo do_shortcode( '[gamipress_user_achievements user_id="' . $user_id . '"]' ); ?> </div> <div class="tutor-row tutor-mb-24"> <h3><?php esc_html_e( 'Ranks:', 'tutor' ); ?></h3> <?php echo do_shortcode( '[gamipress_user_ranks user_id="' . $user_id . '"]' ); ?> </div> </section> </div>
Unfortunately, I’m encountering an issue where the Gamipress shortcodes aren’t functioning as anticipated. Instead of displaying the expected outcomes, the shortcodes themselves are being shown. I’m actively seeking a resolution for this matter. Any assistance or insights you can offer to overcome this challenge would be immensely valuable.