jonnyvaughan
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Simple Page Tester] Google Analytics showing different traffic levelsThanks for the reply and explanation. We are seeing referral spam in GA.
The explanation of how & when you track a visit with the plugin make sense and gives me the confidence we can rely on the stats there rather than GA for split testing purposes.
This would be a good topic for your FAQ.
Jonny
Forum: Plugins
In reply to: [Account Engagement] Non-standard WordPress InstallsI’ll check the rest of the forum before I post next time ??
Solution: https://www.ads-software.com/support/topic/issue-with-wp-load?replies=12
Forum: Themes and Templates
In reply to: If current taxonomy has child and/or parentHow about something like this, which uses get_term_by and get_terms to check if the current term has a parent, and then get_term_children to check for children.
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); // get current term $parent = get_term($term->parent, get_query_var('taxonomy') ); // get parent term $children = get_term_children($term->term_id, get_query_var('taxonomy')); // get children if(($parent->term_id!="" && sizeof($children)>0)) { // has parent and child }elseif(($parent->term_id!="") && (sizeof($children)==0)) { // has parent, no child }elseif(($parent->term_id=="") && (sizeof($children)>0)) { // no parent, has child }
Forum: Plugins
In reply to: [Lorem Ipsum Generator] wp-lorem-ipsum-generatorHello – thanks for the feedback. I’ve just added a new version which should hopefully fix the issues you had.
Thanks
Jonny
Viewing 4 replies - 1 through 4 (of 4 total)