Hi agileLogix,
I solved the issue, upon inspection of the code, I found that there is a “$” missing before the array name at line 254 in class-post-timeline-public.php
if( isset( $tax_query['taxonomy'] ) && $tax_query['taxonomy'] !== '' && !in_array( $tax_query['taxonomy'], pattern_taxonomies ) )
is now changed to
if( isset( $tax_query['taxonomy'] ) && $tax_query['taxonomy'] !== '' && !in_array( $tax_query['taxonomy'], $pattern_taxonomies ) )
-
This reply was modified 7 years, 8 months ago by smshareef.