golden hour
/var/www/html/wp-content/plugins/the-events-calendar/src/views/v2/list
⬆️ Go Up
Upload
File/Folder
Size
Actions
event
-
Del
OK
event.php
1.65 KB
Del
OK
month-separator.php
1.83 KB
Del
OK
nav
-
Del
OK
nav.php
1.02 KB
Del
OK
top-bar
-
Del
OK
top-bar.php
572 B
Del
OK
Edit: nav.php
<?php /** * View: List View Nav Template * * Override this template in your own theme by creating a file at: * [your-theme]/tribe/events/v2/list/nav.php * * See more documentation about our views templating system. * * @link http://evnt.is/1aiy * * @var string $prev_url The URL to the previous page, if any, or an empty string. * @var string $next_url The URL to the next page, if any, or an empty string. * @var string $today_url The URL to the today page, if any, or an empty string. * * @version 4.9.10 * */ ?> <nav class="tribe-events-calendar-list-nav tribe-events-c-nav"> <ul class="tribe-events-c-nav__list"> <?php if ( ! empty( $prev_url ) ) { $this->template( 'list/nav/prev', [ 'link' => $prev_url ] ); } else { $this->template( 'list/nav/prev-disabled' ); } ?> <?php $this->template( 'list/nav/today' ); ?> <?php if ( ! empty( $next_url ) ) { $this->template( 'list/nav/next', [ 'link' => $next_url ] ); } else { $this->template( 'list/nav/next-disabled' ); } ?> </ul> </nav>
Save