Support Thread

Featured Articles Not Rotating Only A Few Articles Show Up

Featured Articles Not Rotating Only A Few Articles Show Up — APG vNext Guide

Featured Articles Not Rotating Only A Few Articles Show Up — a feature discussion or integration topic from the APG vNext community forum.

APG vNext Integration Capabilities

  • Authentication: ASP.NET Membership, Active Directory/LDAP, OAuth (Facebook, Twitter, Google)
  • Email: Configurable SMTP, HTML templates, digest notifications, bounce handling
  • Mobile: Responsive design + official Tapatalk integration from v5.5+
  • Search: Built-in full-text search powered by SQL Server Full-Text Indexing
  • Analytics: Google Analytics, Adsense, and third-party widget support
  • CDN: Static asset CDN support configurable via admin panel

Browse the full list at Features Overview or ask in the support forum.

Featured Articles Not Rotating or Showing Only a Few in APG vNext

The Featured Articles carousel on the community homepage stops rotating or shows fewer articles than expected when: the rotation JavaScript has a timing conflict, fewer articles than the configured count meet the "featured" criteria, or the cache is serving a stale featured list.

Diagnosing the Rotation Issue

-- Check how many articles are currently marked as featured:
SELECT COUNT(*) FROM apg_BlogPosts WHERE IsFeatured = 1 AND IsPublished = 1;
-- If this is less than APG.Homepage.FeaturedCount, not all slots are filled

Fix 1: Set More Articles as Featured

Admin Panel -> Content -> Blog Posts -> check the "Featured" checkbox on additional posts. Or bulk-update via SQL:

-- Mark the 5 most recent published posts as featured:
UPDATE apg_BlogPosts
SET    IsFeatured = 1
WHERE  PostID IN (
    SELECT TOP 5 PostID FROM apg_BlogPosts
    WHERE  IsPublished = 1
    ORDER  BY PublishedAt DESC
);

Fix 2: JavaScript Rotation Conflict

If custom JavaScript is initialising the carousel before APG vNext's carousel script loads, the rotation stops after the first cycle. Fix by deferring the carousel initialisation:

// Wait for APG vNext carousel to initialise before adding custom logic:
document.addEventListener('apg:carousel:ready', () => {
  // Custom carousel code here
});

Fix 3: Caching Serving Stale Featured List

<!-- Reduce featured article cache duration -->
<add key="APG.Homepage.FeaturedCacheMinutes" value="5" />
<!-- Default is 30 minutes - new featured articles won't appear for up to 30 min -->

Diagnosing Featured Article Rotation Failures

When featured articles stop rotating or only a subset of designated articles appear, the most common causes are: the featured article cache is stale and not clearing at the configured interval, some designated articles are set to draft or private status which excludes them from the rotation, the article count configured in the widget exceeds the number of articles actually designated as featured (causing the widget to loop through a smaller pool than expected), or an article's scheduled publish date is in the future and it hasn't become visible yet. Check Admin Panel → Blog/Articles → Featured to verify the current list of articles designated as featured and their publication status. Any article in draft status or with a future publish date is excluded from the rotation regardless of the featured designation.

Featured Article Content Strategy

The Featured Articles section on the APG vNext homepage or forum front page is prime real estate for highlighting content that represents the best the community has to offer. Use it strategically rather than just rotating the most recent posts: pin Knowledge Base articles that answer the most common questions (reducing support load), feature tutorial posts that help new members get started, and highlight threads with significant community engagement that demonstrate the forum's activity level to first-time visitors. APG vNext allows administrators to manually pin specific articles as featured in addition to the automatic rotation, ensuring that evergreen content stays visible alongside fresh posts. Review and update the manually featured articles quarterly to ensure they remain current and relevant.

Featured Article Images and Visual Appeal

APG vNext displays a thumbnail image for each featured article in the rotation widget. Articles without an attached image use a default placeholder, which looks noticeably less professional than articles with custom images. For the best homepage appearance, ensure all articles designated as featured have a relevant header image attached. Configure the recommended image dimensions for featured article thumbnails in Admin Panel → Blog/Articles → Featured Widget → Image Dimensions. Images uploaded at the exact recommended dimensions display without any browser-side scaling artefacts, which improves both visual quality and page load performance.

A/B Testing Featured Article Placements

If the forum receives enough traffic to make A/B testing worthwhile (typically 500+ daily unique visitors), consider testing different featured article rotation frequencies and thumbnail sizes to optimise click-through rate. APG vNext integrates with Google Optimize for A/B testing front-page elements — configure the test through the Google Optimize interface and inject the variation script via Admin Panel → Settings → Analytics → Custom Scripts. Measure click-through rate on featured articles as the primary metric to determine which configuration drives more member engagement with community content.

Related Resources


Looking for more help? Browse the support forum or check the Knowledge Base.