Back to ProBlog Support

paulgrafx
paulgrafx

Hi,

I have added my own nested item to the users account and every time I add a new one the 'Author Bio' also appears.

The solution is to add the following on the Plugin.php - 'if ($form->isNested) { return; }'

        if  ($form->isNested) { return; }

        $form->addTabFields([
            'author[bio]' => [
                'label' => 'Author Bio',
                'tab' => 'ProBlog',
                'type' => 'textarea'
            ]
        ]);

Last updated

ChadStrat
ChadStrat

awesome feedback man! thanks!!! and added.

1-2 of 2