Skip to content

Commit

Permalink
Add information and fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
dseydel committed May 23, 2023
1 parent 8091223 commit 6ccab59
Showing 1 changed file with 21 additions and 11 deletions.
32 changes: 21 additions & 11 deletions inc/templates/settings-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,28 @@
</td>
</tr>

<tr>
<th class="row">
<tr>
<th class="row">
<?php esc_html_e( 'Use Host Url', 'integrate-umami' ); ?>
</th>
<td>
<label for="integration_umami_use_host_url">
<input type="checkbox" name="umami_options[use_host_url]" id="integration_umami_use_host_url"
value="1" <?php checked( $options['use_host_url'] ); ?> />
<?php esc_html_e( 'Use Host Url as data target', 'integrate-umami' ); ?>
</label>
</td>
</tr>
</th>
<td>
<label for="integration_umami_use_host_url">
<input type="checkbox" name="umami_options[use_host_url]" id="integration_umami_use_host_url"
value="1" <?php checked( $options['use_host_url'] ); ?> />
<?php esc_html_e( 'Use Host Url as data target ', 'integrate-umami' ); ?>
<?php
echo wp_kses(
__( 'Use Host Url as data target. <a href="https://umami.is/docs/tracker-configuration">More information</a>', 'integrate-umami' ),
[
'a' => [
'href' => [],
],
]
);
?>
</label>
</td>
</tr>

<tr>
<th class="row">
Expand Down

0 comments on commit 6ccab59

Please sign in to comment.