Need any help with the plugin? We can help you in several ways:
- Give you technical advice
- Customize the plugin for your needs
- Set up the plugin on your website
Please contact us using the form below or directly on our email address.
Questions & Suggestions
If you have any question about the a-folio plugin or have a suggestion for a future version, don’t hesitate to share it with us below.
Hi, we are using the a-folio plugin on Illustratr and it looks great. However, there’s text that displays on the web page now to say “Categories: Distillery and Visitor Centres Projects”, which is one of the categories we have – this never used to be displayed (I don’t think!) but I can’t see any settings to remove the text. The page colorado-group.com/portfolio/distillery/ shows what I mean. Thanks again 🙂
Hello Paul,
First of all, thank you for using our plugin.
I think the issue happens because you are using the a-folio shortcode inside a single portfolio page.
The single portfolio page currently has the categories list added inside the plugin files. There are more methods how to get rid of it on that specific page:
1. Have this specific page as a normal WordPress page instead of having it as a Portfolio item. Of course this solution can only work if you don’t want to include the colorado-group.com/portfolio/distillery/ tile in your Portfolio stream
2. You can hide the category line with a line of custom CSS:
p.a_folio_single_categories { display: none; }
However, it will hide it on all pages. If you want it to be hidden on only this page, you can try addressing it like (however, it’s not the best solution, since the post ID might change if you change your page structures):
.postid-1188 p.a_folio_single_categories { display: none; }
3. Using PHP programming. If point 1. above doesn’t work, then this is the cleanest solution.
E.g.
remove_filter( ‘the_content’, ‘a_folio_filter_the_content’ );
in your theme’s functions.php can also do the job.
—
If none of the above helped then there are still 2 ways to go:
A) Ask an expert’s help on a freelancer site (e.g. on Codeable) to do it for you
B) Wait until the next version to fix it (based on your comment above I added some todos to my list that will make fixing things like this easier) – however, it will only be released later this year (approximately in Nov – Dec)
If you have any further questions, please don’t hesitate to ask them here! I am happy to help.
Best regards,
Ervin
Great looking plugin. I just tried to install a-folio through WordPress Plugins, on one of my client’s sites, but was unable to activate it. Got this error: “Plugin could not be activated because it triggered a fatal error. Parse error: syntax error, unexpected T_FUNCTION in /home/content/29/9679929/html/wp-content/plugins/a-folio/a-folio.php on line 35”. The site was still running on WP version 4.6.#. Also upgraded it to the latest — 4.7.2 and still getting this error.
Hi Margot,
Can you let me know please which version of PHP is installed on your server?
This error usually occurs when you try to run an anonymous function on PHP version lower than 5.3 (this plugin needs at least PHP 5.3). So if this is the case, upgrading PHP to a newer version is the solution (which is not a bad idea because PHP versions older than 5.6 are no longer supported by PHP’s developers, thus can be vulnerable to attacks).
If you need help with checking the server’s PHP version, please let me know.