Make WordPress Themes

Changeset 147405 for bard


Ignore:
Timestamp:
05/07/2021 08:04:49 AM (5 years ago)
Author:
themedropbox
Message:

New version of Bard - 1.8.9.4

Location:
bard/1.8.9.4
Files:
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bard/1.8.9.4/functions.php

    r141585 r147405  
    572572            'cc-visa',
    573573            'goodreads',
    574             'goodreads-g'
     574            'goodreads-g',
     575            'artstation',
     576            'playstation',
     577            'deviantart',
    575578        );
    576579
  • bard/1.8.9.4/inc/customizer/css/customizer-ui.css

    r140319 r147405  
    5858}
    5959
    60 #customize-control-ashe_options-featured_links_label.tab-title,
    61 #customize-control-ashe_options-featured_slider_label.tab-title {
     60#customize-control-bard_options-featured_links_label.tab-title,
     61#customize-control-bard_options-featured_slider_label.tab-title {
    6262    font-size: 12px !important;
    6363}
  • bard/1.8.9.4/inc/customizer/customizer-defaults.php

    r140319 r147405  
    3030        'main_nav_show_sidebar' => true,
    3131        'main_nav_merge_menu' => false,
    32         'featured_slider_label' => false,
     32        'featured_slider_label' => true,
    3333        'featured_slider_display' => 'all',
    3434        'featured_slider_category' => 'null',
    3535        'featured_slider_amount' => '3',
    3636        'featured_slider_navigation' => 'on',
     37        'featured_slider_exc_images' => false,
    3738        'featured_slider_pagination' => true,
    3839        'featured_links_label' => false,
  • bard/1.8.9.4/inc/customizer/customizer.php

    r141585 r147405  
    698698    // Pagination
    699699    bard_checkbox_control( 'featured_slider', 'pagination', esc_html__( 'Show Pagination Dots', 'bard' ), 'refresh', 30 );
     700
     701    // Exclude Images
     702    bard_checkbox_control( 'featured_slider', 'exc_images', esc_html__( 'Exclude Slides without Images', 'bard' ), 'refresh', 35 );
    700703
    701704    // Pro Version
     
    935938        'snapchat-square'       => 'Snapchat 3',
    936939        'spotify'               => 'Spotify',
     940        'playstation'           => 'Playstation',
     941        'artstation'            => 'Artstation',
     942        'deviantart'            => 'Deviantart',
    937943        'shopping-cart'         => 'Cart',
    938944        'meetup'                => 'Meetup',
  • bard/1.8.9.4/readme.txt

    r147302 r147405  
    44Requires at least: WordPress 4.7+
    55Tested up to: WordPress 5.7.1
    6 Version: 1.8.9.3
     6Version: 1.8.9.4
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.en.html
  • bard/1.8.9.4/style.css

    r147302 r147405  
    55Author URI: http://wp-royal.com/
    66Description: Personal and Multi-Author Beautiful Free WordPress Blog and Multipurpose Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, restaurant, recipe, church, photography, newspaper, quotes blog, auto blog, writer, publisher, editor, business and any other kind of amazing website. A minimal, elegant and mobile friendly layout will WOW and inspire your visitors. No matter whether you are a new blogger or you are very experienced in blogging, you will love the Bard theme. The theme is well documented and very easy to use, even for WordPress beginners. Customizable, clean and modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile and retina displays. Very fast, compatible with many popular plugins, and of course, translation & RTL (right to left language) ready, coded with the best SEO practices, simple & lightweight, clear code, resulting in top rankings in google search results and higher speed scores, developers love it. The theme offers features like text & image logo, Fullscreen Slider, hero header, two blog styles: two columns grid (default style) and simple list style design, Instagram slider widget support (via Smash Balloon Social Photo Feed plugin), footer menu support, GDPR compatibility plugins support, popular podcast plugins support and many more. It also features left, right, footer and alternative sidebars areas to display your widgets. The theme is gutenberg ready and you can use gutenberg blocks to build any layout. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin and Divi. Using the Bard theme and page builders, you can build amazing business or agency sites for your company. The theme can be used as one page website as well - simply make a page with Elementor or with another page builder and link the section ID to the menu items. With the Jetpack portfolio add-on you can make a portfolio site for your freelancer business to display your projects and theme fully compatible with it. Launch your own ecommerce store in minutes with Bard and Woocommerce! The theme fully supports WooCommerce shop (storefront) plugin. You can make site for a cafe, charity, clothing, dentist, grocery, yoga, hotel, hostel, furniture, jewelry, real estate, spa and many other options with Woo. You can sell any product, physical or digital (downloadable) goods, use subscriptions, make a site with memberships or bookings, sell services, add affiliate products, accept popular online payments for your estore like Stripe, PayPal, Square and many others. You have all power tools at the ready with Woo and the Bard theme to increase your sales.You just need to write and be awesome! TEMPLATE DEMO: http://wp-royal.com/themes/bard-free/demo/
    7 Version: 1.8.9.3
     7Version: 1.8.9.4
    88Requires at least: 4.7
    99Requires PHP: 5.2.4
  • bard/1.8.9.4/templates/header/featured-slider.php

    r140319 r147405  
    3030    <?php
    3131
     32    $meta_query = (true == bard_options( 'featured_slider_exc_images' )) ? [ [ 'key' => '_thumbnail_id', 'compare'  => 'EXISTS' ] ] : [];
     33
    3234    // Query Args
    3335    $args = array(
     
    3739        'posts_per_page'        => bard_options( 'featured_slider_amount' ),
    3840        'ignore_sticky_posts'   => 1,
    39         'meta_query'            => array(
    40             array(
    41                 'key'       => '_thumbnail_id',
    42                 'compare'   => 'EXISTS'
    43             )
    44         ), 
     41        'meta_query'            => $meta_query,
    4542    );
    4643
Note: See TracChangeset for help on using the changeset viewer.