ahmetsali

Forum Replies Created

list of topics you have created till now.

  • 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

    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

    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

    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

    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.

    ahmetsali
    Keymaster

    Hi, I just checked your links, and your images look sharp and high-resolution on my side.

    Btw, we are using progressive enhancement for the background images, so you will see a low-resolution image first and then it will replace it with the high resolution after it loaded about in a few seconds.

    Cheers.

    ahmetsali
    Keymaster

    Hi, I just checked your footer and I can see the social icons (black and white) on your footer, I guess you have sorted it out.

    ahmetsali
    Keymaster

    Hi, that’s awkward, default block style css is absent on some pages, you can fix it by adding this custom CSS code to Appearance > Customize > Additional CSS field;

    
    .wp-block-social-links {
        background: none;
        box-sizing: border-box;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
        text-indent: 0
    }
    
    .wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover {
        border-bottom: 0;
        box-shadow: none;
        text-decoration: none
    }
    
    .wp-block-social-links .wp-social-link svg {
        height: 1em;
        width: 1em
    }
    
    .wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
        font-size: .65em;
        margin-left: .5em;
        margin-right: .5em
    }
    
    .wp-block-social-links.has-small-icon-size {
        font-size: 16px
    }
    
    .wp-block-social-links,.wp-block-social-links.has-normal-icon-size {
        font-size: 24px
    }
    
    .wp-block-social-links.has-large-icon-size {
        font-size: 36px
    }
    
    .wp-block-social-links.has-huge-icon-size {
        font-size: 48px
    }
    
    .wp-block-social-links.aligncenter {
        display: flex;
        justify-content: center
    }
    
    .wp-block-social-links.alignright {
        justify-content: flex-end
    }
    
    .wp-block-social-link {
        border-radius: 9999px;
        display: block;
        height: auto;
        transition: transform .1s ease
    }
    
    @media (prefers-reduced-motion:reduce) {
        .wp-block-social-link {
            transition-delay: 0s;
            transition-duration: 0s
        }
    }
    
    .wp-block-social-link a {
        align-items: center;
        display: flex;
        line-height: 0;
        transition: transform .1s ease
    }
    
    .wp-block-social-link:hover {
        transform: scale(1.1)
    }
    
    .wp-block-social-links .wp-block-social-link.wp-social-link {
        display: inline-block;
        margin: 0;
        padding: 0
    }
    .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited {
        color: currentColor;
        fill: currentColor;
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link {
        background-color: #f0f0f0;
        color: #444
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon {
        background-color: #f90;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp {
        background-color: #1ea0c3;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance {
        background-color: #0757fe;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky {
        background-color: #0a7aff;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen {
        background-color: #1e1f26;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart {
        background-color: #02e49b;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble {
        background-color: #e94c89;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox {
        background-color: #4280ff;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy {
        background-color: #f45800;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook {
        background-color: #0866ff;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr {
        background-color: #0461dd;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare {
        background-color: #e65678;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github {
        background-color: #24292d;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads {
        background-color: #eceadd;
        color: #382110
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google {
        background-color: #ea4434;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar {
        background-color: #1d4fc4;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram {
        background-color: #f00075;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm {
        background-color: #e21b24;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin {
        background-color: #0d66c2;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon {
        background-color: #3288d4;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup {
        background-color: #f6405f;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest {
        background-color: #e60122;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket {
        background-color: #ef4155;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit {
        background-color: #ff4500;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype {
        background-color: #0478d7;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat {
        background-color: #fefc00;
        color: #fff;
        stroke: #000
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud {
        background-color: #ff5600;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify {
        background-color: #1bd760;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram {
        background-color: #2aabee;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr {
        background-color: #011835;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch {
        background-color: #6440a4;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter {
        background-color: #1da1f2;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo {
        background-color: #1eb7ea;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk {
        background-color: #4680c2;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress {
        background-color: #3499cd;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp {
        background-color: #25d366;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x {
        background-color: #000;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp {
        background-color: #d32422;
        color: #fff
    }
    
    :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube {
        background-color: red;
        color: #fff
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link {
        background: none
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg {
        height: 1.25em;
        width: 1.25em
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon {
        color: #f90
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp {
        color: #1ea0c3
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance {
        color: #0757fe
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky {
        color: #0a7aff
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen {
        color: #1e1f26
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart {
        color: #02e49b
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble {
        color: #e94c89
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox {
        color: #4280ff
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy {
        color: #f45800
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook {
        color: #0866ff
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr {
        color: #0461dd
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare {
        color: #e65678
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github {
        color: #24292d
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads {
        color: #382110
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google {
        color: #ea4434
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar {
        color: #1d4fc4
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram {
        color: #f00075
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm {
        color: #e21b24
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin {
        color: #0d66c2
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon {
        color: #3288d4
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup {
        color: #f6405f
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest {
        color: #e60122
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket {
        color: #ef4155
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit {
        color: #ff4500
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype {
        color: #0478d7
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat {
        color: #fff;
        stroke: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud {
        color: #ff5600
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify {
        color: #1bd760
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram {
        color: #2aabee
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr {
        color: #011835
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch {
        color: #6440a4
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter {
        color: #1da1f2
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo {
        color: #1eb7ea
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk {
        color: #4680c2
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp {
        color: #25d366
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress {
        color: #3499cd
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x {
        color: #000
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp {
        color: #d32422
    }
    
    :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube {
        color: red
    }
    
    .wp-block-social-links.is-style-pill-shape .wp-social-link {
        width: auto
    }
    
    :root :where(.wp-block-social-links .wp-social-link a) {
        padding: .25em
    }
    
    :root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
        padding: 0
    }
    
    :root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
        padding-left: .66667em;
        padding-right: .66667em
    }
    
    .wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label {
        color: #000
    }
    
    ahmetsali
    Keymaster

    Hi, you can customize your Courses Page from “TutorLMS > Settings > Design” page.

    If you wish to customize your courses page with Elementor, please check out this tutorial;

    https://tutorlms.com/blog/introducing-tutor-lms-elementor-addons/

    @lilla

    Hi, I just logged into your site and, I see that Mailchimp fields are empty at
    “Crocoblock > JetPlugins Settings < JetElements > Integrations > MailChimp”
    and
    “Crocoblock > JetPlugins Settings < JetPopup > Integrations > Mailchimp API key” pages.

    Please fill out these fields to connect to Mailchimp.

    Have a nice day!

    ahmetsali
    Keymaster

    Hi, to fix this issue, edit “Testimonial Carousel” widget in Elementor, switch to the mobile view and navigate to “Content > Slider Settings” and just change “Space Between Items” option and save it. This should fix the issue.

    https://www.awesomescreenshot.com/image/53023191?key=edb2f374c2bda4436d510d4f2d56e6aa

    Cheers.

    ahmetsali
    Keymaster

    Hi, you can try this custom css code;

    .tutor-course-progress-item.tutor-card.tutor-mb-20 {
        overflow: hidden;
    }
    
    ahmetsali
    Keymaster
    Posted in : Amelia plugin error

    Hi, I have just tried and could successfully book an appointment. I guess this is fixed now.

    ahmetsali
    Keymaster

    Hi, I just logged in with the credentials you provided but I can’t access to the wp-admin dashboard, you need to set the user as Administrator for us to investigate the issue.

    Thanks.

    ahmetsali
    Keymaster

    Hi, since the work page is a portfolio custom post index page, it can’t be edited with Elementor, you can add content to your Portfolio page with the default Gutenberg page editor, change the portfolio layout from the Template section on the right side of the edit screen and customize the layout/colors from “Appearance > Customize > Portfolio” section.

    Cheers.

    Hi, currently you can add a Dashboard link to the menu and add “My Courses,” and “Profile Settings” as sub-menu items. Dashboard Icon in the header is a nice idea, we will keep that in mind for a future update.

    Thanks for the feedback!

    ahmetsali
    Keymaster

    Hi, I have fixed it on your site, we will also release a new update with the fix.

    Thanks for the feedback!

    Hi, I edited the button in Elementor and navigated to “Advanced > Layout > Cache Settings” and set it to “Inactive” and the issue has gone away.

    Cheers.

    ahmetsali
    Keymaster

    Hi, since you are using Elementor to create your blog page, you need to add the “Pixelwars Main Slider widget” to your blog page in Elementor, I just did it for you and the main slider appeared on your blog page.

    Have a nice day!

    Selamlar, ajax portfolio yapısının çalışması için Portfolio sayfasının slug ı “portfolio” olmalı, sizinkinde “porfolio” olduğu için hataya sebep oluyordu, slug ı düzeltince normal şekilde çalışmaya başladı.

    İyi çalışmalar.

    Hi, I logged into your site and fixed the issue by navigating to Elementor > Settings > Advanced > Switch Editor Loader Method = Enable.

    Have a nice day!

    ahmetsali
    Keymaster

    Hi, I can’t log in with the credentials you have previously provided, can you please share your current wp-login information and let me check?

    Thanks.

    Hi, please update your theme to the latest version which is v13.1.1, and then update the bundled plugins from Appearance> Install Theme Plugins and see if the problems have gone away.

    Cheers.

    ahmetsali
    Keymaster

    @benjes

    sent!

    ahmetsali
    Keymaster

    @dliverd

    sent!

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    Hi, you can use this custom CSS code to achieve the effect;

    .scrolled-down .header {
    	background: var(--body-bg-color); 
    	}
    

    Cheers.

    ahmetsali
    Keymaster

    @eddiefigma

    sure, what is your domain name?

    ahmetsali
    Keymaster

    Hi, unfortunately, it is not possible by default to fine-tune the blur effect. It comes from the Prime Slider plugin (Lite version) and you can request this feature from the plugin author here;

    https://wordpress.org/support/plugin/bdthemes-prime-slider-lite/

    Have a nice day!

    ahmetsali
    Keymaster

    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

    Hi, when I inspected your site, I saw that your theme CSS files are edited, and the codes (which are added later by you or the developer you hired) are breaking the layout. I suggest you to not to edit theme core CSS files directly and use Appearance > Customize > Additional CSS field for CSS customization. If you re-install your theme, with the original CSS files your issue will go away.

    Cheers.

    ahmetsali
    Keymaster

    Hi, you can fix it with this custom CSS code;

    div#amelia-container button {
        visibility: visible;
    }
    

    We will also fix it with the next update. Thanks for the feedback!

    ahmetsali
    Keymaster

    Hi, this is a temporary issue when updating from TutorLMS Pro to a major version v3. I have just manually updated your TutorLMS Pro plugin to the latest, you should receive future auto-updates from now on.

    Cheers.

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @mamta

    Hi, this topic is reserved for license requests only, please create a separate topic for your support request.

    ahmetsali
    Keymaster

    @burakb

    sent!

    ahmetsali
    Keymaster

    @ammar

    fixed your issue by manually updating your TutorLMS Pro plugin to the latest. This shouldn’t be a problem in the future.

    ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    @aurorasavoia

    Hi, the container feature should be active for page layouts to work fine, I have just navigated to Elementor > Settings > Features > Container and set it to “Active” and now your pages look fine.

    Have a nice day!

    ahmetsali
    Keymaster

    Hi, it looks like your demo import is corrupted, I suggest you delete the corrupted pages/templates and run the 1-Click Demo import again with only Elementor, QI addons, and Prime Slider plugins activated.

    Have a nice day!

    Hi again, I fixed the issue by navigating to Elementor > Settings > Performance >
    CSS Print Method and set it to “Internal Embedding”.

    Elementor is working stable now. I noticed that you rated our theme 2 stars. Can you please consider updating your rating?

    https://themeforest.net/downloads

    Have a nice day!

    ahmetsali
    Keymaster

    @rachelle

    sent!

    Hi, I have just logged into your site and QI Addons plugin was inactive, after activating it the text appeared back.

    Cheers.

    Hi again, yes just delete the Elementor plugin and re-install it from the wordpress library.

    ahmetsali
    Keymaster

    Hi, I have just checked your site and I can see the social icons next to your logo on the header. I guess this is fixed now.

    Cheers.

    ahmetsali
    Keymaster

    Hi, since it is the same issue, let’s continue the discussion here;

    https://www.pixelwars.org/forums/topic/your-theme-driving-me-nuts-not-save-clone-publish-works/#post-91938

    Hi, this is not a common issue with the theme, it might be related to your server configuration/installation. Can you try these;

    – Re-install WordPress: Navigate to the Updates and click on Re-install now.
    – Re-install Elementor: Simply delete the plugin and install it again.

    and see if this fixes the issues.

    Have a nice day!

Viewing 50 posts - 151 through 200 (of 4,785 total)