get_row($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."abtest_goals WHERE id=%d", $id)); ?>
Here's information on how to track the goal name ?>.
If you have a destination page, post or widget for your experiment – like a product page, an order confirmation page etc. – insert the following code:
[abtest goal=""]
If you want to track each time a user clicks on a link, insert a code on the link like this:
<a href="http://www.google.com" onclick="abtest.trackGoal(, this);">Go to Google</a>
If you want to track the goal manually using JavaScript, insert the following code:
<script type="text/javascript">
abtest.trackGoal();
</script>