Nimble3
Forum Replies Created
-
Wrap your video URL in [embed] shortcode.
e.g:
[embed]https://www.youtube.com/watch?v=0Wns49SCQp8[/embed]You can modify items.php (by following howto), move the title and add the excerpt block.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Change URL?Please add below code in functions.php of your theme, its the standard way to change the slug of our plugin.
add_filter('nimble_portfolio_posttype_slug', 'handle_nimble_portfolio_posttype_slug'); function handle_nimble_portfolio_posttype_slug($slug) { return "books"; }The theme developer is using version 1.3.2 of our plugin, and he has a customized skin (template) for his theme.
You can use version 2+, which can be easily customized as compared to version 1+ and has more features.
You need to customize the skin to make it look as per you need, use this small howto to know the basic of skin customization for our plugin (version 2 only)
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Remove PaginationPlease dont use items_per_page parameter in shortcode, setting any value to items_per_page parameter enables the pagination in Premium skin.
Add this code to functions.php of your theme:
add_filter('nimble_portfolio_lightbox_link_atts', 'handle_nimble_portfolio_lightbox_link_atts', 10, 2); function handle_nimble_portfolio_lightbox_link_atts($link_atts, $item) { $link_atts['href'] = get_permalink($item->ID); return $link_atts; }If you want to order the items by date created, then use order and orderby shortcode parameters.
check this screenshot
You need to add this code in functions.php of your theme.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Image titles not shpwingPlease always mention your portfolio page(or website) URL
Thanks Rachel for help on our plugin. But there is a separate issue of losing the changes on our plugin upgrade.
To keep changes, Rachel mentioned, an upgrade safe way of customizing the skin is required. Please follow this small howto http://demo.nimble3.com/nimble-portfolio/customize-a-nimble-portfolio-skin-from-theme/ to keep your changes safe on our plugin upgrade.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Linking images to pagePlease follow this small howto http://demo.nimble3.com/nimble-portfolio/howto-skip-lightbox-and-go-to-permalink-on-thumbnail-click/
You need to buy Default+ (Premium) skin http://www.nimble3.com/shop/premium-defaultplus-skin-for-nimble-portfolio/
The skin customization is upgrade safe if you copy the skin files to your theme, please follow this small tutorial http://demo.nimble3.com/nimble-portfolio/customize-a-nimble-portfolio-skin-from-theme/
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Image/Video URL not workingYour portfolio page URL please?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Sort filters by nameYou can set Sort Order filed for sorting purpose (ASC to DESC on name) when you add/edit a filter (Dashboard -> Nimble Portfolio -> Filters)