Site logo

Archived topic

WPSP double date entry, and date clickable, why

4 replies · Started by Atefan on January 23, 2021

Viewing posts 1–5 of 5

Ok, i been able to remove the date with the plugin version 1.2.0-alpha.3

but how to unlink the date?

Thanks

You can do this:

add_filter( 'wpsp_date_output', function( $output, $settings, $time_string ) {
    return sprintf(
        '<span class="wp-show-posts-posted-on wp-show-posts-meta">
            %s
        </span>',
        $time_string
    );
}, 10, 3 );

Please be sure to use the WPSP forum for WPSP-specific questions :)

Thanks!

I'm sorry, it works perfectly!

No problem, glad it's working! :)

This archived topic is closed to new replies.