Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author teastudio.pl

    (@teastudiopl)

    to display custom data you should use filters from the plugin, see FAQ and WordPress docs

    If you will have any problem with coding you can order this kind of modification.

    Plugin Author teastudio.pl

    (@teastudiopl)

    close

    Thread Starter toonmonk

    (@toonmonk)

    What do you charge for a such a modification?

    Plugin Author teastudio.pl

    (@teastudiopl)

    If you need any help, please send me an email: [email protected]

    This is for The Events Calendar:

    function my_wpc_item_description( $description, $params ) {
    
    	$starttime = tribe_get_start_time();
    //get the startdate without the time
    	$startdate = tribe_get_start_date($post->ID,false);
    	$description = '
    					<div class="wp-posts-carousel-desc">
    						<p>' . $startdate . '</p>
    						<p>' . $starttime . '</p>
    					</div>';
    
    	return $description;
    }
    add_filter('wpc_item_description', 'my_wpc_item_description', 1, 2);
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Displaying Event Date Info in Slider’ is closed to new replies.