Nimble3
Forum Replies Created
-
If possible please email your wp-admin access to wp@nimble3.com, we will investigate it on your site as its working fine for us.
Please check the jQuery solution here, its only for one filter, you can use URL parameter to set the filter slug in JS
http://wordpress.org/support/topic/setting-a-default-filter?replies=3#post-3736038
Please specify an image or video url in Image/Video URL field (editing/adding portfolio item) The plugin uses this URL to show in the prettyPhoto lightbox gallery.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Not working in IE 7 and 8We haven’t tested it on IE7 considering its quiet old browser now. But its fully compatible with IE8. Can you please specify the problem OR is it not displaying at all in IE8?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Read More showing blank pagesingle-portfolio.phpis template file specifically for portfolio item’s single post page.You need to create this file in your theme folder.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Read More showing blank pagePlease refresh your permalinks
Go to
Settings -> Permalinksand just press Save Changes button.If above method doesn’t solve your problem, then please copy single.php (your theme file) to single-portfolio.php
This would solve your issue, if not then send your wp-admin access to wp@nimble3.com
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Layout All Over The Place?Please open the page in editor, the page which has the shortcode for our portfolio.
Switch the editing mode to HTML, in the editor you will see those tags. Just remove them, before and after the shortcode.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] How to remove metaDataPlease make a copy of
single.php(of your theme) tosingle-portfolio.php,single-portfolio.phpwill become specific template to the single page Portfolio item and you can remove the meta info from it.Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] No "Nimble" tab on DashboardIssue fixed on irenehofer site, its was actually the
menu_positionconfiguration forportfoliopost type.Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Jetpack compatibility issueIn nimble-portfolio.php line#150, in function nimble_portfolio_show() replace
require_once (NIMBLE_PORTFOLIO_TEMPLATES_DIR . "/$template_code/template.php");with
require (NIMBLE_PORTFOLIO_TEMPLATES_DIR . "/$template_code/template.php");Will add this fix in next update.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Gallery SupportHi Rob Yardman,
We haven’t listened from you yet, did you solve the problem at your own?
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Trying to create portfolioPlease add us in Skype, our id is nimble3.com
OR
use live chat widget available on our website at the bottom-right corner.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] How to remove metaDataIn wp-admin or on frontend?
Please share your live URL if its for frontend.
In our premium version this is handle by a configuration, so you just need to check a checkbox and put your desired post type name there.
Please email us at wp@nimble3.com for a demo on the checkbox
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Setting a Default Filter?Yes its possible, below are the steps. (these steps are only for FREE version)
1- Find the filter slug by browsing Item Type section under Nimble Portfolio (wp-admin)
2- in scripts.js (of our plugin) add following JS in jQuery block,
jQuery('div.nimble-portfolio-filter ul .current').removeClass('current'); jQuery('div.nimble-portfolio-filter a[rel="put-item-type-slug-here"]').parent().addClass('current'); jQuery('div.nimble-portfolio ul li').each(function() { if(!jQuery(this).hasClass("put-item-type-slug-here")) { jQuery(this).fadeOut('normal').addClass('hidden'); } else { jQuery(this).fadeIn('normal').removeClass('hidden'); } });3- Replace the
put-item-type-slug-herefrom above JS with your filter slug.