pascal
pascal
Offline
0
1. i want to know if album cover after upload can be same size for all users. When they are not it looks bad in some modules that have album cover in it where you can't set size in module. like the Recently added albums module and the Random and Featured Albums modules.

2. After adding artist can it be set to go straight to album page?
Responses (24)
  • Accepted Answer

    Saturday, January 14 2012, 12:46 AM - #Permalink
    0
    1. there's no resizing on the upload, it is directly on the display where the resizing is done.
    a code tweak can be done on that feature so all the files are displayed as "square" pictures so all look the same... but you need small custom coding for that!
    the idea was always to NOT resize it, because if you put a DVD for instance, it wouldn't look good.. in our site we show both CD and DVD and that's why there is no resizing..

    2. small code customization here as well...

    Germi
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Saturday, January 14 2012, 12:52 AM - #Permalink
    0
    1. ok thanks

    2. code goes in artist page correct?
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, January 14 2012, 01:03 AM - #Permalink
    0
    it goes in the artist controller mainly. there is no such as "page" ;) in joomla coding!
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Wednesday, January 18 2012, 11:09 PM - #Permalink
    0
    anyone willing to help me out on the auto resizing code? I can pay thanks
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, January 19 2012, 06:08 PM - #Permalink
    0
    I just posted about the same thing. I'll take a stab at it tonight and if I figure it out I'll post the mod instructions for free. I suppose tips like this are beyond the scope of standard support so we're on our own unless you wish to pay the developer for it (which would be completely acceptable too).
    The reply is currently minimized Show
  • Accepted Answer

    Friday, January 20 2012, 05:05 PM - #Permalink
    0
    :lol:

    no need to pay! the other thread is quite interesting by the way
    there is also one thing you can try: if you're not afraid of coding, you can simply change the THUMBNAIL link created automaticaly

    on the file /helpers/helpers.php

    if you find the function getThumbnailSrc

    you just need to set

    $height = $width ;

    at the beginning of the function. do you know what I mean?

    only coders!!! ;)
    The reply is currently minimized Show
  • Accepted Answer

    Friday, January 20 2012, 05:08 PM - #Permalink
    0
    No problems. I am quite willing to pay for anything I cannot figure out on my own. Thank you very much for the advice though. I'll look at everything
    (again) this evening.

    Moni
    The reply is currently minimized Show
  • Accepted Answer

    Friday, January 20 2012, 10:56 PM - #Permalink
    0
    Germi, I just added what suggested and it works perfectly!

    Thank you!

    Moni
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Saturday, January 21 2012, 12:30 AM - #Permalink
    0
    I didn't get it to work. every time i change or add code to anything it makes my website not work. i found

    function getThumbnailSrc($file, $width, $height = ""){

    but no clue what to put.
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, January 21 2012, 12:57 AM - #Permalink
    0
    Wrong place. Do like this:


    After
    function getThumbnailSrc($file, $width, $height = ""){


    Add
    $height = $width ;



    $height = $width ; should now appear above:

    $system = false ;
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Saturday, January 21 2012, 07:23 PM - #Permalink
    0
    do i add height and width size somewhere?
    The reply is currently minimized Show
  • Accepted Answer

    Saturday, January 21 2012, 07:30 PM - #Permalink
    0
    That mod affects thumbnail creation throughout the whole component. Anywhere you set a width (like in a module's settings) the height will be matched. Are you still having issues with it?
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 01:08 AM - #Permalink
    0
    oh ok. I put the code in correct i don't get any error messages.

    my goal was to have every album cover same size when its in random albums or featured artists

    I will upload some images soon to see if they all come out same size. I want a clean look thats why
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 01:10 AM - #Permalink
    0
    Exactly what I wanted too. Have a look:

    http://www.thegrindlab.com/music
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 01:13 AM - #Permalink
    0
    can anyone help me find the module for Some featured albums its on this demo page
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 01:14 AM - #Permalink
    0
    thats cool did you get it to look like that with the code? Or did you need extra work?
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 01:17 AM - #Permalink
    0
    The albums sections only use the mod Germi posted earlier. I set my desired width in the modules on the back end. The featured artists section and the search section required a bit of additional coding on my part but still very little.
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 01:18 AM - #Permalink
    0
    Also, the 'featured albums' module is:

    Random and Featured Albums (charts)
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 02:03 AM - #Permalink
    0
    the albums page any option to set the size of the album art or does that require code?
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 02:07 AM - #Permalink
    0
    You set the width of album art from the music collection component. This does not affect the height though. Height to width ratio will remain the same on this page. The posted mod only affects thumbnails not the original images or "main" images that appear on artist and album pages. I am not sure about other places because I have coded out images in a lot of areas where I did not want them to appear.
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 05:40 PM - #Permalink
    0
    I can't get the Random and Featured Albums (charts) to look like the "Some featured albums" in the demo i don't think that is it.
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 05:45 PM - #Permalink
    0
    Oh! My mistake. I thought you were referring to the scrolling albums. Let me go look to see if I can figure out which it is. I'll post back.
    The reply is currently minimized Show
  • Accepted Answer

    pascal
    pascal
    Offline
    Sunday, January 22 2012, 05:47 PM - #Permalink
    0
    thanks
    The reply is currently minimized Show
  • Accepted Answer

    Sunday, January 22 2012, 06:30 PM - #Permalink
    0
    I looked through all my modules and I haven't been able to reproduce that layout either. I know the main component creates a page like that though. Perhaps it's not a module and it's just the main component. See:

    http://www.thegrindlab.com/All-Music/albums?format_id=&search=albums&searchword=&tag_id=

    *That might not load properly but hopefully it will. I do believe it's a module though.
    The reply is currently minimized Show
Your Reply