golden hour
/home/godaofbq/drhyperbaric.com/wp-content/plugins/betterdocs/views/admin/email/analytics
⬆️ Go Up
Upload
File/Folder
Size
Actions
leading-docs.php
1.77 KB
Del
OK
overview.php
8.99 KB
Del
OK
parts
-
Del
OK
search-keyword.php
1.4 KB
Del
OK
Edit: leading-docs.php
<?php if ( empty( $args ) || ! is_array( $args ) ) { return; } ?> <tr> <td style="text-align: left; font-size: 20px; padding-top: 40px;"> <?php _e( 'Top Performing Docs', 'betterdocs' );?> </td> </tr> <tr> <td style="padding:0"> <table style="width: 100%; border-collapse: separate; border-spacing: 2px; padding-top: 20px;"> <tr style="background: #fff;"> <th style="text-align: left; font-size: 14px; font-weight: 600; color:#6e6e73; text-transform: capitalize; padding: 8px 15px; width: 48%;"> <?php _e( 'Doc Title', 'betterdocs' );?> </th> <th style="text-align: center; font-size: 14px; font-weight: 600; color:#6e6e73; text-transform: capitalize; padding: 8px 8px;"> <?php _e( 'Total Views', 'betterdocs' );?> </th> <th style="text-align: center; font-size: 14px; font-weight: 600; color:#6e6e73; text-transform: capitalize; padding: 8px 8px;"> <?php _e( 'Unique Views', 'betterdocs' );?> </th> <?php if ( $total_reactions > 0 ) { echo '<th style="text-align: center; font-size: 14px; font-weight: 600; color:#6e6e73; text-transform: capitalize; padding: 8px 15px;">' . __( 'Reactions', 'betterdocs' ) . '</th>'; } ?> </tr> <?php foreach ( $args as $docs ) { betterdocs()->views->get( 'admin/email/analytics/parts/single-docs', [ 'docs' => $docs, 'total_reactions' => $total_reactions ] ); } ?> </table> </td> </tr>
Save