I created a Child theme for the Bootstrap theme which has a dependency on the Bootstrapper plugin.
dependencies:
- bootstrapper
In the child theme .php I also added the call found int bootstrap/bootstrap.php
public $load_bootstrapper_plugin = true;
But that did not resolve the issue. I’m not that familiar with PHP Streaming so I’m not sure how to debug it any further.
The files missing on the render html page is
— HTML
``` and --- HTML ```So I assume the $load_bootstrapper_plugin = true; isn’t being seen or honored somewhere along the way. And adding that line to the child theme .php file doesn’t fix it.
Any ideas on what else to try or look for?