zenframe
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Hallo, I made the initial post 8 days ago, and have heard nothing since. This issue is still ongoing, is there any further information you require to help diagnose the problem?
I repeat, GA intermittently tracks ecommerce transactions as page views.
e.g. We see completed transactions with their ID in page views and not ecommerce.
Do you know of any reasons as to why this might be the case? Any pointers will be gratefully recieved.
This plugin should be removed from the repository as it’s essentially not fit for purpose.
Hi @dcooney,
Thanks for the reply, your function didn’t work, but the get_the_excerpt() call put me on the right track. I eventually used this to make the replacement:
function trim_excerpt($text) { $string = "[...]"; $text = str_replace( $string, '', $text); return $text; } add_filter('get_the_excerpt', 'trim_excerpt', 99);
Viewing 3 replies - 1 through 3 (of 3 total)