We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First thx for the great plugin :)
I've wondered why my social image on the root page didn't append to the page. The bug is in file SocialImages.php on line 57
if ($objTrail->socialImage && ($objImage = \FilesModel::findByUuid($objPage->socialImage)) !== null && is_file(TL_ROOT . '/' . $objImage->path))
instead of $objPage in the findByUuid method this should be $objTrail
if ($objTrail->socialImage && ($objImage = \FilesModel::findByUuid($objTrail->socialImage)) !== null && is_file(TL_ROOT . '/' . $objImage->path))
The text was updated successfully, but these errors were encountered:
Fixed the bug with image not being inherited from page trail (see #6)
ba91f23
Fixed in ba91f23.
Sorry, something went wrong.
No branches or pull requests
First thx for the great plugin :)
I've wondered why my social image on the root page didn't append to the page. The bug is in file SocialImages.php on line 57
instead of $objPage in the findByUuid method this should be $objTrail
The text was updated successfully, but these errors were encountered: