• Can I include images in every stores and show their images in the list?
    Can I hide the Map?
    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    You can set a featured image on the store page in the admin area, hiding the map is only possible with CSS.

    
    #wpsl-gmap {
        display: none !important;
    }
    
    #wpsl-result-list {
        width: 100%;
        margin: 0;
    }
    

    The CSS code has to go in the style(s).css in your active theme folder.

    Thread Starter hheecc

    (@hheecc)

    Hi Tijmen.
    Thanks a lot.
    I already did both suggestions and of course, it worked!. Could you also tell me how to show bigger the featured images in the List? It seems like icons and not like images/photos.
    Thanks again

    Thread Starter hheecc

    (@hheecc)

    Hi Tijmen
    I already know how to increase the size of featured image by adding this code
    add_filter( ‘wpsl_thumb_size’, ‘custom_thumb_size’ );
    function custom_thumb_size() {
    $size = array( 100, 100 );
    return $size;
    }
    But now it is very blurred.

    By the way do you know if I van show the list in two columns?
    I know my first question was already solved. Do you think I must check mark as resolved opening another Topic Tag?
    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Stores with Image and Hide the Map’ is closed to new replies.