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.

Hello! I just installed your plug in and am having issues when I click “View Project”. View here: http://excelelectricinc.com/project-gallery/ Do you know what may be causing this? The post name is the permalink in settings.

Hi! When I click “View Project” it starts to expand details and then it redirects to http://webchecker1.net/?_stc_=1..

It happens because this URL http://excelelectricinc.com/colio/grand-valley-state-university/?portfolio_id=grand_valley_state redirects, whereas it should just return html for colio item.

I recommend you to go to Settings -> Permalinks and try to re-save them.

Hi ! i am having toubles with your plugin since last WP update. If you could kindly help me with this it would be great since your plugin has been great and I don”t want to have to switch with another one.

Like others I had the “warning message” and I read your comments and changed the 2 lines with “slugs” in it and it worked fine, the portfolio was back online. However I have another issue with the filters. See here : http://www.clairedrapier.com/portfolio/ – If you click on filters no items will show.

Can you please enlighten me on this ? Greatly appreciated, Claire

Hi! Thank you for your answer. Unfortunately it did not do the trick. Another thought ?

I’ve even tried creating new items, new tags, tested all plugins by deactivating them. Nothing works ;(

Ok. Could you send me your WP admin login/password via mail form on my profile page – https://codecanyon.net/user/flgravity

Hi

I need to display two different portfolios in the same page but one at a time.

The way I’m doing this is with a javascript function that hides one the element and display the other or vice versa.

So I have two container elements, each with a colio shortcode inside. They both start with Display: none, and depending on where the client clicks, one of them will animate and appear. The code is working when the container elements contain only a text, used for test. But when I insert the shortcodes it doesnt work anymore. The portfolio just doesnt appear.

Here is the link of the page: http://www.igb.com.br:8443/wordpress/solucoes/

Right now the page has one of the containers with a colio shortcode and the other has the test text

And my script:

<script type=”text/javascript”> (function ($) { $(document).ready(function(){ })(jQuery);

var atual = 0;
});
$(".grafica").click(function(){
})
if (atual  0){
    $(".animacao1").slideDown("fast" , function(){
    $('html, body').animate({scrollTop: $(".animacao1").offset().top}, 1000);});
}
if (atual  2){
    $(".animacao2").fadeOut("fast" , function(){
    $(".animacao1").fadeIn("fast" , function(){
    $('html, body').animate({scrollTop: $(".animacao1").offset().top}, 1000);});});
}
atual = 1;
$(".digital").click(function(){
});
if (atual  0){
    $(".animacao2").slideDown("fast" , function(){
    $('html, body').animate({scrollTop: $(".animacao2").offset().top}, 1000);});
}
if (atual  1){
    $(".animacao1").fadeOut("fast" , function(){
    $(".animacao2").fadeIn("fast" , function(){
    $('html, body').animate({scrollTop: $(".animacao2").offset().top}, 1000);});});
}
atual = 2;

</script>

I tried animating the colio portfolio div itself (using the id) instead of a container that contains the shortcode, but still got the same result.

Thanks

I also tried adding the code $(window).trigger(‘orientationchange’) because you recomended that to someone with a similar problem and it didn’t work.

In worst case scenario I cant get that to work. Is it possible to have a portofolio inside a portfolio item? Then, when the person clicks the item another portfolio will appear.

Thanks

Hello! I have the same problem like Jamie (2day ago). I made the WP_update to version 4.7. Now I have many Warnings like:Warning: Illegal string offset ‘object_ids’ in /......./wp-includes/taxonomy.php on line 1875 / Also in line 1874. I am using colio version 1.5 thanx for your help! regards

Tobee

Hello!

I have fixed this bug in Colio version 2.3.2. If you have version 1.5 you can either upgrade plugin to 2.3.2 or make changes in wp-content/plugins/colio/colio.php

What you need is to replace all strings that look like

wp_get_object_terms($post->ID, 'colio_tag', 'fields=slugs');

with this

wp_get_object_terms($item->ID, 'colio_tag', array('fields'=>'slugs'));

Hi, great plugin congrats.

I need to use your grid with some post. for this I ve in WP_Query() from “colio_item” by ‘post’ in wp-content/plugins/colio.php which works fine. Hoewever, I would need to have the filter with the post Category. How is this possible ?

Thank you for your help and time really appreciate !

Thanks! In wp-content/plugins/colio/colio.php there is function “colio_get_filters” which generates UL list with filters. Try to modify it for your needs.

Hello,

I’m having the same WordPress 4.7 “Warning: Illegal string offset ‘taxonomy..” error. I edited the colio.php file (version 2.2) so I’d prefer not to overwrite it.

Can you tell me what exact changes you made to the colio.php so I can add it to my existing file?

And to confirm, that is the only file I need to change to fix this problem?

Thanks!—Jamie

Hi Jamie! Yes, only two lines has been changed. Line 248 should be

$item_tags = wp_get_object_terms($post->ID, 'colio_tag', array('fields'=>'slugs'));

and line 420

$item_tag_slugs = wp_get_object_terms($item->ID, 'colio_tag', array('fields'=>'slugs'));

I have no idea why since WP 4.7 wordpress devs made third argument only work as array. On codex however for wp_get_object_terms() function they say it can be string also… but it does not work.

Hello!

When you have a description section open for a particular project, if you then click on a different category on top, the description box doesn’t go away automatically. Is there a way for it to close itself if you click on a different category. It rearranges below the description, but it isn’t noticeable because the box above doesn’t close.

Thanks!

Hm. That’s strange. Try directly on links

$('.colio-filters a').click(function(){
  var api = $('.colio-list').data('colio'); 
  api.collapse();
  return false;
});

That worked! Thanks so much for your help.

No problem!

Hi there,

Thanks for the great plugin! I’m trying to adjust my layout slightly. I’d like to have it so that instead of displaying the “View Project” Button, It will display the unique title of each item on rollover. Let me know if this is possible. Thanks!

Yes, its possible. You should use get_the_title() WP function

So open colio.php (wp-content/plugins/colio/colio.php), line 408 replace

$settings['item_button_text'] .

with this

get_the_title($post->ID) .

Don’t forget ”.” at the end above, as this is string concatenation operator in PHP

Hi, this is the second time I update the plugin and it does not work properly….

I have replied you in email. Thanks

I received 2 mails but they do not contain answers….

Hello! Could you explain what exactly does not work? I checked your site at http://www.ferentino.org/ferwp/media/ieri/chiese/ and on first glance everything is ok. Let me know where is the problem.

Can I show tab content in the incoming content window?

Hello! I don’t really understand your question.. Could you explain it ?

Hi Thanks for your plugin. Unfortunately after updating to Wordpress 4.7 Colio is causing an Invalid Taxonomy error and I have had to deactivate it. Will you providing an update?

Hello! I will check this and update shortly.

Thanks for using my Colio plugin!

I resolved the problem and uploading update right now. You will be notified when it will be available for download from Codecanyon.

Then you should do next

1. download new version of my plugin (v2.3.2)
2. unzip package 
3. then unzip Wordpress plugin colio.zip
4. copy just one file - colio.php to wp-content/plugins/colio/ folder of your WP install using your favorite FTP program
5. reload site in browser

Same issue as stated by others above since the WP 4.7 upgrade, specifically with taxonomy.phm on line 1874 and 1875. Please fix soon!

Thanks for using my Colio plugin!

I resolved the problem and uploading update right now. You will be notified when it will be available for download from Codecanyon.

Then you should do next

1. download new version of my plugin (v2.3.2)
2. unzip package 
3. then unzip Wordpress plugin colio.zip
4. copy just one file - colio.php to wp-content/plugins/colio/ folder of your WP install using your favorite FTP program
5. reload site in browser

Hi There, same issue as the last few posts, the new update of Wordpress 4.7 made the colio filters generate the following message appear “Illegal string …wp-includes/taxonomy.php on line 1875 and line 1874 ” I’m not even using the filters. I’ve disabled them and it still causes a problem. Please fix & I’ll buy the update. If this doesn’t get resolved soon, I have other plugins in mind. But I really like Colio!, Thank You

Thanks for using my Colio plugin!

I resolved the problem and uploading update right now. You will be notified when it will be available for download from Codecanyon.

Then you should do next

1. download new version of my plugin (v2.3.2)
2. unzip package 
3. then unzip Wordpress plugin colio.zip
4. copy just one file - colio.php to wp-content/plugins/colio/ folder of your WP install using your favorite FTP program
5. reload site in browser

After upgrade to Wordpress 4.7 the filters aren’t display.

Thanks for using my Colio plugin!

I resolved the problem and uploading update right now. You will be notified when it will be available for download from Codecanyon.

Then you should do next

1. download new version of my plugin (v2.3.2)
2. unzip package 
3. then unzip Wordpress plugin colio.zip
4. copy just one file - colio.php to wp-content/plugins/colio/ folder of your WP install using your favorite FTP program
5. reload site in browser

Hi There, Ive just upgraded to WP 4.7, and im getting an error – could it be something you could assist with

Warning: Illegal string offset ‘taxonomy’ in /home/thelabwe/public_html/wp-includes/taxonomy.php on line 1874

Warning: Illegal string offset ‘object_ids’ in /home/thelabwe/public_html/wp-includes/taxonomy.php on line 1875

Great plugin otherwise.

Thanks for using my Colio plugin!

I resolved the problem and uploading update right now. You will be notified when it will be available for download from Codecanyon.

Then you should do next

1. download new version of my plugin (v2.3.2)
2. unzip package 
3. then unzip Wordpress plugin colio.zip
4. copy just one file - colio.php to wp-content/plugins/colio/ folder of your WP install using your favorite FTP program
5. reload site in browser

Sometime I have problems uploading images in Wordpress when the Colio plugin is activated

Hello! What do you see. i..e how it looks? Can I reproduce this problem if you give me access to your WP admin?

I am trying to show both the groups and the tags on the front end, so we essentially have two layers of filtering. This is similar to your live demo of the plugin. Specifically, there would be buttons at the top for Architecture, Engineering, and so on. Then the tags would filter for different types of projects for each one.

Can you please explain how I can do this? Thanks.

Thanks for question!

Actually you can filters items only by tags. The purpose of Groups (Colio->Groups) is to create sets of items if you want to have multiple portfolios on your website.

Unfortunately what you want is not possible

The Colio plug-in is slow and clunky and the view details does not work properly and doesn’t function at all on mobile devices … The http://reginapiantedosi.com/art-verse-2/. Can you offer a suggestion? My client is unhappy and I can’t charge her for a plugin that doesn’t work.

Hello!

1. The slowness may be caused by this JS error TypeError:

undefined is not a function (evaluating ‘n.easingthis.easing‘)

it keeps repeating and may be the problem

2. above error can be the reason why plugin does not function on mobiles

Hi we would a specific filter to our project protfolio

For exemple we would on portfolio page (http://www.architecte-interieur-boulogne.fr/realisations/) a filter like this:

Line1: Filter 1 – Filter 2 – Filter 3 – Filter 4 – Filter 5 Line2: Filter A – Filter B – Filter C – Filter D – Filter E

For exemple: When we click on Filter 1, we have Filter A and Filter D When we click on Filter 2, we have Filter B and Filter C

When we click on Filter A, we have Filter 1 and Filter 4 When we click on Filter C, we have Filter 2 and Filter 5

Hello! My plugin does not support nested filters. It can only have one level filters

hello, How can I sort the single items in any given order? And how can I change that order after I have created a portfolio? Example: items order is now A, B, C, D and I need to change it to A, D, B, C Havent found any comments on that so far. Thanks for help.

Hi! What do you have in “Order Items” in Colio -> [portfolio] -> Settings?

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