Closed (fixed)
Project:
Fieldable Panels Panes (FPP)
Version:
7.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Nov 2015 at 11:39 UTC
Updated:
15 Mar 2016 at 15:04 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
sagar ramgade commentedComment #6
milodescI'm seeing the same issue on a site that I work on. So, I wanted to try this fix out. I installed FPP on a clean drupal install and did not see the issue. The "Manage Fields" and "Manage Display" links worked just fine.
After taking a closer look at the site that was experiencing the issue, I noticed that we're creating bundles via hook_entity_info_alter() as detailed in FPP's README.txt. README.txt instructs you to create your bundles with the following:
Note the paths in the code above begin with 'admin/structure/fieldable-panels-panes/manage/'. Perhaps the better option is to shorten that to 'admin/structure/fieldable-panels-panes/' when creating bundles? That seems to have fixed the issue on my site without patching the module.
Maybe an alternate solution is to fix the README.txt to not include 'manage' in the path? This won't fix bundles that have already been created with manage in the path, but maybe it'll prevent future issues.
Patch to the README.txt attached. This change would make the README.txt instructions consistent with how bundles are created in fieldable_panels_panes.module's fieldable_panels_panes_entity_info function.
Comment #7
j2r commentedThanks milodesc.
It helps. Just one more small correction is require in README.txt
Comment #8
milodescCool. I've updated the bundle argument in the latest patch.
Comment #9
j2r commentedComment #10
robloachYup.
Comment #12
damienmckennaCommitted. Thanks!