Code

Discussion on Colio - Responsive Portfolio Wordpress Plugin

Discussion on Colio - Responsive Portfolio Wordpress Plugin

Cart 1,136 sales

flGravity supports this item

Supported

This author's response time can be up to 5 business days.

569 comments found.

Hi Thanks you for the great plugin. Is it possible for a user to navigate only to single filter so only the items in that category are displayed?

I will explain what I mean: Say I have three filters… 1 Most Popular 2 Cats 3 Dogs

I want the user to land only on the Most Popular filter and then have the option to filter through Cats and Dogs. Currently when a user navigates to the portfolio it displays all the portfolio items

Thanks Keith

The easiest way to do what you want is to simulate click on one of filter links using this JS code

jQuery('#colio_portfolio_black .colio-filters a').eq(3).trigger('click');

“portfolio_black” is portfolio id in [colio] shortcode. eq(3) selects 4th link (zero-based).

Please add this code somewhere at the end of wp-content/plugins/colio/init.js before closing “});”

Cheers…That worked!

Hola queriamos saber si comprando una licencia regular podemos tener instalado en nuestros localhost y luego subir la web al hosting de una empresa.

Un saludo

Hola! Sorry, I don’t understand. Write me in english please

hi, Colio is working great on our site – dekstop, but on mobile when user tries to scroll down (after clicking on view item) the post closes down. Any chance you could check ? http://modball.codehustler.org/

Hi! Just checked on iPad and haven’t seen this problem.

can you check on a phone (iphone or Android). As soon as you try to scroll down, it closes down the post

Hey, Great plug in.

Couple of questions please.

1. I would like to remove the date from the posts. 2. I would like to remove the [...] shown if i do not have an excerpt. 3. I would like to the make the thumbnails square, not rectangle.

Thanks :)

Pete

HI Do you know how i can add the hover colour back over the image please? page is here http://dev1.misfitcreative.com/about/

Add absolutely positioned DIV with class color-overlay into the <div class="colio-link">…</div>. Then add thse styles

 .colio-thumb .color-overrlay {
 background-color: #0000;
 opacity: 0;
}
 .colio-thumb .color-overrlay:hover {
opacity: 1;
}

Sorry!!! Me again!!

Thanks for all your help. 2Things..

Any way i can add a colour overlay on the ‘active’ image?

The colour overlay (hover) won’t let me add a colour its just white? i added this in the php…

‘ ’ . ‘ ’ . ‘ ’. ‘ ’. get_the_post_thumbnail($post->ID, $thumb_size) . ‘ ’ .

and this in the CSS } .colio-thumb .color-overlay:hover { color: #8cbc44; opacity: 0.6; }

.colio-thumb .color-overlay {
background-color: #000000;
opacity: 1;

It Would be great if you can implant “Infinite scroll”

Thanks for suggestion! I will consider this.

hello, are you considering adding the wp posts to colio. so we can choose those without re working all to colio items? hope soon. thanks

Hello! Please drop me email and I will show you where to change this in code. I think it will do the trick.

Is it possible for a specific item tile within a portfolio to link to another page rather than opening the viewport?

We want just 1 specific item to link to a different URL.

Hello! No it’s not possible.

Hi, I bought your plugin a couple of days ago. I want to create portfolio with items(photos) and when i click in each item details about the photo should show up. I created a couple of items all assigned to a group, created a portfolio for that group and inserted the portfolio shortcode to a page http://alexp.insiteadvice.net/gallery/. When I click in portfolio images nothing happens. Why is this happening, do i need to do something else in order for “View Project” button to work? Thanks

Hi,

there is JS error

[Error] TypeError: undefined is not a function (evaluating 'b.fancybox.init()')
    (anonymous function) (jquery.fancybox-1.3.4.pack.js, line 46)
    j (jquery.js, line 2)
    fireWith (jquery.js, line 2)
    ready (jquery.js, line 2)
    J (jquery.js, line 2)

and it seems there is 4 fancybox js files included by different plugins and this one – http://alexp.insiteadvice.net/wp-content/themes/flawless-v1-17/plugins/fancybox/jquery.fancybox.pack.js is v2 which breaks everything.

Thanks :)

Hi again,

We had success implementing the sharing buttons.

Now, we’d like to display the Groups AND the Tags in the front-end. It could be in 2 different lists. The idea is that it gives us an extra layer for filtering. (FYI, we are making Groups = years / Category = type of events.) Any direction we should go for, code wise?

Thanks again !

Hi! I have no specific recommendations, except that group taxonomy has slug ‘colio_group’ and tags has ‘colio_tag’, and they are defined in wp-content/plugin/colio/includes/post.php file

Hello! We purshased your plugin. Very nice! We’d like to modify the plugin to make the social media links sharable. Is there any direction we should go for, code wise?

Thanks a lot!

Hello!

basically you just need to add share URL for item in Share Links section. That URL however you should compose on your own.

Alternatively you can modify code to generate URLs automatically. Open wp-content/plugins/colio/colio.php and check colio_get_social_links() function. This function by default generates share links using URLs that you specify for an item in Admin.

Thanks. We’ve got it !

Hi I’d really like to get this working, but it’s conflicting with some of the other plugins and the Venedor theme.

The sticky menu on the theme stays on top of the page when I enable the plugin. Sometimes it doesn’t even show the sticky menu.

Also, the visual composer carosel breaks when enabled. I believe it is conflicting with fancybox.

I’ll send you an email with website info.

Hi! I have replied you via email. Please check.

Hello! First off, great plugin! I have it installed on a client’s website at 69.160.74.26/~li966260/ and the client was wondering if it’s possible to limit the number of displayed paintings in the gallery to 15, and then have those 15 displayed at random upon pageload from a pool of 30 images? Is it possible to set this up? Does that make sense? Let me know if I need to clarify. Thanks!

Hello,

Yes its possible.

1. In portfolio settings in Admin you can select “Rand” from drop-down called “Order Items” to make items appear in random order

2. To display only 15 items (posts) you should append ‘posts_per_page’ => 15 to query arguments

$args = array(
        'post_type' => 'colio_item',
        'tax_query' => $tax_query,
        'order' => $settings['order'],
        'orderby' => $settings['orderby'],
        'nopaging' => true
    );

in file wp-content/plugins/colio/colio.php

Hi there

I sent you an email regarding the issue with landscape tablet issue.

Would appreciate a quick response as our site is going live in 2 days

Thanks

Hi! I will reply you as soon as possible

hello, i love the plugin. i have 3 questions: 1. is there any way to reduce the height of the the view panel? 2. how can we remove titles from a certain portfolio not all. 3. can we change the color of the view panel

Hi!

1. Colio viewport height depends on content inside 2. What titles exactly do you mean? 3. To change background color for black theme open wp-content/plugins/colio/themes/black.css and for while – white.css then find this style

.colio-theme-black .colio-container {
    background-color: #333;
}

and change bg color

Thank you!. for the titles i mean the grid items. I have more then 1 portfolio created. i would like to have a portfolio with the titles showing under the thumbnails (like your black demo) and in other portfolios remove the titles completely to only show thumbnails. So is there a way of doing this?

Yes, it’s possible. Please locate function colio_get_item_html() in wp-content/plugins/colio/colio.php and remove this line

'<h4><a class="colio-link" href="#">' . get_the_title() . '</a></h4>' .

with a dot at the end.

Buenas instalo COLIO i me devuelve este error:

Warning: include(includes/config.inc.php): failed to open stream: No such file or directory in /var/www/museupicassobcn.org/datos/web/picasso/index.php on line 19 Warning: include(): Failed opening ‘includes/config.inc.php’ for inclusion (include_path=’.:/usr/share/php:/usr/share/pear’) in /var/www/museupicassobcn.org/datos/web/picasso/index.php on line 19

Hello, this is general PHP error, which doesn’t seem to be related to the plugin. Ask your site admin to check php on your web server. Thanks!

I purchased this theme and wanted to make a few changes. How could I change it so that the whole project is clickable and not just the “view project” button?

sarahdepontdesign.com

thank you :)

I had one more question. At the bottom of the box there are 2 arrows – can I put “Next Project” below it. How may I accomplish this?

Hi!

1. To make while thumb open viewport you should add “colio-link” class to the DIV with “colio-thumb” class. File to edit – wp-content/plugins/colio/colio.php file. Simply look for

class="colio-thumb"
and add class next to it

2. “Next Project” text or real project name?

Hey there, When I select the 4 columns option only 3 show up. The sizing adjusts to be smaller than the 3 column option, but the fourth column isn’t there.

Hi!

in certain cases when browser calculates 25% of page width to get portfolio item width, it rounds to next int value which is too much to align items in 1 row. So 4th item drops to next line.

To fix this you should open wp-content/plugins/colio/grid.css and find .colio-grid4 .colio-list > li { width: 25%; } . Then replace 25% with 24.90% or a bit less.

Hi guys,

Is it possible to have a video opening in the lightbox as one of the items in a portfolio?

No, unfortunately it’s not possible.

Hey flGravity,

Loving your plugin! Searched for a while and Colio was perfect. Im having one little issue though. My viewport is not working correctly. Whenever I expand an item the viewport visually loads correctly, but I cannot close the viewport, expand the images, or use the navigation arrows. Subsequently our filters are inaccessible once an item is expanded since it cannot be closed. Here is the gallery.. http://huskycargo.com/custom-trailer-gallery/

Im sure its a simple fix and Im excited to have it fully functional on our site.

Thanks

Hi and thanks for using my plugin!

To fix the problem with navigation inside of colio viewport you should add “z-index: 100” to .colio {} style in wp-content/plugins/colio/colio.css

Also filters disappear when you expand viewport and this is done by design.

Is it possible to make a link from another page to a specific group of items within the portfolio-page?

Hi! No, it’s not possible.

And a link to a group from Colio -> Groups?

Colio -> Groups are used for internal purposes. Using groups you can have multiple portfolios on your site that display items under different groups.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey