-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with PW3.0.4X #33
Comments
It worked fine with 3.0.44, but then with 3.0.45 it causes an error. Tracy Debugger reports the following: |
I wonder if it is related to the new changes in Hooks processwire/processwire@953ca72 ? If I debug that line 127 bd($this->page); show's the page object but doesn't show any seo information attached to it. |
Hey @gmclelland |
Not sure, I'm new to Processwire and hooks as well. |
I think there's a PW core change that is causing this. Changing this line seem to work (only trial and error): //$this->addHookProperty("Page::seo", $this, 'hookFrontendPage');
$this->wire('page')->addHookProperty("seo", $this, 'hookFrontendPage'); |
Fixed 15 minutes ago :) |
Good news! Thanks for the heads up @rolandtoth. |
Seems to be fixed in ProcessWire: edit: |
Hi Nico
As per the forums, a few users reporting issues with upgrades to PW3.0.4X
In my case the META tags don't render at all.
I'm using
<?php echo $page->seo->render;?>
Any idea when you could look at this?
The text was updated successfully, but these errors were encountered: