Make WordPress Themes

Changeset 170419


Ignore:
Timestamp:
06/24/2022 09:37:50 AM (3 years ago)
Author:
themedropbox
Message:

New version of Shopping Solution - 0.1.9

Location:
shopping-solution/0.1.9
Files:
2 added
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shopping-solution/0.1.9/page-template/home-page.php

    r156598 r170419  
    3939                  <?php  while ( $query->have_posts() ) : $query->the_post(); ?>
    4040                    <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 } ?>
    4246                      <?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) != ''){ ?>
    4347                        <div class="carousel-caption">
  • shopping-solution/0.1.9/readme.txt

    r169651 r170419  
    44Requires at least: 5.0
    55Tested up to: 6.0
    6 Stable Tag: 0.1.8
     6Stable Tag: 0.1.9
    77Requires PHP: 7.2
    88License: GNU General Public License v3.0
     
    4747= 0.1.8 =
    4848  * Resolved scroll to top box shadow color error.
     49
     50= 0.1.9 =
     51  * Added default slider image.
    4952
    5053== Resources ==
  • shopping-solution/0.1.9/style.css

    r169651 r170419  
    77Tested up to: 6.0
    88Requires PHP: 7.2
    9 Version: 0.1.8
     9Version: 0.1.9
    1010license: GNU General Public License v3.0
    1111License URI: http://www.gnu.org/licenses/gpl.html
     
    2424body{
    2525    color: #878787;
     26    position: static !important;
    2627}
    2728a{
Note: See TracChangeset for help on using the changeset viewer.