From f501a943fb0a5d99baeb8e65b8aaf08ad402a9ca Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 30 Dec 2015 10:43:04 -0500 Subject: [PATCH] added div to tags section --- views/product_detail.php | 40 +++++++++++++--------------------------- 1 file changed, 13 insertions(+), 27 deletions(-) diff --git a/views/product_detail.php b/views/product_detail.php index fd3869a..9681b95 100644 --- a/views/product_detail.php +++ b/views/product_detail.php @@ -27,16 +27,8 @@ $relatives = wp_get_post_terms($product->ID, 'michsci_category', $args); $shortcode_output = do_shortcode($value); print $shortcode_output; }?> + - - -
ID, 'michsci_category', $args);
- - -
-
- Tags: '; - $args = array( - "hide_empty"=>false - ); - $tags = wp_get_post_terms($product->ID,'michsci_tag', $args); - foreach ($tags as $tag){ ?> - - name . " "; ?> - -

+
+    Tags
"; + $args = array( + "hide_empty"=>false + ); + $tags = wp_get_post_terms($product->ID,'michsci_tag', $args); + foreach ($tags as $tag){ ?> + name . "
"; ?> + +
+ +
- - -- 2.17.1