Jump to content

Search the Community

Showing results for tags 'bootstrap slider'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. hi again, can anyone help me please because my mind will explode.. i have a page with children and i want to create a bootstrap slider with the last 5 page->children that have a specific field page tag. so i have stuck with this ... <?php $i = 1; $tax = $pages->find("template=taxonomy, title=1293|1292"); $slider = $pages->get("/last-news/")->children("$tax, limit=5"); foreach ($slider as $s){ $thumb = $s->images->first(); $activeClass= ''; if ($i === 1) $activeClass = 'active'; echo "<div class='item $activeClass'> <img src='{$thumb}' alt='$s->description'> <div class='carousel-caption'> <h4>Second Thumbnail label</h4> <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> </div> </div>"; $i++; } ?> this code returns 1 image and 4 empty images src thanks
×
×
  • Create New...