• Resolved amhoffmaster

    (@amhoffmaster)


    I am testing this plugin for a client site. I would like to add some additional text and an “sponsored by” image on the tile. How can I accomplish this?

    [add_eventon tiles="yes" tile_bg="1" tile_style="1" event_past_future="future" tile_count="3" tile_height="400" hide_so="yes" exp_so="yes" hide_end_time="yes" ux_val="1" hide_arrows="yes" bottom_nav="no" add_eventon_now ]

    Also, even though I thought I turned it off, the month and year display on this page.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support ArtemSupport

    (@artemsupport)

    Hello,

    Please take a look at https://docs.myeventon.com/documentations/setup-use-custom-meta-fields-events/

    You can create a new “Content Type: Multiple lines of text (WP Editor)” and then show it on EventTop.

    Month and Year. Did you disable EventON > EventTop > Event Day Name and Event Start Year and Event End Year (If different than start year)?

    Thread Starter amhoffmaster

    (@amhoffmaster)

    Thank you for your response. I had already added the field. The Multiple lines of text (WP editor) do not show on Tiles.  I tried adding a single line of text to display as an excerpt and checked it on the EventTop section but it doesn’t display on the Tile. Perhaps I need a different layout/view. I just want to add an image with time and a brief synopsis and presenter logos on the tiles to entice the user to click and see the event details popup.

    I enabled ALL the options in the EventTop to see what would display.  I’m still seeing the Oct, 2024 above the tiles.

    Plugin Support ArtemSupport

    (@artemsupport)

    Thank you for the info! @ashanjay will check this ASAP.

    It seems there is an issue with Custom Meta Fields not showing on EventTop.

    Ashan,

    On devlite: https://devlite.myeventon.com/events/test-7/

    It doesn’t show Custom Meta Field on EventTop.

    Plugin Author Ashan Perera

    (@ashanjay)

    Kindly add this code into your version of the code. We will implement this in the next big version 2.3 which is under way right now. Sharing this code here because the next version will need more time to release.

    // custom fields on eventtop @2.3
    if( !empty( $object->cmf_data ) && count( $object->cmf_data )> 0 ){
    foreach( $object->cmf_data as $cmf_x => $cmf_data ){
    $cmfO = (object) $cmf_data;
    if( empty( $cmfO->login_needed_message )){

    $OT.="<span class='evo_event_cmf level_4'>";

    // button type
    if( $cmfO->type == 'button' && !empty( $cmfO->valueL ) ){

    $_target = (!empty($cmfO->_target) && $cmfO->_target=='yes')? 'target="_blank"':null;

    $OT .="<span href='". esc_url( $cmfO->valueL ) ."' {$_target} class='evcal_btn evo_cusmeta_btn'>". esc_html( $cmfO->value ) ."</span>";
    // All other types
    }else{
    $OT.= "<em><i class='fa ". $cmfO->imgurl ."'></i> <i>". $cmfO->field_name ."</i></em>";
    $OT.="<em class='evoet_dataval' >" . $cmfO->value ."</em>";
    }


    $OT.="</span>";
    }
    }
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.