Skip to content

Commit

Permalink
Update settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mvaneijgen authored Feb 13, 2019
1 parent c3c64c4 commit b48fa4a
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion templates/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,31 @@
<th>set google data studio ID</th>
<td>
<input type="text" name="alloy_analytics_id" value="<?php echo (esc_attr( get_option('alloy_analytics_id') ) == '')?'':esc_attr( get_option('alloy_analytics_id', '') ); ?>" />
<p class="description" id="tagline-description">Leave it empty to turn it off (should look something like 1ew_0PQZDETWE54784_o_Yt_AMR_0/page/8viH)</p>
<p class="description" id="tagline-description">Leave it empty to turn it off (should look something like 1ew_0PQZDETWE54784_o_Yt_AMR_0)</p>
</td>
</tr>
<tr>
<th>Data studio page 1</th>
<td>
<input type="text" name="alloy_analytics_page_one" value="<?php echo (esc_attr( get_option('alloy_analytics_page_one') ) == '')?'':esc_attr( get_option('alloy_analytics_page_one', '') ); ?>" />
</td>
</tr>
<tr>
<th>Data studio page 2</th>
<td>
<input type="text" name="alloy_analytics_page_two" value="<?php echo (esc_attr( get_option('alloy_analytics_page_two') ) == '')?'':esc_attr( get_option('alloy_analytics_page_two', '') ); ?>" />
</td>
</tr>
<tr>
<th>Data studio page 3</th>
<td>
<input type="text" name="alloy_analytics_page_three" value="<?php echo (esc_attr( get_option('alloy_analytics_page_three') ) == '')?'':esc_attr( get_option('alloy_analytics_page_three', '') ); ?>" />
</td>
</tr>
<tr>
<th>Data studio page 4</th>
<td>
<input type="text" name="alloy_analytics_page_four" value="<?php echo (esc_attr( get_option('alloy_analytics_page_four') ) == '')?'':esc_attr( get_option('alloy_analytics_page_four', '') ); ?>" />
</td>
</tr>
</table>
Expand Down

0 comments on commit b48fa4a

Please sign in to comment.