WPIntell

Source evidence

exclusions

Hide My Dates · support · 2017-03-07T16:51:00+00:00

complaintsentiment
highseverity
0.91relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 27 rows with source links

18.5% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
euseller unresolved
Thank u for plugin. So please tell me how i can exclusion some pages or posts or my main page where i want to see dates? Example my theme have index page where template have <?php the_time(‘F jS’) ?> and your plugin remove date but not change to another. On posts its working fine but on custom index page – date deleted but not publish another “hide” date. So like i understand your plugin replace all <?php the_time function to css code. How i can change my custom page for publishing original date? <script language=”javascript” type=”text/javascript”>document.write(“<?php the_time(‘F jS’) ?>”);</script> iv tryed javascript but your hack delete function inside java and its not work… so how to add ignore code to my template? you can add to the functions.php of your theme code: function hide_date2($tdate = '') { if ( !is_admin() ) { if (is_single('1764')) { $temp = str_replace ('<span class="sdata" title="','',$tdate); $temp = str_replace ('">','',$temp); $temp = str_replace ('</span>','',$temp); return $temp; } else { return $tdate; } } } add_filter('get_the_date', 'hide_date2', 999); this code restore original date on single page with id 1764.

Comments

1 shown
Flector 2017-03-09T02:31:00+00:00

you can add to the functions.php of your theme code: function hide_date2($tdate = '') { if ( !is_admin() ) { if (is_single('1764')) { $temp = str_replace ('<span class="sdata" title="','',$tdate); $temp = str_replace ('">','',$temp); $temp = str_replace ('</span>','',$temp); return $temp; } else { return $tdate; } } } add_filter('get_the_date', 'hide_date2', 999); this code restore original date on single page with id 1764.