• Resolved facundomanzi

    (@facundomanzi)


    Buenas tardes,

    No puedo hacer que la pagina de todos mis cursos quede de manera correcta. Queda pegada en la parte superior y mi menu queda superpuesto, no puedo publicar mis cursos así.

    Estoy utilizando el tema DIVI y todos mis menus están contruídos con Divi Them Builder.

    Porque que así? ya intente de todo y no logro solucionar

    Si a la pagina de los cursos no le asigno una pagina especifica logro que quede asi:

    https://warmargentina.org/courses/

    Pero cuando quiero cambiar la pagina donde estén los cursos en – Página de archivo del curso (Esta página se usará para listar todos los cursos publicados) – No se ve el menu, ni el logo y el modulo de los cursos queda pegado en la parte superior de la pagina sin cabecera.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Dear @facundomanzi

    We are very sorry for the issue, it seems like your website-specific issue. You can use the CSS code below to fix the issue. After adding the CSS code must clear your browser cache.

    .tutor-wrap?{

    padding-top: 200px;

    }

    Thread Starter facundomanzi

    (@facundomanzi)

    Thank you very much for your prompt response. Your solution partially solved my problem, I used to be able to add a code section plus a title and a small descriptive text before the course module. How can I do it now?

    Thank you so much.

    Dear @facundomanzi

    For that you have to override and customize the Tutor LMS templates. If you know WordPress theme and plugin customization then you will be able to do it.

    Thank you.

    Thread Starter facundomanzi

    (@facundomanzi)

    Thank you very much for your prompt response.
    I’m really not that good at doing that.In any case, how could I change the name of the extension of the web page?Now it is like this https://warmargentina.org/courses/ I would like it to be https://warmargentina.org/aula-virtual/.

    Thank you very much and sorry for the inconvenience

    • This reply was modified 1 year, 11 months ago by facundomanzi.
    Dear @facundomanzi 

    You are welcome. You can change the course slug with this code. First create a child theme then add this code to your child themes functions.php file.

    <?php function change_tutor_course_slug( $args, $post_type ) { if ( 'courses' === $post_type ) { $args['rewrite']['slug'] = 'new-courses'; // Change the slug to 'new-courses' } return $args; } add_filter( 'register_post_type_args', 'change_tutor_course_slug', 10, 2 ); ?>

    Thank you.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Pagina de todos los cursos con error’ is closed to new replies.