I have a site where I use the GitHub - genxbe/kirby3-instagram: Fetch instagram photos without the need for app aproval plugin.
All is generally working well, and I have used this plugin on a different site before without issues.
The difference on this project is that I’ve added a “custom folder setup”
So now, my actual asset folder is at public/assets, whereas the instagram assets get downloaded to /assets on the root.
I’ve tried to specify in the config a subfolder, but then I get a php error when fetching “No such file or directory”:
'genxbe.instagram' => [
'client_id' => 'x',
'client_secret' => 'x',
'assetFolder' => 'public/assets/instagram', // or assets/instagram, or just instagram
+++
],
I’ve also tried specifying the asset folder specifically in the index.php roots with no luck:
'assets' => $base . '/public/assets'
It’s fetching fine, I’d just like it to fetch it to the correct asset folder. What am I doing wrong?