Viewing 5 replies - 1 through 5 (of 5 total)
  • Alexandra

    (@alexandrastan001)

    Hi Hector,

    Could you use us a link to your website so that we can give it a look?

    Best regards,
    Alexandra

    Thread Starter idealocity

    (@idealocity22)

    Hi Alexandria,

    Here’a a link to the site:
    https://cec.fiu.edu/college-of-engineering-and-computing-events/

    Instead of an event saying “Posted on September 2, 2016 at 4:30 pm” I just wnat it to say
    “September 2, 2016 at 4:30 pm”

    Thanks!

    Thread Starter idealocity

    (@idealocity22)

    Can anybody help me with this?

    Thanks!

    If you are still needing this solution or someone else needs it use this code in the functions.php file of your theme:

    function bweb_feedzy_remove_posted( $content, $feedURL ) {
    	$content = str_replace( 'Posted', '', $content );
    	return $content;
    }
    add_filter( 'feedzy_meta_output', 'bweb_feedzy_remove_posted', 9, 2 );
    
    function bweb_feedzy_remove_by( $content, $feedURL ) {
    	$content = str_replace( ' by', '', $content );
    	return $content;
    }
    add_filter( 'feedzy_meta_output', 'bweb_feedzy_remove_by', 9, 2 );
    
    Thread Starter idealocity

    (@idealocity22)

    @kleenex Thank you so much for that code. It works! for anyone using this, the only change needed to the code is to change the ‘ by’ to ‘ on’

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing the 'Posted On' from the date’ is closed to new replies.