Title says it all, although this is not a release blocker.

Comments

Dave Reid’s picture

This feature is also blocked by #786484: Use a 'link update' queue for delayed link changes since every time a node is updated, we will have to also update every single taxonomy term that is assigned to it (and also possibly each of those term's child terms).

Coupon Code Swap’s picture

This would be very useful. In the meantime, can you point me to the file(s) where I could hack in hard-coded values for lastmod and changefreq? Another solution (although not ideal) would be a UI for manually assigning changefreq to terms.

Coupon Code Swap’s picture

Hard-coding changefreq for terms:

sites/all/modules/xmlsitemap/xsl/xmlsitemap.xsl

-      <td><xsl:value-of select="sitemap:changefreq"/></td>

+      <td>
+        <xsl:choose>
+          <!-- If changefreq is not defined, show the default value of daily -->
+          <xsl:when test="sitemap:changefreq">
+            <xsl:value-of select="sitemap:changefreq"/>
+          </xsl:when>
+          <xsl:otherwise>daily</xsl:otherwise>
+        </xsl:choose>
+      </td>