ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster

    @luiflores83gmail-com

    Hi again, I see that your domain is http, if I generate licences for your http domain name and then if you migrate to https after, the licences will not work on your https domain. If you are planning to activate https on your site please request licences when you switch to the https. Otherwise, I can generate licences for your http domain.

    Cheers.

    ahmetsali
    Keymaster

    @luiflores83gmail-com

    Hi, Elementor Pro is not included with the theme and it is not needed to create a site as in our demo sites. If you want the pro plugins for the included plugins, just provide your final domain name and I will send you the license keys for TutorLMS Pro, Jet Elements, Jet Popup and Amelia booking pro.

    Cheers.

    ahmetsali
    Keymaster

    @karolusk

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    Posted in : Some Questions :)

    You are welcome :) We’d be delighted if you could spare a minute to rate the theme on ThemeForest. Your feedback will boost our motivation and help us to work harder on future updates.

    https://themeforest.net/downloads

    I appreciate your support.

    ahmetsali
    Keymaster

    @blve

    sent!

    ahmetsali
    Keymaster

    @juliuswu

    sent!

    ahmetsali
    Keymaster

    @pranadan

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    Posted in : Some Questions :)

    Hi again, no, you are all good, I already fixed the markup issue on your resume page content.

    Cheers.

    ahmetsali
    Keymaster
    Posted in : Some Questions :)

    Hi, I fixed the issue; there was invalid HTML markup on the English version of your resume page (an unclosed <i> tag), which was breaking the page layout.

    Have a nice day!

    ahmetsali
    Keymaster

    @mich

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @samala

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @samala

    Hi, what is your final domain name?

    ahmetsali
    Keymaster

    @genordet

    sent!

    ahmetsali
    Keymaster

    @gulumglobal

    activated!

    ahmetsali
    Keymaster

    Hi, if you want to request the license keys for activating the pro plugins, please use the topic below;

    https://www.pixelwars.org/forums/topic/tutorlms-pro/

    Cheers.

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    Hi again, here is a new response from the plugin support team;

    1-) Custom Error Message for Existing Users To override the message properly, you will need to modify the original template for the modal or page. The provided snippet might not work as expected if it was generated incorrectly. Instead, you can try customizing the error message by editing the template file directly within your theme.

    2-) Coupon Codes Not Working Coupon codes will not apply if the course has a sale price set. Please try using the coupon on a course without a sale price and see if it works.

    3-) Adding Checkboxes for Terms & Privacy Policy You can follow this step-by-step process to add checkboxes for Terms & Conditions and Privacy Policy to your registration form:

    Step 1: Add Required Fields & Save Metadata Add the following code to your theme’s functions.php file:

    // Add required fields for terms, newsletters, and privacy policy
    add_filter('tutor_student_registration_required_fields', 'required_terms_newsletters_callback');
    if (!function_exists('required_terms_newsletters_callback')) {
       function required_terms_newsletters_callback($atts) {
           $atts['agree_terms'] = 'You must agree to the Terms & Conditions.';
           $atts['privacy_policy'] = 'You must agree to our Privacy Policy.';
           return $atts;
       }
    }
    
    // Save checkbox values after registration
    add_action('user_register', 'save_checkbox_after_registration');
    add_action('profile_update', 'save_checkbox_after_registration');
    if (!function_exists('save_checkbox_after_registration')) {
       function save_checkbox_after_registration($user_id) {
           if (isset($_POST['agree_terms'])) {
               update_user_meta($user_id, '_agree_terms', 'yes');
           }
           if (isset($_POST['privacy_policy'])) {
               update_user_meta($user_id, '_privacy_policy', 'yes');
           }
       }
    }
    

    Step 2: Modify the Registration Form Template

    Locate the registration.php file in your theme: yourtheme/tutor/dashboard/registration.php
    Add the following checkboxes near line 165 (or wherever the form fields are located):

    I agree to the Terms & Conditions

    I agree to the Privacy Policy

    You can find the code reference at https://codefile.io/f/yaXGUvpLC5

    Let me know if you need further clarification.

    ahmetsali
    Keymaster

    @janlankas

    Hi, it looks like you are on a staging domain, licenses are generated domain basis so please request the licenses when you switch to the final domain. You can test all the pro features without activating the plugins, activation is required for enabling automatic updates.

    ahmetsali
    Keymaster

    @wiserways

    sent you an e-mail.

    ahmetsali
    Keymaster

    @humanresofting

    Hi, your license is activated now.

    ahmetsali
    Keymaster

    @colleen-godfreygmail-com

    Hi again, it looks like you are on a staging domain, licenses are generated domain basis so please request the licenses when you switch to the final domain. You can test all the pro features without activating the plugins, activation is required for enabling automatic updates.

    Here is the link to the documentation.

    https://themes.pixelwars.org/doc/efor/

    if you have further questions about the theme, please create a new topic about it.

    Thanks.

    ahmetsali
    Keymaster

    @h7

    sent!

    ahmetsali
    Keymaster

    Hi, I just checked and your purchase code is valid, so you created a new topic here. Where else exactly is your developer trying to use the purchase code and getting an invalid error?

    ahmetsali
    Keymaster

    @colleen-godfreygmail-com

    Hi, please create a separate topic about your issue and our support team will happily help you.

    ahmetsali
    Keymaster

    @joel

    sent!

    ahmetsali
    Keymaster

    Hi, about the icon box issue, I replaced your icon boxes in your top bar with the default image widget and added a link, they look the same when adding this custom CSS code (I already added it to your site)

    .top-bar img {
        max-height: 32px; width: auto;
    }
    

    We will also try to fix the icon box issue with future updates.

    Thanks for the feedback!

    ahmetsali
    Keymaster

    Hi, I got a response from the TutorLMS Team, can you try these and see if it works for you;

    Issue 1: Custom Error Message for Existing Users
    The code snippet you provided seems to have incorrect quotation marks. Ensure you are using the correct PHP syntax. Here is the corrected version:

    add_filter('tutor_login_required_message', 'custom_tutor_login_required_message');
    function custom_tutor_login_required_message($message) {
        return __('Du musst dich einloggen, um diesen Kurs zu kaufen. Wenn du bereits ein Konto hast, melden dich bitte an. Andernfalls verwende eine andere E-Mail Adresse.', 'tutor');
    }
    

    Place this code in your theme’s functions.php file. Ensure that your theme is active and that there are no syntax errors elsewhere in the file.

    Issue 2: Coupon Codes Not Working
    Check Coupon Settings: Ensure that the coupons are set up correctly in the Tutor LMS settings. Verify that there are no restrictions that might be causing the issue.

    Plugin Conflicts: Deactivate other plugins one by one to check if there is a conflict causing the coupon codes to fail.

    Update Plugins: Ensure that both Tutor LMS and WooCommerce (if used) are updated to the latest versions.

    Debugging: Enable debugging in WordPress to check for any error messages that might give more insight into the issue. Add the following line to your wp-config.php file:

    define(‘WP_DEBUG’, true);

    Issue 3: Adding Checkboxes for Registration Form
    To add additional checkboxes for Privacy Policy and Terms & Conditions, you can use the following approach:

    Custom Code: Add the following code to your theme’s functions.php file to add checkboxes to the registration form:

    add_action('tutor_registration_form_before_submit', 'add_custom_checkboxes');
    function add_custom_checkboxes() {
       ?>
       <p>
           <input type="checkbox" name="terms_conditions" id="terms_conditions" required>
           <label for="terms_conditions">I agree to the <a href="your-terms-url">Terms and Conditions</a></label>
       </p>
       <p>
           <input type="checkbox" name="privacy_policy" id="privacy_policy" required>
           <label for="privacy_policy">I agree to the <a href="your-privacy-url">Privacy Policy</a></label>
       </p>
       <?php
    }
    
    add_action('tutor_before_register', 'validate_custom_checkboxes');
    function validate_custom_checkboxes() {
       if (!isset($_POST['terms_conditions']) || !isset($_POST['privacy_policy'])) {
           wp_die(__('You must agree to the Terms and Conditions and Privacy Policy to register.', 'tutor'));
       }
    }
    

    Replace URLs: Make sure to replace your-terms-url and your-privacy-url with the actual URLs of your terms and privacy policy pages.

    Testing: After adding the code, test the registration form to ensure the checkboxes appear and function correctly.

    Ensure you have backups of your site before making changes to the code.

    Btw, I am working on a solution for the icon box issue with the theme.

    ahmetsali
    Keymaster

    Hi, I will forward your questions to the TutorLMS team on behalf of you. Can you please summarize all of your questions and also provide your wp-login details.

    Thanks.

    ahmetsali
    Keymaster
    Posted in : Some Questions :)

    Hi, unfortunately, it is not possible by default to change the delay on the typing effect, and code customizations are out of our support scope, you might consider hiring an expert for the code customizations.

    Have a nice day!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @humanresofting

    Hi, TutorLMS PRO is a standalone plugin, and you can install it from the Appearance > Install Theme Plugins section. if you still have trouble with it, please create a separate topic since this topis is reserved for license requests only.

    Thanks.

    ahmetsali
    Keymaster

    @wiserways

    re-sent!

    ahmetsali
    Keymaster

    @lilla

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @milip

    re-sent to your registered e-mail address.

    ahmetsali
    Keymaster

    @milip

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @elsiemae

    sent!

    ahmetsali
    Keymaster

    I see, you can remove the faded overlay from the full width image by adding this custom CSS code;

    .post-wrap:before {
        opacity: 0;
    }
    

    Cheers.

Viewing 50 posts - 1 through 50 (of 4,856 total)