Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi jlm92,

    You’re welcome! I’m glad to hear that my previous response was helpful.

    Regarding your decision to migrate from LearnWorlds, it sounds like you’re on the right track with exploring LearnDash. It definitely offers more customization options and features.

    In terms of allowing course learners to submit essays and connecting them to Zapier, I believe it is possible with LearnDash. One way to achieve this is by embedding Gravity Forms into course or lesson pages, as you mentioned. Gravity Forms has a Zapier add-on that allows you to automate tasks based on form submissions.

    As for providing written feedback on the essays and displaying them on the frontend for assigned group leaders, this may require some custom development. However, there are several WordPress plugins that can help you achieve this, such as BuddyPress or bbPress. These plugins allow you to create social networks or forums on your website, where group leaders can view the course progress of their learners, as well as their submitted essays and your written feedback.

    I hope this helps! If you have any further questions or if you need more guidance, feel free to let me know.

    • This reply was modified 3 years, 1 month ago by amyewings13. Reason: some changes
    • This reply was modified 3 years, 1 month ago by amyewings13.

    Great to hear that the solution I suggested resolved your issue with centering or moving the Google search icon within your search box!

    As I mentioned before, using the CSS “position” property and setting it to “relative” or “absolute” can be an effective way to move the icon around within the search box. You can adjust the “top”, “bottom”, “left”, or “right” properties to get the desired result.

    In the example code I provided, the “top” property was set to 5px to move the icon down a little, and the “margin-left,” property was adjusted to provide some space on the left side of the input field. Feel free to play around with the values until you achieve your desired result.

    Acutually once I also face this issue on my website. So that’s why I have suggested you.

    If you have any further questions or concerns, please don’t hesitate to reach out. I’m always here to help.

    Hello!

    To correctly upload styles for wp-components displayed only on the frontend for blocks, you can enqueue your custom stylesheet in your plugin or theme’s functions.php file using the wp_enqueue_style() function. Here’s an example:

    function my_block_assets() {
        wp_enqueue_style(
            'my-block-styles',
            plugin_dir_url( __FILE__ ) . 'path/to/your/custom/styles.css',
            array( 'wp-components' ),
            '1.0.0'
        );
    }
    add_action( 'wp_enqueue_scripts', 'my_block_assets' );
    

    This code registers and enqueues a stylesheet called “my-block-styles” that is located in the “path/to/your/custom” directory of your plugin or theme. It depends on the ‘wp-components’ style to ensure that the styles are loaded correctly. You can replace “plugin_dir_url( FILE ) . ‘path/to/your/custom/styles.css'” with the path to your custom stylesheet.

    To do custom CSS for these elements, you can add your own CSS rules to your custom stylesheet. To style a specific wp-component element, you can use its class name in your CSS rules. For example, to style a Button component, you can use the “.components-button” class in your CSS rules. Here’s an example:

    .components-button {
        background-color: #0073aa;
        color: #fff;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 16px;
    }
    

    I hope this helps! Let me know if you have any more questions.

    Hi jlm92,

    Of course, happy to help! It sounds like you have a great plan for your new online course business, and WordPress is a good platform to achieve it. In terms of whether to use LearnWorlds or a WordPress LMS plugin, it really depends on your level of technical expertise and how much customization you want to do.

    If you’re already familiar with LearnWorlds and are comfortable with its limitations, then it might be the easier option for you. However, if you want more flexibility and control over your site, then a WordPress LMS plugin might be the better choice.

    Some popular options for WordPress LMS plugins include LearnDash, LifterLMS, and WP Courseware. These plugins offer features such as course creation, payment processing, enrollment, and delivery, as well as assessment and submission forms. They also have the ability to create custom dashboards for users and admin roles.

    To get started, I recommend researching each plugin and reading reviews to determine which one will best fit your needs. Once you’ve selected a plugin, you can start learning how to use it by watching tutorials, reading documentation, and experimenting with different settings.

    Good luck with your new business venture, and don’t hesitate to reach out if you have any further questions!

    It seems that you are having trouble centering or moving the Google search icon within your search box. Have you tried using the CSS “position” property and setting it to “relative” or “absolute”? You can then use “top”, “bottom”, “left”, or “right” properties to move the icon around within the search box.

    For example, you can try adding the following CSS code to your existing CSS code:

    .material-symbols-outlined { position: relative; top: 5px; /* or adjust as needed / margin-left: 10px; / or adjust as needed */ }

    This should move the icon down a little and give it some space on the left side of the input field. You can adjust the values to get the desired result.

Viewing 5 replies - 1 through 5 (of 5 total)