Posts: 2
Threads: 1
Joined: Feb 2013
2013-03-07, 00:31:29
(This post was last modified: 2013-04-10, 03:47:01 by Petit_Nuage.)
Hi Everyone,
This is the official thread on the GS forum where I support the plugin "Plopfolio - Easy portfolio".
Don't hesitate to ask for anything: bug fixes, features request, installation tips...
Have fun with "Plopfolio - Easy portfolio".
For suggestions please visit:
https://plopcom.uservoice.com/
Posts: 33
Threads: 2
Joined: Nov 2012
2013-03-07, 02:13:32
(This post was last modified: 2013-03-07, 02:13:53 by jesusda.)
Hi!
Nice idea. I think is a good new to have a portfolio plugin.
There are any example to vew how it looks?
Thanks
jEsuSdA 8)
Posts: 1,128
Threads: 137
Joined: Feb 2012
Hi Gaëtan,
I downloaded the plugin but have not yet been able to get a result. Is it like a gallery? I was able to enter the urls of some images in the PAGES tab but I don't understand the Usage or the Entries in the PLUGINS tab. What do I put in my template or my page to make it work?
Posts: 64
Threads: 21
Joined: Jan 2012
2013-03-16, 22:13:35
(This post was last modified: 2013-03-16, 22:15:07 by chaos.)
Hi
This plugin sounds great - but I think I need some instructions!!! Also is there an example of it in action?
Posts: 2
Threads: 1
Joined: Feb 2013
2013-03-21, 05:06:13
(This post was last modified: 2013-03-21, 05:25:33 by Petit_Nuage.)
Hi!
Sorry for the late reply, I didn't get any notification!
Here are two exemples:
http://plopcom.fr/plopfolio.html
http://amandinelle.fr/projets.php
cheers
(2013-03-07, 02:13:32)jesusda Wrote: Hi!
Nice idea. I think is a good new to have a portfolio plugin.
There are any example to vew how it looks?
Thanks
jEsuSdA 8)
Hi Timbow, sorry for the late reply.
In your template you have to add
PHP Code:
$entriesSorted = returnPortfolioEntries();
foreach ($entriesSorted as $entry) {
//loop on the entries
} //end foreach
each entry is an array. Data available are:
PHP Code:
$entry['name'];
$entry['visuel'];
$entry['thumb'];
$entry['month'];
$entry['year'];
$entry['client'];
$entry['desc'];
$entry['url'];
$entry['keywords'];
I will make something easier next version. A shortcode will do fine.
thanks for your post.
(2013-03-07, 03:43:47)Timbow Wrote: Hi Gaëtan,
I downloaded the plugin but have not yet been able to get a result. Is it like a gallery? I was able to enter the urls of some images in the PAGES tab but I don't understand the Usage or the Entries in the PLUGINS tab. What do I put in my template or my page to make it work?
Posts: 1,128
Threads: 137
Joined: Feb 2012
http://plopcom.fr/
That is a really cool site you have made.
The portfolio plugin looks good too. I will look at it when I have some time.
Posts: 89
Threads: 12
Joined: Sep 2010
Hi,
this plugin look's great on this site plopcom.fr !
Can you write an instruction 'how to..' for people who are front-end developers and with a little knowledge of back-end?
Cheers
Alex
Posts: 7
Threads: 5
Joined: Mar 2013
Hi,
I have installed the plugin and entered some Entries. But i don't know how to access them from frontend. Which path I have to use to access them
I used /portfolio
plopfolio
etc.
But not worked
Kindly help
(2013-03-07, 00:31:29)Petit_Nuage Wrote: Hi Everyone,
This is the official thread on the GS forum where I support the plugin "Plopfolio - Easy portfolio".
Don't hesitate to ask for anything: bug fixes, features request, installation tips...
Have fun with "Plopfolio - Easy portfolio".
For suggestions please visit: https://plopcom.uservoice.com/
Posts: 4
Threads: 1
Joined: Jun 2013
2014-08-13, 01:47:49
(This post was last modified: 2014-08-13, 01:48:24 by dutchp.)
Hello there ..
Has anyone yet been able to get this plugin to work? It looks amazing and I would really love to use it, but I cannot get it to work. What do you do with the entry? Which code do I put in my page? etc etc..
If anyone knows an other plugin or cms that does the same I would be glad to hear it...
Thx everybody in advance
Posts: 116
Threads: 12
Joined: Nov 2014
Hello,
I try this plugin and works on GS 3.3.
I try to explain how to add this in your template.
After setup the plugin, make een new template in your theme (ex.: portfolio.php)
Paste this code snippet in your new template:
Code:
<?php
$entriesSorted = returnPortfolioEntries();
foreach ($entriesSorted as $entry) {
echo '<h3>'.$entry['name'].'</h3>';
echo '<img src="'.$entry['thumb'].'"/>';
}
?>
(In this example I work with 2 variables: $entry['name'] and $entry['thumb'] )
After that, add a new page and use the portfolio.php template.
Test it
Regards,
Christophe