Skip to content

Commit 66818e5

Browse files
committed
Some support for browsers without grid
Works on homepage and category pages etc
1 parent bc56cb7 commit 66818e5

File tree

5 files changed

+30
-3
lines changed

5 files changed

+30
-3
lines changed

css/bootstrap10.css

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap10.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

footer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
</ul>
9999

100100
<?php if (!is_user_logged_in()) { echo '
101-
<p><strong>Single Sign On</strong><br><a title="Login to G Suite" target="_blank" href="http://mail.chesterlestreetasc.co.uk/">G Suite Login</a></p>
101+
<p><strong>Single Sign On</strong><br><a title="Login to G Suite" target="_blank" href="https://accounts.google.com/o/saml2/initsso?idpid=C02hzmemx&spid=780455386355&forceauthn=false">G Suite Login</a></p>
102102
';}?>
103103

104104
</div>

woocommerce/content-product.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
return;
2828
}
2929
?>
30-
<li <?php post_class(); ?>>
30+
<li <?php post_class('noGridColumn'); ?>>
3131
<?php
3232
echo '<div class="productArchiveListItem">';
3333
echo '<div class="productArchiveThumbnail">';

woocommerce/loop/loop-start.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
/**
3+
* Product Loop Start
4+
*
5+
* This template can be overridden by copying it to yourtheme/woocommerce/loop/loop-start.php.
6+
*
7+
* HOWEVER, on occasion WooCommerce will need to update template files and you
8+
* (the theme developer) will need to copy the new files to your theme to
9+
* maintain compatibility. We try to do this as little as possible, but it does
10+
* happen. When this occurs the version of the template file will be bumped and
11+
* the readme will list any important changes.
12+
*
13+
* @see https://docs.woocommerce.com/document/template-structure/
14+
* @author WooThemes
15+
* @package WooCommerce/Templates
16+
* @version 3.3.0
17+
*/
18+
?>
19+
<ul class="products row">

0 commit comments

Comments
 (0)