How to customize the Listing Previews?

If you want to customize the image previews on the Add Listing page, please follow these steps:

  1. Opens listgo -> img -> preview you will see the name of previews
  2. Creates the new images and please remember that the name of your images must be the same the names in preview folder
  3. Once you have created all images, accessing your hosting -> wp-content -> themes -> listgo-child -> creating a folder called img, then create preview folder under img folder
  4. Uploads all your preview images to listgo-child -> img -> preview
  5. Clicks on Appearance -> Themes -> Activating Listgo Child
  6. Next, clicks on  Editor (still in the Appearance  area) -> Clicks on functions.php on the Theme Files settings
  7. Finally, puts the following code into the functions.php:

 

add_filter('wiloke/wiloke-listgo-functionality/app/submit/preview_uri', function(){ 
   return get_stylesheet_uri() . '/preview/img'; 
});

Note that if your website does not allow to edit the theme file directly, you have to log into your hosting -> Your WordPress folder -> wp-content -> themes -> listgo-child -> Opens functions.php -> Puts the above code to this file. The code should below <?php syntax.

<?php
add_filter('wiloke/wiloke-listgo-functionality/app/submit/preview_uri', function(){ 
   return get_stylesheet_uri() . '/preview/img'; 
});

Leave A Comment?