Webflow Collection Reorder

Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface.

ما هو Webflow Collection Reorder؟

Webflow Collection Reorder هو إضافة Chrome تم تطويرها بواسطة webflowextensions، والميزة الرئيسية لها هي "Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Webflow Collection Reorder

قم بتنزيل ملفات الامتداد Webflow Collection Reorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        ## Overview
Welcome to the Webflow Collection Sorter Chrome extension! If you use Webflow to build websites, you know it can be tedious to manually sort the items in a CMS collection. That's where our extension comes in. With Webflow Collection Sorter, you can easily and quickly rearrange the order of your CMS collection items using a simple drag-and-drop interface. No more wasted time trying to manually sort your collection items - just install the extension and organise your content.

## How to Sort CMS Collection Items

1. Once you have installed the Chrome extension, you will see a new "Sort" button on the collection listing page in Webflow.

2. Before you can use the Sort button, you need to make sure that your Collection has a "Sort Order" number field. Note that the field type should be “Number” and the field name should exactly be “Sort Order”. If this field is not present, you will need to add it in order to enable the "Sort" button.

3. Click the "Sort" button to open the modal. The modal displays only the Name, Slug, Sort Order, and Creation Date fields.

4. You can sort the collection items by dragging and dropping them into the desired order. When you are finished, click the "Save" button.

5. The "Sort Order" field will be updated for each collection item to reflect the new order of the items.

6. To view the updated order on the front-end of your website, make sure that your collection is sorted by the "Sort Order" field. This will ensure that the order is displayed correctly on the front-end pages.                    

معلومات أساسية عن التمديد

الاسم Webflow Collection Reorder Webflow Collection Reorder
ID dgfmdefiehjbcnocbmjepgeichkociih
عنوان URL الرسمي https://chromewebstore.google.com/detail/webflow-collection-reorde/dgfmdefiehjbcnocbmjepgeichkociih
الوصف Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface.
حجم الملف 247 KB
عدد التثبيتات 704
النسخة الحالية 1.0.0
آخر تحديث 2023-01-08
تاريخ النشر 2023-01-07
تقييم 3.50/5 مجموع تقييمات 12
المطور webflowextensions
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://docs.google.com/document/d/1X2d1C_vKVtBKP62YyPOxPj4E06fi_5YzVxht2g0I4Yc
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webflow Collection Reorder",
    "description": "Effortlessly rearrange CMS collection items in Webflow with a simple drag and drop interface. ",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Webflow Collection Reorder",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.webflow.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.webflow.com\/design\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon2.png"
            ],
            "matches": [
                "https:\/\/*.webflow.com\/*"
            ]
        }
    ]
}