Make WordPress Themes


Ignore:
Timestamp:
10/20/2025 11:01:40 AM (5 weeks ago)
Author:
themedropbox
Message:

New version of Movie Review Blog - 3.1

Location:
movie-review-blog/3.1
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • movie-review-blog/3.1/archive.php

    r287968 r294082  
    11<?php get_header(); ?>
    22
    3 <div id="content">
     3<div id="content" class="layout-img">
    44   <div class="feature-header">
    55      <div class="feature-post-thumbnail">
  • movie-review-blog/3.1/core/includes/customizer.php

    r287968 r294082  
    10251025        'label'       => __( 'Choose Your Copyright Background Color', 'movie-review-blog' ),
    10261026        'section'     => 'movie_review_blog_footer_section',
    1027         'default'     => '',
     1027        'default'     => '#000000',
    10281028    ] );
    10291029
  • movie-review-blog/3.1/core/includes/importer/assets/css/importer-style.css

    r285142 r294082  
    1010  padding: 100px;
    1111  background: #1d2327;
     12  height: max-content;
    1213}
    1314.importer-wrap.spinning .destiny-going {
  • movie-review-blog/3.1/core/includes/inline.php

    r287968 r294082  
    22
    33$movie_review_blog_custom_css = '';
    4 
    5 
    6 $movie_review_blog_is_dark_mode_enabled = get_theme_mod( 'movie_review_blog_is_dark_mode_enabled', false );
    7 
    8 if ( $movie_review_blog_is_dark_mode_enabled ) {
    9 
    10     $movie_review_blog_custom_css .= 'body,.fixed-header,tr:nth-child(2n+2) {';
    11     $movie_review_blog_custom_css .= 'background: #000;';
    12     $movie_review_blog_custom_css .= '}';
    13 
    14     $movie_review_blog_custom_css .= 'body,h1,h2,h3,h4,h5,p,.main-navigation ul li a,.woocommerce .woocommerce-ordering select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,a,.logo span,.logo a{';
    15     $movie_review_blog_custom_css .= 'color: #fff;';
    16     $movie_review_blog_custom_css .= '}';
    17 
    18     $movie_review_blog_custom_css .= 'a.wc-block-components-product-name, .wc-block-components-product-name,.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
    19 .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    20 .wc-block-components-totals-item__label,.wc-block-components-totals-item__value,
    21 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p,
    22 .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,
    23 .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
    24 .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button,
    25 .wc-block-components-quantity-selector,table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,
    26 .wc-block-components-product-price__value.is-discounted,del.wc-block-components-product-price__regular{';
    27     $movie_review_blog_custom_css .= 'color: #fff !important;';
    28     $movie_review_blog_custom_css .= '}';
    29 
    30     $movie_review_blog_custom_css .= 'h5.product-text a,#featured-product p.price,.card-header a,.comment-content.card-block p{';
    31     $movie_review_blog_custom_css .= 'color: #000 !important';
    32     $movie_review_blog_custom_css .= '}';
    33 
    34     $movie_review_blog_custom_css .= '.post-box{';
    35     $movie_review_blog_custom_css .= '    border: 1px solid rgb(229 229 229 / 48%)';
    36     $movie_review_blog_custom_css .= '}';
    37 }
    384
    395    /*---------------------------text-transform-------------------*/
  • movie-review-blog/3.1/functions.php

    r285142 r294082  
    474474    }
    475475endif;
     476
     477/*-----------------------------------------------------------------------------------*/
     478/* Dark Mode */
     479/*-----------------------------------------------------------------------------------*/
     480
     481function movie_review_blog_body_class( $movie_review_blog_classes ) {
     482    $movie_review_blog_dark_mode_enabled = get_theme_mod( 'movie_review_blog_is_dark_mode_enabled', false );
     483
     484    if ( $movie_review_blog_dark_mode_enabled ) {
     485        $movie_review_blog_classes[] = 'dark-mode';
     486    }
     487
     488    return $movie_review_blog_classes;
     489}
     490add_filter( 'body_class', 'movie_review_blog_body_class' );
  • movie-review-blog/3.1/index.php

    r287968 r294082  
    11<?php get_header(); ?>
    22
    3 <div id="content">
     3<div id="content" class="layout-img">
    44   <div class="feature-header">
    55      <div class="feature-post-thumbnail">
  • movie-review-blog/3.1/readme.txt

    r291117 r294082  
    33Tags: photography, entertainment, blog, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, grid-layout, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, featured-image-header, editor-style, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready
    44Requires at least: 5.0
    5 Stable tag: 3.0
     5Stable tag: 3.1
    66Requires PHP: 7.2
    77Tested up to: 6.8
     
    155155* Updated getstart & sidebar.
    156156
     157= 3.1 = October - 16 - 2025
     158
     159* Updated demo importer height when debug is on.
     160* Updated dark mode.
     161* Added category & tag in single post page.
     162* Added class for post-thumbnail in archive, index, search & related post.
     163* Updated sidebar.php file.
     164* Updated copyright bg issue.
     165* Added underline in footer text.
     166* Updated sticky post css.
     167
    157168== Resources ==
    158169
  • movie-review-blog/3.1/search.php

    r287968 r294082  
    11<?php get_header(); ?>
    22
    3 <div id="content">
     3<div id="content" class="layout-img">
    44    <div class="feature-header">
    55      <div class="feature-post-thumbnail">
  • movie-review-blog/3.1/sidebar.php

    r287968 r294082  
    11<div class="sidebar-area mt-5 wow fadeInRight">
    22    <?php if ( ! dynamic_sidebar( 'movie-review-blog-sidebar' ) ) : ?>
    3       <h4 class="title"><?php esc_html_e('Search Here', 'movie-review-blog'); ?></h4>
    4         <form method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>">
    5             <input placeholder="<?php esc_attr_e('Type here...', 'movie-review-blog'); ?>" type="text" name="s" id="search" value="<?php the_search_query(); ?>" />
    6             <input type="submit" class="search-submit" value="<?php esc_attr_e('Search', 'movie-review-blog');?>" />
    7         </form>
     3        <aside id="search" class="sidebar-widget widget_search" role="complementary">
     4            <h4 class="title"><?php esc_html_e('Search Here', 'movie-review-blog'); ?></h4>
     5            <form method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>">
     6                <input placeholder="<?php esc_attr_e('Type here...', 'movie-review-blog'); ?>" type="text" name="s" id="search" value="<?php the_search_query(); ?>" />
     7                <input type="submit" class="search-submit" value="<?php esc_attr_e('Search', 'movie-review-blog');?>" />
     8            </form>
     9        </aside>
    810        <aside id="categories-2" class="sidebar-widget widget_categories" role="complementary">
    911            <h4 class="title"><?php esc_html_e('Categories', 'movie-review-blog'); ?></h4>
  • movie-review-blog/3.1/single.php

    r287968 r294082  
    4646        ?>
    4747      <!-- Related Posts -->
    48       <div class="related-posts">
     48      <div class="related-posts layout-img">
    4949          <h3 class="py-2"><?php esc_html_e('Related Posts:-', 'movie-review-blog'); ?></h3>
    5050          <div class="row">
     
    112112        ?>
    113113      <!-- Related Posts -->
    114       <div class="related-posts">
     114      <div class="related-posts layout-img">
    115115          <h3 class="py-2"><?php esc_html_e('Related Posts:-', 'movie-review-blog'); ?></h3>
    116116          <div class="row">
  • movie-review-blog/3.1/style.css

    r291117 r294082  
    55Theme URI: https://www.misbahwp.com/products/free-movie-wordpress-theme
    66Author URI: https://www.misbahwp.com/
    7 Version: 3.0
     7Version: 3.1
    88Requires PHP: 7.2
    99Tested up to: 6.8
     
    380380  font-weight: 500;
    381381  color: #000000;
     382  word-wrap: break-word;
    382383}
    383384.post-content p{
     
    416417  max-width: 100%;
    417418}
    418 .post-content img,
    419 .post-thumbnail img {
     419.layout-img img {
    420420  max-height:100%;
    421421  height:300px;
     
    424424  border-radius: 10px;
    425425  background: #dfdcdc;
     426}
     427.sidebar-area img{
     428  height:auto;
     429  width: auto;
    426430}
    427431.post-content{
     
    710714    height: 300px !important;
    711715    object-fit: cover;
    712     opacity: 0.9;
     716    opacity: 0.4;
    713717}
    714718h1.post-title.feature-header-title{
     
    892896    border: 1px solid rgba(0, 0, 0, 0.125);
    893897}
    894 .post-box{
    895   position: relative;
    896 }
    897 .sticky .post-thumbnail::before {
     898h3.post-title{
     899    position: relative;
     900}
     901.sticky h3.post-title::before {
    898902    content: '\f08d';
    899903    font-family: "Font Awesome\ 5 Free";
    900     font-size: 30px;
     904    font-size: 25px;
    901905    font-weight: 900;
    902     color: #fff;
     906    color: #000;
    903907    margin-top: 10px;
    904908    z-index: 9;
     909    left: -30px;
    905910    position: absolute;
    906     top: 27px;
    907     left: 27px;
    908     transform: rotate(312deg);
     911    bottom: -6px;
     912}
     913.sticky h3.post-title {
     914    margin-left: 30px;
     915}
     916
     917.copyright{
     918  background: #000000;
    909919}
    910920
     
    14061416    margin:5px 5px 0;
    14071417    width:96%;
    1408     height:100%
     1418    height:auto;
    14091419}
    14101420
     
    14261436  margin: 4px;
    14271437}
     1438
     1439/* DARK MODE CSS */
     1440body.dark-mode {
     1441  background-color: #000000 !important;
     1442  color: #f1f1f1 !important;
     1443}
     1444
     1445body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,body.dark-mode .sticky h3.post-title::before,
     1446body.dark-mode a ,body.dark-mode p, body.dark-mode li, body.dark-mode blockquote ,body.dark-mode label ,body.dark-mode span,body.dark-mode .post-content,body.dark-mode .main-navigation .dashicons-arrow-down-alt2:before,.header-search i,body.dark-mode .wc-block-components-totals-footer-item .wc-block-components-totals-item__value, body.dark-mode .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, body.dark-mode .wc-block-components-totals-item__label, body.dark-mode .wc-block-components-totals-item__value, body.dark-mode .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, body.dark-mode .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount, body.dark-mode .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input, body.dark-mode .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button, body.dark-mode .wc-block-components-quantity-selector, body.dark-mode table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, body.dark-mode .wc-block-components-product-price__value.is-discounted, body.dark-mode del.wc-block-components-product-price__regular,body.dark-mode .woocommerce .woocommerce-ordering select, body.dark-mode .woocommerce form .form-row input.input-text, body.dark-mode .woocommerce form .form-row textarea {
     1447  color: #fff !important;
     1448}
     1449
     1450body.dark-mode span.woocommerce-Price-amount.amount{
     1451  color: grey !important;
     1452}
     1453
     1454body.dark-mode input, body.dark-mode select, body.dark-mode textarea, body.dark-mode button {
     1455  background-color: #333;
     1456  color: #fff;
     1457}
     1458
     1459body.dark-mode #site-navigation .page_item_has_children ul li a,body.dark-mode #site-navigation .main-navigation .menu .menu-item-has-children ul li a,body.dark-mode p.slider-button a:hover,body.dark-mode .screen-reader-text:focus,body.dark-mode #wp-admin-bar-woocommerce-site-visibility-badge a.ab-item,h4.product-text a,body.dark-mode .searchform input[type=text],body.dark-mode ul.woocommerce-error li{
     1460  color: #000 !important;
     1461}
     1462
     1463body.dark-mode input[type="submit"], body.dark-mode button[type="submit"] {
     1464  background-color: var(--first-color);
     1465  color: #fff;
     1466}
     1467
     1468body.dark-mode table {
     1469  background-color: #1e1e1e !important;
     1470  color: #f1f1f1 !important;
     1471}
     1472body.dark-mode th ,body.dark-mode td {
     1473  background-color: #333 !important;
     1474  color: #fff !important;
     1475}
     1476body.dark-mode tr {
     1477  color: #fff !important;
     1478}
     1479
     1480body.dark-mode pre, body.dark-mode code {
     1481  background-color: #1e1e1e !important;
     1482  color: #f1f1f1 !important;
     1483}
     1484
     1485body.dark-mode .post-box,body.dark-mode #coming-soon-footer-banner,body.dark-mode div.product .woocommerce-tabs ul.tabs li,
     1486body.dark-mode .pagination a,body.dark-mode .movie-review-blog-pagination a span,#featured-product{
     1487  background: #121212 !important;
     1488}
     1489
     1490body.dark-mode #wp-calendar th, body.dark-mode #wp-calendar td{
     1491  color: #fff !important;
     1492}
     1493
     1494body.dark-mode ul, body.dark-mode ol {
     1495  color: #f1f1f1 !important;
     1496}
     1497
     1498body.dark-mode footer {
     1499  background-color: #1f1f1f;
     1500  color: #f1f1f1;
     1501}
     1502
     1503body.dark-mode .pagination a {
     1504  color: var(--first-color);
     1505}
     1506
     1507body.dark-mode .widget {
     1508  background-color: #1e1e1e;
     1509}
     1510
     1511body.dark-mode .widget a {
     1512  color: #f1f1f1;
     1513}
     1514
     1515body.dark-mode .sidebar-area .sidebar-widget,body.dark-mode .media-body-wrap.card{
     1516  background: #121212;
     1517}
     1518
     1519@media screen and (max-width : 1000px){
     1520  body.dark-mode #site-navigation .main-navigation .menu .menu-item-has-children ul li a{
     1521    color: #fff !important;
     1522  }
     1523}
  • movie-review-blog/3.1/template-parts/content-post.php

    r234128 r294082  
    88      the_content();
    99      the_tags('<div class="post-tags"><strong>'.esc_html__('Tags:','movie-review-blog').'</strong> ', ', ', '</div>');
     10      if ( get_the_category_list() ) : ?>
     11          <div class="post-categories">
     12              <strong><?php esc_html_e( 'Categories:', 'movie-review-blog' ); ?></strong>
     13              <?php the_category( ', ' ); ?>
     14          </div>
     15      <?php endif;
    1016    ?>
    1117  </div>
Note: See TracChangeset for help on using the changeset viewer.