Hi,
Just follow my steps here –
Step-1 : Open your plugin directory and then open your plugin folder responsive-photo-gallery
Step-2 : Now open responsive-gallery-short-code.php file on any editor.
Step-3 : Now go to near line number 129 and find below code there –
foreach($rpg_all_photos_details as $rpg_single_photos_detail) {
$name = $rpg_single_photos_detail['rpg_image_label'];
$url = $rpg_single_photos_detail['rpg_image_url'];
Check screenshot for more help.
Step-4 : Replace it with below code –
foreach(array_reverse($rpg_all_photos_details) as $rpg_single_photos_detail) {
$name = $rpg_single_photos_detail['rpg_image_label'];
$url = $rpg_single_photos_detail['rpg_image_url'];
Check this screenshot for more help.
Step-5 : Save your code and then check your gallery page.
Let me know if you will get any problem
Thanks