Title: Ashtabula
Author: mark l chaves
Published: <strong>अगस्ट 22, 2020</strong>
Last modified: डिसेम्बर 18, 2022

---

प्लगिनहरू खोज्नुहोस्

![](https://ps.w.org/ashtabula/assets/banner-772x250.jpg?rev=2367113)

यो प्लगिन **वर्डप्रेसका ३ प्रमुख नवीनतम रिलीजहरूसँग परीक्षण गरिएको छैन**। यो अब 
सम्भवतः व्यवस्थित वा समर्थन नभएको हुन सक्छ र वर्डप्रेसका नयाँ संस्करणहरूमा प्रयोग
गर्दा अनुकूलता सम्बन्धी समस्या हुन सक्छ।

![](https://ps.w.org/ashtabula/assets/icon-256x256.png?rev=2367113)

# Ashtabula

 [mark l chaves](https://profiles.wordpress.org/mlchaves/) द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/ashtabula.1.0.0.zip)

 * [विवरण](https://ne.wordpress.org/plugins/ashtabula/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/ashtabula/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/ashtabula/#installation)
 * [विकास](https://ne.wordpress.org/plugins/ashtabula/#developers)

 [सहायता](https://wordpress.org/support/plugin/ashtabula/)

## विवरण

This plugin allows you to use of the popular [Swiper.js](https://swiperjs.com/) 
library in WordPress.

This is a minimalist plugin that is for displaying responsive cards in a slide.

 * On a large screen device, the slide will show a horizontal card (image on the
   left and text on the right).
 * On a small device, the slide becomes a stacked card with the image on the top
   and text on the bottom.

See the screengrabs below to get a visual or visit the [live demo](https://streetphotography.blog/ashtabula-swiper-slider/).

**Note**: You should be comfortable with HTML and CSS to use this plugin.

### Usage

 1. Use the [demo HTML file](https://github.com/marklchaves/ashtabula/blob/master/ashtabula-demo.html)
    as a starter template. Add this HTML to a HTML or code block/element to your page
    or post.
 2. To add the images, use the example CSS below as a template. Add the CSS to your**
    Appearance** > **Customize** > **Additional CSS** or your child theme’s `style.
    css` file.

CSS example to specify the background image for the responsive card in a slide.

    ```
    /**
     * Swiper Slider Plugin Custom Styles
     */

    #my-swiper-slide-1 {
     background-image: url(mybgimg-1.png);
    }
    #my-swiper-slide-2 {
     background-image: url(mybgimg-2.png);
    }
    #my-swiper-slide-3 {
     background-image: url(mybgimg-3.png);
    }
    ```

### Credits

Powered by [Swiper.js](https://swiperjs.com/).

## स्क्रिनसटहरू

 * [[
 * Example slider card on large devices.
 * [[
 * Example slider card on small devices.

## स्थापना

 1. Upload the contents of plugin zip file to the `/wp-content/plugins/ashtabula` directory,
    or install the plugin through the WordPress plugins page directly.
 2. Activate the plugin through the ‘Plugins’ page.

## प्रश्नोत्तर

### How can I change the Swiper.js settings?

You can override the `ashtabula.js` file. Here’s an example.

Add this to your child theme’s functions.php file.

    ```
    /** Override Swiper Slider Plugin JS */
    function override_ssp_js()
    {
        wp_dequeue_script('ashtabula');
        wp_enqueue_script('swiper-slider-custom-js', get_stylesheet_directory_uri().'/js/swiper-slider-custom.js', '', '1.0.0', true);
    }
    add_action('wp_enqueue_scripts', 'override_ssp_js', 100);
    ```

Create this file: `/js/swiper-slider-custom.js`. Add this code to the file. It will
override the default plugin settings for Swiper.js.

    ```
    /**
     * Make the slides:
     * 1. Slide up instead of 
     * to the right.
     * 2. Loop instead of rewind.
     * 3. Speed up to 3 seconds.
     */
    (function () {
      let swiper = new Swiper(".swiper-container", {
        autoplay: {
          delay: 3000,
        },
        direction: "vertical",
        loop: true,
      });
    })();
    ```

## समीक्षाहरू

यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।

## योगदानकर्ता र डेभलपरहरू

“Ashtabula” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका 
छन्।

योगदानकर्ताहरू

 *   [ mark l chaves ](https://profiles.wordpress.org/mlchaves/)

[“Ashtabula” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्](https://translate.wordpress.org/projects/wp-plugins/ashtabula)

### विकासमा रुचि छ?

[आरएसएस](https://plugins.trac.wordpress.org/log/ashtabula/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/ashtabula/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/ashtabula/) हेर्नुहोस्, वा [विकास लग](https://plugins.trac.wordpress.org/log/ashtabula/)
को सदस्यता लिनुहोस्।

## चेन्जलग

#### 1.0.0

 * First release. Tested on the Twenty Twenty and GeneratePress themes.

## मेटा

 *  संस्करण **1.0.0**
 *  पछिल्लो अपडेट **3 वर्ष अघि**
 *  सक्रिय स्थापना **१० भन्दा कम**
 *  वर्डप्रेस संस्करण ** 5.3.2 वा उच्च **
 *  जाँच गरिएको **6.1.10**
 *  PHP संस्करण ** 7.2 वा उच्च **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/ashtabula/)
 * ट्यागहरू
 * [responsive](https://ne.wordpress.org/plugins/tags/responsive/)[slider](https://ne.wordpress.org/plugins/tags/slider/)
   [swiper](https://ne.wordpress.org/plugins/tags/swiper/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/ashtabula/advanced/)

## रेटिङ्गहरू

अहिलेसम्म कुनै समीक्षा पेस गरिएको छैन।

[Your review](https://wordpress.org/support/plugin/ashtabula/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/ashtabula/reviews/)

## योगदानकर्ताहरू

 *   [ mark l chaves ](https://profiles.wordpress.org/mlchaves/)

## सहायता

केही भन्नु छ? सहयोग चाहियो?

 [सहायता फोरम हेर्नुहोस्](https://wordpress.org/support/plugin/ashtabula/)

## दान गर्नुहोस्

के तपाईँ यस प्लगिनको उन्नतिको लागि सहायता गर्न चाहनुहुन्छ?

 [ यो प्लगिनको लागि दान गर्नुहोस् ](https://ko-fi.com/marklchaves)