Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove "all hours" link #10

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions public/class-wplibcalhours-public.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,6 @@ public function enqueue_scripts() {
* between the defined hooks and the functions defined in this
* class.
*/

wp_enqueue_script($this->plugin_name,
plugin_dir_url(__FILE__) . 'js/wplibcalhours-public.js',
array('jquery'),
$this->version,
false);

wp_enqueue_script($this->plugin_name . '-grid',
plugin_dir_url(__FILE__) . 'js/grid.js',
[],
$this->version,
['in_footer' => true, 'strategy' => 'defer']);
}

/**
Expand Down
26 changes: 0 additions & 26 deletions public/css/wplibcalhours-public.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@
display: none;
}

.wplibcalhours .prev {
float: left;
}

.wplibcalhours .next {
float: right;
}

.wplibcalhours tbody td {
vertical-align: top;
}
Expand Down Expand Up @@ -68,24 +60,6 @@
text-align: left;
}

.hours-more {
margin-top: 25px;
}

.hours-more button {
border: 2px solid #13294b;
border-radius: 5px;
padding: 8px 10px;
color: white;
min-width: 130px;
}

.hours-more button:hover,
.hours-more button:focus {
background-color: transparent;
color: #13294b;
}

.circle {
width: 10px;
height: 10px;
Expand Down
41 changes: 0 additions & 41 deletions public/js/grid.js

This file was deleted.

54 changes: 0 additions & 54 deletions public/js/wplibcalhours-public.js

This file was deleted.

7 changes: 1 addition & 6 deletions public/partials/grid.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,4 @@ class="hours-list-view <?php echo $this->setClassList($stacked) ?>">
</div>
<?php endif ?>
<?php endforeach ?>
</div>
<?php if (count($chunked_weeks) > 1): ?>
<div class="hours-more">
<button id="<?php echo $base_location ?>">View all hours</button>
</div>
<?php endif ?>
</div>
11 changes: 0 additions & 11 deletions public/partials/table.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,4 @@
</tr>
<?php endfor ?>
</tbody>

<?php if ($num_weeks > 1): ?>
<tfoot>
<tr>
<td colspan="3">
<a class="prev hidden">&laquo; <?php __( 'previous', 'wplibcalhours' ) ?></a>
<a class="next"><?php __( 'next', 'wplibcalhours' ) ?> &raquo;</a>
</td>
</tr>
</tfoot>
<?php endif ?>
</table>