We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 21056
    • 327 Posts
    No - this is still work in progress.

    1.0.1 will be making substantial changes, and MM will need substantial changes too.

    MM 0.3.4 will work with Evo 1.0.0
      Author: ManagerManager plugin - customise your ModX manager interface

      Rckt - web development, Sheffield, UK
      • 36416
      • 589 Posts
      Quote from: ncrossland at Sep 15, 2009, 10:07 AM

      No - this is still work in progress.
      1.0.1 will be making substantial changes, and MM will need substantial changes too.
      MM 0.3.4 will work with Evo 1.0.0

      Ok, thanks.
      Guess those features marked (1.0.1) in changelog confused me...
        • 21056
        • 327 Posts
        Started the process, but since the version in SVN is currently in a state of flux, can’t release anything definitive yet!
          Author: ManagerManager plugin - customise your ModX manager interface

          Rckt - web development, Sheffield, UK
          • 24495
          • 407 Posts
          mm_widget_showimagetvs doesn’t work furthermore using 1.0.0-rc1, current MM 0.3.4 from repository and jQuery 1.3.2.min locally or remote. No preview images whether using mm_rules chunk or mm_rules.inc.php huh
            • 25663 MODX Staff
            • 12,272 Posts
            1.0.0-rcs aren’t the final releases. You’ll need to update to the official 1.0 release.
              Ryan Thrash, MODX Co-Founder
              Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
              • 24495
              • 407 Posts
              Thanks, now it works fine. Have overlooked the final Evo release.
                • 20413
                • 2,877 Posts
                Using tvs as photo gallery for high res pics and want to load thumbnail in the preview

                MODX 1.0.12 : Couldn't use the included phpThumb (error invalid hash...) and the old "Image TV Preview"-Plugin is broken.

                So I hacked showimagetvs.php
                			$j("#tv'.$tv['id'].'").addClass("imageField").bind( "change load", function() {
                				// Get the new URL
                				var url = $j(this).val();
                				url = (url != "" && url.search(/http:\/\//i) == -1) ? ("'.$site.'" + url) : url;
                				//mrhaw
                                var url = url.replace("assets/images", "assets/.thumbs/images");				
                				';
                
                  @hawproductions | http://mrhaw.com/

                  Infograph: MODX Advanced Install in 7 steps:
                  http://forums.modx.com/thread/96954/infograph-modx-advanced-install-in-7-steps

                  Recap: Portland, OR (PDX) MODX CMS Meetup, Oct 6, 2015. US Bancorp Tower
                  http://mrhaw.com/modx_portland_oregon_pdx_modx_cms_meetup_oct_2015_us_bancorp_tower
                  • 36416
                  • 589 Posts
                  Quote from: mrhaw at Oct 16, 2013, 12:29 AM
                  Using tvs as photo gallery for high res pics and want to load thumbnail in the preview

                  Use ManagerManager widget: mm_widget_showimagetvs()
                  older plugins and methods are incompatible...
                    • 20413
                    • 2,877 Posts
                    @Eoler that is WHAT I AM USING!! smiley

                    The problem is that it grabs the FULL picture instead of the thumbnails KCFinder generates.
                    ManagerManager have an option to use phpThumb but it didn't work for me. So this one line
                    made my day:
                    var url = url.replace("assets/images", "assets/.thumbs/images"); 


                    And I am sharing it for anyone else that feel my frustration.
                      @hawproductions | http://mrhaw.com/

                      Infograph: MODX Advanced Install in 7 steps:
                      http://forums.modx.com/thread/96954/infograph-modx-advanced-install-in-7-steps

                      Recap: Portland, OR (PDX) MODX CMS Meetup, Oct 6, 2015. US Bancorp Tower
                      http://mrhaw.com/modx_portland_oregon_pdx_modx_cms_meetup_oct_2015_us_bancorp_tower
                      • 36416
                      • 589 Posts
                      Quote from: mrhaw at Oct 16, 2013, 02:25 PM
                      @Eoler that is WHAT I AM USING!! smiley
                      (...)
                      And I am sharing it for anyone else that feel my frustration.

                      Ah, sorry - didn't look closely enough at the code section title... and keep up the good work.