Will the groups render PHP or shortcodes?
]]>I tested the plugin on localhost (with PHP 5.6.27 and PHP 7.0.12) which worked fine. Then I installed the plugin on my server (PHP 5.6.21 and PHP 7.0.11) and got the following error:
Uncaught Error: Call to undefined method WP_AB_See::render_test_table()
My first thought was, that this error is related to the PHP version. So I switched from version 5.6 to version 7. But this didn’t change anything. On localhost it also works fine with PHP 7, but not on my server. WordPress version is in both cases 4.7.2.
Any ideas?
]]>How is the content served to GoogleBot? Do they always get served version A or B?
~ Shannon
]]>Hi,
conversions were only tracked for logged in users. Turns out the format for the WHERE clause was missing.
public function update_conversion( $test_id, $user_id ) {
global $wpdb;
$wpdb->update(
$this->table_tracking_name,
array(
'converted' => current_time( 'mysql' ),
),
array(
'id' => $test_id,
'user_id' => $user_id,
),
array( '%s'),
array( '%s', '%s' )
);
}
If you can reproduce this, please commit the change
]]>Hi Scott,
Are you able to share how the randomization between the two groups works? The reason I ask is because I’ve added a test to this page: https://www.atlasandboots.com/privacy (scroll down to the bottom of the sidebar where it says ‘Split Test’). I keep getting the ‘Japanese’ version despite trying it on several different browsers including Tor and on mobile. I have checked https://www.atlasandboots.com/privacy?group_override=1 and do get the China version but this doesn’t seem to be being served up naturally.
Thanks,
Kia
]]>Hi Scott,
Are you able to share how the randomization between the two groups works? The reason I ask is because I’ve added a test to this page: https://www.atlasandboots.com/privacy/ (scroll down to the bottom of the sidebar where it says ‘Split Test’). I keep getting the ‘Japanese’ version despite trying it on several different browsers including Tor and on mobile. I have checked https://www.atlasandboots.com/privacy?group_override=1 and do get the China version but this doesn’t seem to be being served up naturally.
Thanks,
Kia
]]>Hi Scott,
I have a split test that links out to an external page. I can’t put the conversion code on this external page. Is there any way I can measure conversions based on clicks? If not, I’ll see if I can set up a tracking code in GA and use separate ones in each group.
Thanks,
Kia
]]>Hi, any plans to be able to test 3 options?
Also, any plans to add weight to options?
thks
]]>How are unused tests deleted?
]]>