Forum Replies Created
-
AuthorPosts
-
Cheers Rikard,
Leave it open for a minute. It’s not custom templates, it’s something in my (very long) child functions.php. I’m registering custom post types, taxonomies and all sorts of fun in there.
I might need assitance with some syntax change when I find the culprit, and it might be useful for others if there’s a fix.
I’ll let you know when I find the little bugger.
Thanks,
Paul.Hi Ismael,
Quite possibly, yes.
I’ll take a look and let you know either way.Thanks for the speedy reply, great support as always.
Thanks,
PaulHi Rikard,
I’m using v 5.6.8
If it’s a clue, I think this is only happening when I do anything with custom post types. For example, in wp-admin, if I browse pages or posts I don’t see the error. If I browse one of my custom post types the error logs.
I’ve declared those custom post types using CPT UI plugin and then added page builder to them with this in functions.php….
// Add ALB to custom post types
add_filter(‘avf_builder_boxes’, ‘avia_register_meta_boxes’, 10, 1); //Add meta boxes to custom post types
function avia_register_meta_boxes($boxes)
{
if(!empty($boxes))
{
foreach($boxes as $key => $box)
{
$boxes[$key][‘page’][] = ‘location’;
$boxes[$key][‘page’][] = ‘solicitors’;
}
}
return $boxes;
}(I think I got this from your forum some time ago.)
Might be a red herring, but I thought I’d mention it from my troubleshooting.
Cheers,
Paul.Hi There,
Sorry for the late reply, busy week.
No, I don’t have any accessibility plugins running. I don’t recognise that class at all.
I’ve stripped 2 staging sites down to their underwear for comparison, see below. They’re both identical in terms of plugins and I’ve disabled everything else. The only difference is the version of Enfold. They’re on the same host, same PH settings, extensions, etc.
Working
Enfold – 5.1.2
Event Tickets – 5.5.4
Event Tickets Plus – 5.6.3
The Events Calendar – 6.0.4
The Events Calendar Pro – 6.0.3
Woocommerce 7.1.0No Worky:
Event Tickets – 5.5.4
Event Tickets Plus – 5.6.3
The Events Calendar – 6.0.4
The Events Calendar Pro – 6.0.3
Woocommerce 7.1.0Also running on both sites but unlikely connected:
Maintenance – 4.0.6
ManageWP worker – 4.9.15Any thoughts?
Thanks,
PaulHi Rikard,
Whoops, sorry left all that on when I made the last clone.
Should all be off now.
Thanks,
Paul.April 13, 2019 at 12:28 am in reply to: php warning …"wp-content/themes/enfold/includes/helper-assets.php on line 329" #1090176Hi,
I’m still getting these messages on 4.5.5.
Was this addressed in a recent update? I’m using a child theme, do I need to do anything to make this go away? It’s filling my logs up.
Thanks,
Paul. -
AuthorPosts