We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 2762
    • 1,198 Posts
    mm_widget_tags(’documentTags’,’,’);

    with this call:
    mm_widget_tags(’documentTags’,’,’);

    mm_widget_tags add a space before every tag:

    tag1, tag2, tag3, tag4

    it’s ok for Ditto, But TvTagCloud output the space in the url:

    www.site.com/tags.html&tags=%20tag1
    instead
    www.site.com/tags.html&tags=tag1

    How to remove space before tags?




      Free MODx Graphic resources and Templates www.tattoocms.it
      -----------------------------------------------------

      MODx IT  www.modx.it
      -----------------------------------------------------

      bubuna.com - Web & Multimedia Design
      • 8883
      • 59 Posts
      Hi,
      Check the file tags.js in folder assets\plugins\managermanager\widgets\tags\

      around line 44: I guess it has something to do with:
      var tagSpacer = (delimiter == ' ') ? '': ' ';


      try
      var tagSpacer = (delimiter == ',') ? '': ' ';

        • 2371
        • 29 Posts
        Hi.

        In chunk "mm_demo_rules":

        mm_widget_tags('documentTags',', ');