Md Billal Hossain
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Create a multi step formThanks for your reply. Can you help me find the best plugin for me? I could not find anything like I need
Forum: Developing with WordPress
In reply to: Create a multi step formForm sample: https://prnt.sc/BLRZulh-IGqr
Forum: Developing with WordPress
In reply to: New user rolesHi @itsmefti
If you want to change new registered user role, you can change it from WordPress dashboard->General section. Here is a screenshot: https://prnt.sc/tQ_eE2pvXYCU
On the other hand, to remove admin bar by default, use the below code on functons.php file
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}Cheers
Forum: Installing WordPress
In reply to: How to make site private?Hi
To make the site private, you need to use a plugin. Site offline Plugin can be your good choice because its very easy to configure. Also there are plenty of site maintenance plugin available in directory.
Thank you
Forum: Fixing WordPress
In reply to: Page list ErrorHi
If you can access the Permalink from WordPress dashboard->Settings->Permalink page then flush the permalink by clicking on the save button. I hope the issue will be resolved.
Thank you
Forum: Fixing WordPress
In reply to: Unable to upload plugin files after upgradeHi
Sometimes, the PHP memory limit may be too low to handle the upload and extraction process.
Edit your
wp-config.php
file in the root directory of your WordPress installation. And then insert the following code. I hope the issue will solved.define('WP_MEMORY_LIMIT', '256M');
Forum: Fixing WordPress
In reply to: Is there another plugin for WP maximum execution timeYes, you can add as much value you want.
Thank you
Forum: Fixing WordPress
In reply to: Is there another plugin for WP maximum execution timeHi
If you don’t find any plugin then you can use a piece of code to increase the execution time.
php_value max_execution_time 300
If you still stuck, then follow this guide step by step: How To Fix WordPress Max_execution_time Errors Quickly (wpastra.com)
Forum: Fixing WordPress
In reply to: Content of my home page became boxed after instaling PolylangHi
I checked your website and seems the wording is showing correctly instead boxed. https://prnt.sc/CWkM6FXGR-Q4
If you still having the same issue, you might need to clean the server cache as well as the browser cache.
Additionally, you can use Loco translator to translate your website easily.
Thanks
Sure, You deserver it.
Hey Patrick
The code is working just like magic. Thank you so much. However, I have shorten the code to fit it exactly what I need. I am sharing the code if anyone wants the same.
Thanks a lot again. You deserve 5*
add_action( 'wp_footer', function() { if ( ! wp_script_is( 'forminator-front-scripts' ) ) { return; } ?> <script type="text/javascript"> jQuery(document).ready(function ($) { $(document).on('after.load.forminator', function (e, form_id) { var next_button = document.querySelector('.forminator-button-next'), click_event = new CustomEvent('change_evt'), clickable_elements = document.querySelectorAll( '.next-on-click .forminator-radio', ), radios = document.querySelectorAll('.next-on-click input[type="radio"]'); clickable_elements.forEach((clickable_element) => { clickable_element.addEventListener( 'click', wpmudev_clickables_event_callback, ); clickable_element.addEventListener( 'touchstart', wpmudev_clickables_event_callback, ); }); function wpmudev_clickables_event_callback() { radios.forEach((radio) => { radio.addEventListener('change', wpmudev_change_evt_callback); }); } function wpmudev_change_evt_callback(e) { if (e.currentTarget.checked) { $('.forminator-button-next').trigger('click'); } } }); setTimeout(function () { $('.forminator-custom-form').trigger('after.load.forminator'); }, 100); }); </script> <?php }, 999 );
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] about prerequisitesHi
This can be a good feature for the future release. We will think about this feature.
Thank you
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] about prerequisitesHello @onceiwas
Unfortunately, the feature you are looking for is not available in Tutor LMS. The prerequisites are the mandatory field where you have to choose all the prerequisites before accessing the main course. To get full details about Course Prerequisites, here is the detailed documentation: https://docs.themeum.com/tutor-lms/addons/course-prerequisites/
Thank you
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Auto renewalHello @aisog
Tutor LMS pro has a membership feature where you can sell your courses based on membership roles. Also, it has an auto-renewal feature. To achieve that feature, you can use a membership plugin such as Paid membership pro. PMP is integrated with the Tutor LMS pro plugin. Here is the full doc where you can find the workaround. https://docs.themeum.com/tutor-lms/ecommerce/paid-memberships-pro/
Thank you
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Login Doesn’t workHi @ethanlofton
Glad to hear that the issue has been solved.