Snippet Meta
My Upcoming Events block on my homepage used to display meta snippets (eg. Members joined, date and time) but these have disappeared since upgrading to 15.
Does anyone know how to recover those?
-
-
·
LeonidS
- ·
Hello @phetisch !
If you enabled those items via the Studio->Navigation->Events->Snippet Meta Info then it's strange that all of them have disappeared. But you may try to turn them on again there. If you changed them via the template's files editing then you need to restore touched files.
-
·
LeonidS
-
- · phetisch
- ·
I have been able to restore the snippet_meta menu to the cards by editing modules/base/profile/classes/BxBaseModProfileTemplate.php at line 873:
protected function _isTemplateWithMeta($sTemplateName = 'unit.html') { $sResult = ''; switch($sTemplateName) { case 'unit.html': // added this line case 'unit_ext.html': case 'unit_with_cover.html': $sResult = true; break; default: $sResult = false; break; } return $sResult; } -
-
·
Anton L
- ·
Thanks for the report: https://github.com/unacms/UNA/issues/5264
-
·
Anton L