Nimble3
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Translate sorting button AllA better way is to add below code in the functions.php of your theme.
add_filter('nimble_portfolio_filter_all', 'remove_nimble_portfolio_all_filter'); function remove_nimble_portfolio_all_filter($filter_tag) { return "TRANSLATED_ALL"; }replace TRANSLATED_ALL with your text.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Thumb Link to a New Page?Please check this howto: http://demo.nimble3.com/nimble-portfolio/skip-lightbox
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Duplicate Images issueMost probably wpautop() function is creating this mess. Auto insertion of
<p>tags create invalid HTML and lightbox libraries assume 2 tags of images instead of 1.Your site (page) is calling duplicate instances of jQuery library, and a lot of JS errors are thrown due to this.
Please make sure you are embedding a single and correct jQuery version.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] W3C Validator shows errorFor a temporary workaround, please replace this line (#54)
add_action('wp_head', array(__CLASS__, 'enqueueStyle'));in nimble-portfolio.php with
add_action('wp_head', array(__CLASS__, 'enqueueStyle'),1);We will add this next plugin update.
Please check if
get_the_ID()returns anything.Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Remove Social IconsPlease add this CSS to your custom CSS or Theme’s stylesheet file.
.pp_social { display: none; }Please check following link you can configure the prettyphoto gallery/lightbox option via simple mouse clicks.
http://demo.nimble3.com/nimble-portfolio/nimble-prettyphoto-addon-documentation/#pe-faqs-item-2-4
You can use Addthis widget for better social sharing, or even turn off by simply empty the Addthis widget script config box.
Please check below link to view social icons appearing in the lightbox gallery. The icon used in the demo is 16×16 you can also use 24×24 and 32×32 isoncs as well.
http://demo.nimble3.com/nimble-portfolio/prettyphoto/Which browser you are using, its working fine on Chrome
Please always use our support ticket system or contact us form for Premium addon queries.
Although we have replied to you on your email.
in single-portfolio.php use below code to get all the filters attached to this portfolio item.
$filters = wp_get_post_terms(get_the_ID(),'nimble-portfolio-type',array("fields" => "names"));Well this should work perfectly, please email wp@nimble3.com so we can guide you further there.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Change LightboxYou need a premium skin for specifying per item URL config, please check our demo site http://demo.nimble3.com/nimble-portfolio and in the top nav menu under Demos find Premium skins demos.
Forum: Plugins
In reply to: [Wordpress Picture / Portfolio / Media Gallery] Filters with sub filtersYou need a premium skin for showing specific filters please check our demo site http://demo.nimble3.com/nimble-portfolio and in the top nav menu under Demos find Premium skins demos.
You need to customize the items.php file, please follow below small howto to (upgrade safely) customize the skin files via theme.
http://demo.nimble3.com/nimble-portfolio/customize-a-nimble-portfolio-skin-from-theme/