• I would like to include product images with search results. How do I go about that?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @rothster ,

    Sorry because the delay to reply.

    To show image in each search result you can follow step below:

    Create a child theme of Customify and copy file search.php from main theme to this child theme.

    On file search.php of child theme change source code

    customify_blog_posts(
    array(
    ‘_overwrite’ => array(
    ‘media_hide’ => 1,
    ‘excerpt_type’ => Customify()->get_setting( ‘search_results_excerpt_type’ ),
    ‘excerpt_length’ => Customify()->get_setting( ‘search_results_excerpt_length’ ),
    ‘excerpt_more’ => Customify()->get_setting( ‘search_results_excerpt_more’ ),
    ),
    )
    );


    To

    customify_blog_posts(
    array(
    ‘_overwrite’ => array(
    ‘media_hide’ => 0,
    ‘excerpt_type’ => Customify()->get_setting( ‘search_results_excerpt_type’ ),
    ‘excerpt_length’ => Customify()->get_setting( ‘search_results_excerpt_length’ ),
    ‘excerpt_more’ => Customify()->get_setting( ‘search_results_excerpt_more’ ),
    ),
    )
    );


    Let me know if you need anything further!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.