• Resolved Jim

    (@jfkindc)


    Hi. Love the plugin. Have a couple questions.

    Is it possible to show the full text of a session instead of an excerpt and this “[..]” which isn’t a link and is likely confusing to people?

    I can dig around in the code but wondered if there was an easy way to do this.

    My client has a two day conference and a pre-conference event (Adobe Max and several conferences I’ve attended do this). Right now the schedule puts the 3 days together but was hoping there might be a shortcode to display specific days separately.

    Is there a way to list a moderator of a session in addition to speakers?

    Perhaps a feature request would be to show the day of the week in the conference date header.

    Thanks!

    Jim

    • This topic was modified 7 years, 11 months ago by Jim.
    • This topic was modified 7 years, 11 months ago by Jim.
Viewing 1 replies (of 1 total)
  • Plugin Author akyusa01

    (@akyusa01)

    Hi Jim ??

    You can certainly update the loop on template-cr3ativconference.php and taxonomy-cr3ativconfcategory.php from this:

    <!-- Start of session content -->
                <div class="session_content">
                    <?php the_excerpt (); ?>
                    
                   <p> <a class="conference-more" href="<?php the_permalink (); ?>"><?php _e( 'Click for more information on', 'cr3at_conf' ); ?> '<?php the_title (); ?>'</a></p>
                </div><!-- End of session content -->

    to this:

    <!-- Start of session content -->
                <div class="session_content">
                    <?php the_content (); ?>
                    
                   <p> <a class="conference-more" href="<?php the_permalink (); ?>"><?php _e( 'Click for more information on', 'cr3at_conf' ); ?> '<?php the_title (); ?>'</a></p>
                </div><!-- End of session content -->

    Please let me know if I can assist with anything else ??

Viewing 1 replies (of 1 total)
  • The topic ‘Schedule page only showing exceprt’ is closed to new replies.