• skyzune

    (@skyzune)


    Hello community,

    I have a problem, I make online courses with packs that group several, and which will evolve and be replaced over time …
    How to delete an obsolete course from the “courses” page, but without it being deleted in the account for the customer who has already purchased it.

    So, I no longer want the course to be visible and purchasable by new customers, but for those who have already purchased it to be able to finish it.

    This is an essential function for me, but I have been looking for hours without finding…

    Thank you for helping me ??

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support brianvu-tp

    (@briantp)

    Hi skyzune,

    Thank you for reaching out!

    To hide a course from the “courses” page but still allow access for customers who have already purchased it, you can use custom CSS to achieve this. Each course has a unique data-id, so you can hide the course by adding the following CSS to your theme:

    .post-type-archive-lp_course .course-item[data-id="123"] {
    display: none;
    }

    Please replace “123” with the specific data-id of the course you want to hide. You can also adjust the CSS to ensure the page remains visually appealing.

    Best regards,
    Brianvu-tp

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.