We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c80c7 commit c6d672eCopy full SHA for c6d672e
lib/internal/Magento/Framework/View/Page/Config/Renderer.php
@@ -134,11 +134,21 @@ public function renderHeadContent()
134
$result .= $this->renderMetadata();
135
$result .= $this->renderTitle();
136
$this->prepareFavicon();
137
+ return $result;
138
+ }
139
+
140
+ /**
141
+ * Render head assets
142
+ *
143
+ * @return string
144
+ */
145
+ public function renderHeadAssets()
146
+ {
147
+ $result = '';
148
$result .= $this->renderAssets($this->getAvailableResultGroups());
149
$result .= $this->pageConfig->getIncludes();
150
return $result;
151
}
-
152
/**
153
* Render title
154
*
0 commit comments