Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Plopfolio - Easy portfolio - Support
#1
Rainbow 
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/
Reply
#2
Hi!

Nice idea. I think is a good new to have a portfolio plugin. Wink

There are any example to vew how it looks?

Thanks Wink
jEsuSdA 8)
Reply
#3
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?
Reply
#4
Hi
This plugin sounds great - but I think I need some instructions!!! Also is there an example of it in action?
Reply
#5
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. Wink

There are any example to vew how it looks?

Thanks Wink
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?
Reply
#6
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.
Reply
#7
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
Reply
#8
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/
Reply
#9
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
Reply
#10
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 Wink

Regards,
Christophe
Reply




Users browsing this thread: 1 Guest(s)