Changeset 170419
- Timestamp:
- 06/24/2022 09:37:50 AM (3 years ago)
- Location:
- shopping-solution/0.1.9
- Files:
-
- 2 added
- 3 edited
- 1 copied
-
. (copied) (copied from shopping-solution/0.1.8)
-
images (added)
-
images/slider.png (added)
-
page-template/home-page.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shopping-solution/0.1.9/page-template/home-page.php
r156598 r170419 39 39 <?php while ( $query->have_posts() ) : $query->the_post(); ?> 40 40 <div <?php if($i == 1){echo 'class="carousel-item active"';} else{ echo 'class="carousel-item"';}?>> 41 <?php the_post_thumbnail(); ?> 41 <?php if(has_post_thumbnail()){ 42 the_post_thumbnail(); 43 } else{?> 44 <img src="<?php echo esc_url(get_theme_file_uri()); ?>/images/slider.png" alt="" /> 45 <?php } ?> 42 46 <?php if( get_theme_mod('ecommerce_solution_slider_heading',true) != '' || get_theme_mod('ecommerce_solution_slider_text',true) != '' || get_theme_mod('ecommerce_solution_show_slider_button',true) != ''){ ?> 43 47 <div class="carousel-caption"> -
shopping-solution/0.1.9/readme.txt
r169651 r170419 4 4 Requires at least: 5.0 5 5 Tested up to: 6.0 6 Stable Tag: 0.1. 86 Stable Tag: 0.1.9 7 7 Requires PHP: 7.2 8 8 License: GNU General Public License v3.0 … … 47 47 = 0.1.8 = 48 48 * Resolved scroll to top box shadow color error. 49 50 = 0.1.9 = 51 * Added default slider image. 49 52 50 53 == Resources == -
shopping-solution/0.1.9/style.css
r169651 r170419 7 7 Tested up to: 6.0 8 8 Requires PHP: 7.2 9 Version: 0.1. 89 Version: 0.1.9 10 10 license: GNU General Public License v3.0 11 11 License URI: http://www.gnu.org/licenses/gpl.html … … 24 24 body{ 25 25 color: #878787; 26 position: static !important; 26 27 } 27 28 a{
Note: See TracChangeset
for help on using the changeset viewer.