Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter maurichieri

    (@maurichieri)

    I found this code in class-eb-shortcode-my-courses.php

    <?php
    printf(
    __(‘You are not enrolled to any course. %s to access the courses page.’, ‘eb-textdomain’),
    “.__(“Click here”, “eb-textdomain”).”
    );
    ?>
    </h5>
    <?php

    But i don′t know how can i change…

    Plugin Author WisdmLabs

    (@wisdmlabs)

    Hi @maurichieri

    In class-eb-shortcode-my-courses.php file make the following changes-

    Replace this code:

    <?php
                   printf(
                       __('You are not enrolled to any course. %s to access the courses page.', 'eb-textdomain'),
                       "<a href='".esc_url(site_url('/courses'))."'>".__("Click here", "eb-textdomain")."</a>"
                   );
                   ?>

    With this one:

    <?php
                   printf(
                       __('You are not enrolled to any course. %s to access the courses page.', 'eb-textdomain'),
                       "<a href='".esc_url(site_url('/cursos'))."'>".__("Click here", "eb-textdomain")."</a>"
                   );
                   ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Manage link’ is closed to new replies.