We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
  • I am trying to make heads or tails of the taggingAtoZ extra in MODX revo.

    Here's the issue:

    I am running my portfolio website on MODX and have a sweet blog section up and running using articles. You can find it here http://jesseshowalter.com/articles/

    There is a text link top left that says "search articles" that reveals a "simpleSearch" bar and also a tag cloud organized alphabetically using taggingAtoZ. The search works like a charm but whenever you try to click on one of the tags it goes to a blank page.

    I tried tagLister and that worked great but I really like this alphabetical thing i got going. Can someone tell me what I am doing wrong here.

    Code is as follows:
    <div class="panel group">
         [[!SimpleSearchForm? &landing=`22`]]
         [[TaggingAtoZ? &tvs=`tags` &target=`[[*id]]` &showHidden=`1`]]
    </div>
    


    Template Variable "tags" has an input type of Auto-Tag

    What do I need to do to get this to work???

    Mahalo,
    J
      Mahalo,
      Jesse Showalter

      My Portfolio: http://www.jesseshowalter.com
      MODX Video Tutorials: http://jesseshowalter.com/search-results.html?search=MODX&id=22
    • Auto-tag can have multiple tags, can TaggingAtoZ support multiple tags in the same TV?

      Have you tried the TaggingAtoZ snippet with the debug property set to `1`?

      What does the MODx error log say? What does the server's PHP error log say? A blank result usually means an error in the PHP.
        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org
      • Quote from: sottwell at Nov 20, 2013, 06:11 AM
        Auto-tag can have multiple tags, can TaggingAtoZ support multiple tags in the same TV?

        Have you tried the TaggingAtoZ snippet with the debug property set to `1`?

        What does the MODx error log say? What does the server's PHP error log say? A blank result usually means an error in the PHP.

        Error Log outputs

        array(24) { ["tvs"]=> string(4) "tags" ["target"]=> string(1) "2" ["tagKey"]=> string(3) "tag" ["tagSeparator"]=> string(1) " " ["groupSeparator"]=> string(1) " " ["limit"]=> int(5) ["toLower"]=> bool(true) ["encoding"]=> string(5) "UTF-8" ["use_multibyte"]=> string(0) "" ["groupNumeric"]=> bool(true) ["numericHeader"]=> string(3) "0-9" ["toPlaceholder"]=> string(0) "" ["groups"]=> array(0) { } ["tplTag"]=> string(7) "atozTag" ["tplGroup"]=> string(9) "atozGroup" ["tplOuter"]=> string(9) "atozOuter" ["cls"]=> string(0) "" ["altCls"]=> string(3) "alt" ["firstCls"]=> string(5) "first" ["lastCls"]=> string(4) "last" ["weights"]=> string(0) "" ["weightCls"]=> string(0) "" ["debug"]=> string(0) "" ["showHidden"]=> string(1) "1" } SELECT `modTemplateVarResource`.`id` AS `modTemplateVarResource_id`, `modTemplateVarResource`.`tmplvarid` AS `modTemplateVarResource_tmplvarid`, `modTemplateVarResource`.`contentid` AS `modTemplateVarResource_contentid`, `modTemplateVarResource`.`value` AS `modTemplateVarResource_value` FROM `modx_site_tmplvar_contentvalues` AS `modTemplateVarResource` JOIN `modx_site_tmplvars` `TemplateVar` ON `modTemplateVarResource`.`tmplvarid` = `TemplateVar`.`id` JOIN `modx_site_content` `Resource` ON `modTemplateVarResource`.`contentid` = `Resource`.`id` LEFT JOIN `modx_users` `CreatedBy` ON CreatedBy.id = Resource.createdby LEFT JOIN `modx_users` `PublishedBy` ON PublishedBy.id = Resource.publishedby LEFT JOIN `modx_users` `EditedBy` ON EditedBy.id = Resource.editedby WHERE ( `Resource`.`deleted` = '0' AND `Resource`.`published` = '1' AND `TemplateVar`.`name` = 'tags' ) array(7) { ["c"]=> array(3) { ["cms"]=> int(1) ["css"]=> int(1) ["conference"]=> int(1) } ["d"]=> array(2) { ["design"]=> int(1) ["development"]=> int(1) } ["g"]=> array(1) { ["github"]=> int(1) } ["h"]=> array(2) { ["how to"]=> int(2) ["html"]=> int(1) } ["i"]=> array(1) { ["incontrol"]=> int(1) } ["m"]=> array(2) { ["mamp"]=> int(1) ["modx"]=> int(1) } ["w"]=> array(2) { ["web development"]=> int(2) ["wordpress"]=> int(1) } }
        
          Mahalo,
          Jesse Showalter

          My Portfolio: http://www.jesseshowalter.com
          MODX Video Tutorials: http://jesseshowalter.com/search-results.html?search=MODX&id=22
        • anybody have any idea how to fix this issue? You can find it here http://jesseshowalter.com/articles/
            Mahalo,
            Jesse Showalter

            My Portfolio: http://www.jesseshowalter.com
            MODX Video Tutorials: http://jesseshowalter.com/search-results.html?search=MODX&id=22