{"id":15509071,"url":"https://github.com/devuri/slim-slider","last_synced_at":"2026-02-14T13:33:32.324Z","repository":{"id":39662925,"uuid":"358455351","full_name":"devuri/slim-slider","owner":"devuri","description":"Slim Slider is a small WordPress slider plugin","archived":false,"fork":false,"pushed_at":"2026-01-15T14:42:57.000Z","size":21740,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-15T18:21:01.366Z","etag":null,"topics":["wordpress","wordpress-plugin","wp","wp-plugin"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/slim-slider/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devuri.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-04-16T02:43:19.000Z","updated_at":"2026-01-15T14:42:35.000Z","dependencies_parsed_at":"2024-10-02T09:41:29.965Z","dependency_job_id":"ba2ca44e-b540-4d5c-b9b1-3cc700e1543f","html_url":"https://github.com/devuri/slim-slider","commit_stats":null,"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/devuri/slim-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devuri%2Fslim-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devuri%2Fslim-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devuri%2Fslim-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devuri%2Fslim-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devuri","download_url":"https://codeload.github.com/devuri/slim-slider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devuri%2Fslim-slider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29444752,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T12:43:28.304Z","status":"ssl_error","status_checked_at":"2026-02-14T12:43:14.160Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["wordpress","wordpress-plugin","wp","wp-plugin"],"created_at":"2024-10-02T09:41:18.172Z","updated_at":"2026-02-14T13:33:32.318Z","avatar_url":"https://github.com/devuri.png","language":"JavaScript","readme":"# Slim Slider\n\nA simple, lightweight WordPress slider plugin.\n\n\u003e **Note:** This is the development version. For production use, download from [WordPress.org](https://wordpress.org/plugins/slim-slider/).\n\n## Features\n\n- Lightweight and fast\n- Responsive design\n- Simple shortcode integration\n- Customizable transitions and timing\n- Optional call-to-action buttons\n- SEO-friendly\n\n## Installation\n\n**WordPress Admin:** Plugins → Add New → Search \"Slim Slider\" → Install → Activate\n\n**Manual Upload:** Plugins → Add New → Upload Plugin → Choose zip file → Install\n\n## Quick Start\n\n```\n[slim_slider]\n```\n\nThis displays all published slides. To show specific slides:\n\n```\n[slim_slider slides=\"135,654,168,201\"]\n```\n\n## Creating Slides\n\nGo to **Slim Slides → Add New** in WordPress admin.\n\n### Slide Meta Fields\n\n| Field | Description |\n| ----- | ----------- |\n| ID | Auto-generated slide ID (read-only) |\n| Heading | Slide heading text |\n| Alt Text | Image alt attribute for accessibility/SEO |\n| Description | Slide description |\n| Url | Link destination (http/https only) |\n| Button Text | Call-to-action button label (requires Url) |\n| Button Class | Custom CSS class for button styling |\n| Button Position | Button alignment: `left`, `center`, `right` |\n| Onclick | JavaScript onclick event handler |\n\n### Button Feature\n\nAdd a call-to-action button instead of making the entire slide clickable.\n\n\u003e **Note:** Button only appears when both **Url** and **Button Text** are set.\n\n| Position Value | Result |\n| -------------- | ------ |\n| `left` | Aligned left, 20px from edge |\n| `center` | Centered (default) |\n| `right` | Aligned right, 20px from edge |\n\n#### Button Styling\n\n```css\n/* Custom colors */\n.slimslider-btn {\n    background-color: #e74c3c;\n}\n\n.slimslider-btn:hover {\n    background-color: #c0392b;\n}\n\n/* Adjust vertical position */\n.slimslider-btn-wrap {\n    bottom: 40px;\n}\n```\n\n## Shortcode Options\n\n```\n[slim_slider height=\"740\" fill=\"stretch\" speed=\"3000\"]\n```\n\n| Option | Default | Description |\n| ------ | ------- | ----------- |\n| `id` | - | Slider ID |\n| `slides` | - | Comma-separated slide IDs |\n| `height` | `740` | Slide height in pixels |\n| `width` | `1200` | Slide width in pixels |\n| `nav` | `ab` | Navigation: `a` (arrows), `b` (bullets), `ab` (both) |\n| `fill` | `stretch` | Image fill mode (see below) |\n| `speed` | `3000` | Time between slides (ms) |\n| `duration` | `300` | Transition speed (ms) |\n| `swipe` | `800` | Swipe animation duration (ms) |\n| `opacity` | `2` | Transition opacity |\n| `get` | `false` | Use `true` when called via `do_shortcode()` |\n\n### Fill Modes\n\n| Value | Description |\n| ----- | ----------- |\n| `stretch` | Stretch image to fit slide |\n| `contain` | Fit entire image, maintain aspect ratio |\n| `cover` | Cover entire slide, maintain aspect ratio |\n| `actual` | Use actual image size |\n\n## Limitations\n\n- One slider per page/post\n\n## Credits\n\n- [jssor slider](https://github.com/jssor/slider)\n\n## License\n\nGPL-2.0 — [License details](https://github.com/devuri/slim-slider/blob/master/LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevuri%2Fslim-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevuri%2Fslim-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevuri%2Fslim-slider/lists"}