前言介紹
- 這款 WordPress 外掛「Mimo Carousel」是 2016-02-14 上架。
- 目前有 20 個安裝啟用數。
- 上一次更新是 2016-06-10,距離現在已有 3248 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.3 以上版本才可以安裝。
- 有 1 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
posts | jquery | columns | content | carousel |
內容簡介
建立一個短碼來展示訂製循環的輪播器。使用短碼方式如下: [mimo_carousel id=”輪播器 ID ”],您可以與 Woocommerce 配合使用此外掛程式,以製作商品輪播。Mimo Carousel 外掛程式完全兼容 Siteorigin 插件的構建器。
透過其元件或短碼,此外掛程式可以用於創建 1、2、3、4 或更多行的 Woocommerce 商品滑块。具有多於 1 行的滑块檢視器可完美地展示您的產品或文章。
設定不同選項
循環選項
- 偏移量
- 要顯示的類別
- 文章數量
- 要使用的圖片尺寸
- 要使用的自訂文章類型,例如您可以在輪播器中使用 Woocommerce 產品
- 排除文章
- 排序
- 依照排序
設計選項
隱藏標題
隱藏內容摘要
隱藏圖片
使用您自己的主題模板,針對主題開發人員,請參閱開發者指令
輪播器選項
顯示 / 隱藏點
顯示 / 隱藏箭頭
無障礙:啟用制表和箭頭鍵導航
自適應高度:啟用單個幻燈片水平輪播器的自適應高度。
自動播放
自動播放速度
作為相關輪播器的導航:設置滑動器為其他輪播器的導航(類或 ID 名稱)
可拖曳
緩和類型
延遲載入
滑鼠移入時暫停播放
mobileFirst:響應設置使用“ mobile first 計算”
在點擊點時暫停播放
行數
每行要顯示的幻燈片數量
要顯示的文章數量
每次水平滑動的文章數量
速度
滑動
直向
從右至左
可變幅度:可變幅度的幻燈片
使用指示
在 WordPress 儀表板 / 輪播器 中建立您的輪播
使用短碼 [mimo_carousel id=”輪播文章 ID ”] 以顯示輪播或使用 Mimo Carousel 元件
開發人員指示
除了元件內的選項之外,您可以透過以下操作來操控迴圈之前 / 之後和文章內容:
do_action(‘mimo_carousel_before_content’); // 開始每篇文章內容
do_action(‘mimo_carousel_after_content’); // 結束每篇文章內容
do_action(‘mimo_carousel_before_loop’); // 在迴圈外
do_action(‘mimo_carousel_after_loop’); // 在迴圈外
在您的主題中創建名為“ mimo-carousel”的文件夾,再在其中創建一個名為“偏置”的文件夾,然後在其中創建一個名為“ mimo-carousel-content.php”的檔案,以覆寫文章的內容範本。您可以在此處指定在輪播器中顯示文章視圖所使用的範本。通常這將是您當前主題中名為 content.php 的範本。
檔案“ mimo-carousel-content.php”示例:
如果(class_exists( 'Woocommerce' ) && get_post_type() == 'product'){
// 使用主題的 woocommerce 模板
get_template_part('woocommerce/content','product');
} else {
// 使用主題的文章範本
get_template_part('template-parts/content');
}
尋找外掛和問題解決方案,請前往 Mimo Studio
原文外掛簡介
Creates a shortcode to display Carousels with custom loops. Use the shortcode like this: [mimo_carousel id=”the carousel id”] , you can use this plugin with Woocommerce to make a products carusel. Mimo Carousel plugin is completely compatible with Page Builder by Siteorigin plugin.
With its widget or shortcode, this plugin can be used to create a woocommerce products slider with 1,2,3,4 or more columns. with more than 1 column it has a carousel view that works perfectly to showcase your products or posts.
Set different options
Loop options
-offset
-Categories to show
Number of posts
Image size to use
Custom Post Type to use, you can use Woocommerce products for example in the Carousels
Exclude Post
Order
Order by
Design Options
Hide Title of posts
Hide Excerpt of posts
Hide images of posts
Use your own theme templates, for theme developers, see developer instructions
Carousel Options
Show/Hide dots
Show/Hide arrows
Accessibility: Enables tabbing and arrow key navigation
Adaptive Height: Enables adaptive height for single slide horizontal carousels.
Autoplay
Autoplay Speed
As Nav for: Set the slider to be the navigation of other slider (Class or ID Name)
draggable
Kind of easing
lazyLoad
pauseOnHover
mobileFirst : Responsive settings use mobile first calculation
pauseOnDotsHover
rows
slidesPerRow
slidesToShow: Number of posts to show
slidesToScroll: In each horizontal scroll
speed
touchMove
vertical
rtl
variableWidth: Variable width slides
Usage instructions
Create your Carousels in WordPress Dashboard/Carousels
Use shortcode [mimo_carousel id=”the carousel post id”] to display carousels or use Mimo Carousel Widget
Developer instructions
Apart from the options inside widget you can manipulate the before/after loop and articles content with this actions:
do_action(‘mimo_carousel_before_content’); // The beginnning of content inside each article
do_action(‘mimo_carousel_after_content’); // The end of content inside each article
do_action(‘mimo_carousel_before_loop’); // Out of the loop
do_action(‘mimo_carousel_after_loop’); // Out of the loop
Create a folder in your theme called ‘mimo-carousel’ and inside a folder called ‘partials’, then create a file insise, called ‘mimo-carousel-content.php’, to overwrite content template for posts. You can especify here which template to use for the posts view inside carousel. This would be normally the template called content.php in your theme.
Example of file ‘mimo-carousel-content.php’ :
[Example 1][markdown syntax]
if(class_exists('Woocommerce') && get_post_type() == 'product' ) {
//Use woocommerce template of theme
get_template_part( 'woocommerce/content','product');
} else {
//Use post template of theme
get_template_part( 'template-parts/content');
}
[markdown syntax]
Find plugin and issues solved at Mimo Studio
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Mimo Carousel」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
WP Shortcodes Plugin — Shortcodes Ultimate 》Shortcodes Ultimate 是一個全面的視覺與功能性元素收集,您可以在文章編輯器、文字小工具甚至是範本檔案中使用。使用 Shortcodes Ultimate,您可以輕鬆地建...。
Slide Anything – Responsive Content / HTML Slider and Carousel 》Slide Anything 允許您創建一個輪播/滑動功能,每個滑動層的內容可以是任何您想要的東西 - 圖像,文字,HTML甚至是短代碼。此外,這個外掛使用 Owl Carousel ...。
Carousel, Slider, Gallery by WP Carousel – Image Carousel with Lightbox & Photo Gallery, Video Slider, Post Carousel & Post Grid, Product Carousel & Product Grid 》, 實時演示 | 影片教程 | 使用說明 | 升級至專業版 », 概觀, WP Carousel 是最強大且使用者友好的 WordPress 公告欄外掛,可建立帶圖片、文章、WooComm...。
Slider by Soliloquy – Responsive Image Slider for WordPress 》響應式 WordPress Slider 外掛, 我們相信你不需要請專業開發人員就能創建一個 WordPress slider。這就是為什麼我們開發了 Soliloquy,一個拖放式 slider 外掛...。
Carousel Slider 》, 概述, 創建符合 SEO 標準的圖像、標誌、視頻、文章、WooCommerce 產品輪播和滑塊。, Carousel Slider 是一個支援觸控的 WordPress 外掛,可以讓您創建高度...。
Carousel Slider Block for Gutenberg 》這款外掛是一個響應式輪播編輯器,適用於 Gutenberg 編輯器。, 功能, , 可以添加無限多個輪播, 每個輪播都可以添加任意區塊, 在編輯器中可以即時預覽輪播效果...。
YITH WooCommerce Product Gallery & Image Zoom 》提升您的產品圖片,出色的產品頁面的關鍵特色, 當我們在網上商店購物時,我們與產品的接觸是有限的:我們無法觸摸、聞或嘗試它。我們排除了產品體驗中的某些...。
Easing Slider 》在 WordPress 上建立滑輪廣告一直都是十分困難的。雖然有許多相似的外掛提供解決方案,但都沒有完全符合要求。Easing Slider 希望解決這個問題。這個外掛專注...。
Tiled Gallery Carousel Without JetPack 》正在開發具備 Gutenberg 版本的平鋪式圖庫外掛,我們將很快發布。在此之前,您可以在 Classi WP 編輯器中使用此平鋪式圖庫外掛。, 毫無疑問,JetPack 充滿了...。
Testimonial Carousel For Elementor 》專為 Elementor 打造的精簡型 Testimonial Carousel 讓您可以在彈出式或輪播幻燈片中顯示長文評論。現在,您可以使用此外掛輕鬆地將長評論以彈出式呈現給使用...。
Catch Gallery 》Catch Gallery是一款簡單易用的WordPress外掛,可幫助您建立令人驚豔的相冊展示。該插件的靈感來自於Jetpack的相冊模組,使用Catch Gallery,您可以在創意的W...。
XO Slider 》XO Slider 是一款外掛,可讓您輕鬆建立滑動輪播。, 特點, , 支援縮圖導航、輪播和內容顯示。, 使用 Swiper 作為滑動輪播腳本。, 前端不使用 jQuery。, 支援影...。
Logo Slider and Showcase 》外掛展示 使用說明, Logo Slider and Showcase 是一個完全響應式的外掛,可用不同的方式顯示你的標誌、客戶和合作夥伴,例如網格、滑块和按類別的 Isotope 篩...。
CPT Bootstrap Carousel 》這款外掛提供自定義文章類型選擇圖像和內容,並使用短代碼 [image-carousel] 從 Twitter Bootstrap 輸出 輪播。, 插件假設您已經在使用 Bootstrap,因此需要...。
Smooth Slider 》WordPress 允許創建各種網站內容。為了讓網站對訪問者更具吸引力並利用網頁佔用空間,建議使用滑動或輪播圖。網絡上有許多免費和付費的幻燈片創建工具,可以...。