2BC Image Gallery
Add tags to images and group them into galleries, easily set options to display the lightbox galleries, or use the shortcode
Next Milestone 20
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.0.1
- Last Updated
- May 29, 2015
- Requires WP
- 3.6+
- Tested Up To
- 4.2
- PHP Version
- N/A
- Author
- 2BCoding
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about 2BC Image Gallery
How do I customize the image that displays for the gallery thumbnail?
Setting a custom thumbnail
Click Media > Galleries
Click the title of the gallery that should be modified
Scroll down to Gallery Featured Image and click Choose or Upload an image
Click an image from the media library or upload a file, and click Use this image
Click the Update button
Change default thumbnails
Click Settings > 2BC Image Gallery
Click the Gallery Thumb Source and choose to get the Last image added to the gallery (default), First image added, or Random
How can I change the styling of the gallery?
There is currently one default style. The recommend method to apply custom styling is to access the 2BC Image Gallery settings page, and enable Hide Default Styling. It should then be possible to write custom rules in the themes CSS files.
How can I change the month, year, or custom section titles?
We have included filters to allow for customizing just about everything. In this case, there are two filters: one for the year gallery title, and one for the month gallery title. To change the year section title, include the following in your themes functions.php file:
add_filter('twobc_image_gallery_year_title', 'my_custom_year_title_function');
function my_custom_year_title_function($year_title) {
$year_title = 'A New Custom Title For The Years Gallery Section';
return $year_title;
}
For the month section title, include the following in your themes functions.php file:
add_filter('twobc_image_gallery_month_title', 'my_custom_month_title_function');
function my_custom_month_title_function($month_title) {
$month_title = 'A New Custom Title For The Months Gallery Section';
return $month_title;
}
For the custom section title, include the following in your themes functions.php file:
add_filter('twobc_image_gallery_custom_title', 'my_custom_gallery_title_function');
function my_custom_gallery_title_function($custom_title) {
$custom_title = 'A New Title For The Custom Gallery Section';
return $custom_title;
}
function my_custom_back_gallery_function($button_text) {
// default text = « Back to galleries
$button_text = 'New Back To Gallery Button Text';
return $button_text;
}
add_filter('twobc_image_gallery_previous_page_button', 'my_custom_previous_button_function');
function my_custom_previous_button_function($button_text) {
// default text = «
$button_text = 'New Previous Page Button Text';
return $button_text;
}
Next page button:
add_filter('twobc_image_gallery_next_page_button', 'my_custom_next_button_function');
function my_custom_next_button_function($button_text) {
// default text = »
$button_text = 'New Next Page Button Text';
return $button_text;
}