• Resolved duckslegs

    (@duckslegs)


    Hi,

    I was wondering if I could reorder the information on this page.

    Is this possible for me to do using the PHP file. Is it simply copying and pasting each section to a different area in the file?

    For example. I think I would like to move the map section to the very bottom of the page.

    Is there a way of taking the DATE and TIME information and putting that underneath the Page Title at the top of the page? Currently, the DATE information under the title is the date of import, which would be very confusing to our visitors. IF I can move the EVENT DATE and EVENT TIME to the top of the page, underneath the PAGE/EVENT TITLE then I would like to edit the PHP to remove the DETAILS box completely – it’s unnecessary and a little ugly.

    Congratulations on a good plugin. The official Eventbrite one is not as good as this!

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @duckslegs,

    You can make custom template for single event using single-eventbrite.php file in theme folder.

    If you want to move time and date then you can do it using event-meta.php file.you just copy code into single-eventbrite.php file and do changes as per requirement.

    For more details you can contact us on support on our website.

    Let us know if you have any query.
    Thanks

    Thread Starter duckslegs

    (@duckslegs)

    Are you able to provide a little more help with this? First of all, I can’t even locate single-eventbrite.php. You say it’s in my Theme folder? But surely, my theme doesn’t have anything called eventbrite in it. If you mean it’s in your plugin folder, I cannot locate it there either…

    I have found the event-meta.php file, though, I am not good with PHP! Is there a possibility you can help me further. Pretend I am an idiot (which I am!)…

    Haha, Thanks

    Thread Starter duckslegs

    (@duckslegs)

    I think if you can provide information on how to edit this page a little, this plugin would be VERY desirable to people.

    Thread Starter duckslegs

    (@duckslegs)

    UPDATE:

    OK, so I edited the event-meta.php and now removed the ‘Details’ section because I do not really need it. However, I would like to include the information found here, the date and time of the event (from event-meta.php):

    <?php
    if( date( ‘Y-m-d’, $start_date_str ) == date( ‘Y-m-d’, $end_date_str ) ){
    ?>
    <?php esc_html_e( ‘Date’,’import-eventbrite-events’ ); ?>:
    <p><?php echo $start_date_formated; ?></p>

    <?php esc_html_e( ‘Time’,’import-eventbrite-events’ ); ?>:
    <p><?php echo $start_time . ‘ – ‘ . $end_time; ?></p>
    <?php
    }else{
    ?>
    <?php esc_html_e( ‘Start’,’import-eventbrite-events’ ); ?>:
    <p><?php echo $start_date_formated . ‘ – ‘ . $start_time; ?></p>

    <?php esc_html_e( ‘End’,’import-eventbrite-events’ ); ?>:
    <p><?php echo $end_date_formated . ‘ – ‘ . $end_time; ?></p>
    <?php
    }

    and have it displayed above the event photo at the top of the page Single Event Page. Currently the date shown is the day I imported the information.

    I’m so close to having this perfect. Can you help with this last bit?

    Plugin Author Xylus Themes

    (@xylus)

    Hi @duckslegs,

    You need to get some developer to customize in this much details to avoid any issue in site.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Data order on Event Page’ is closed to new replies.