Step by step guide to edit child theme
launch file zilla
Host: 23.92.53.254
Username:jp
Password:JpXyz
Port:22
Click Quickconnect
Change directory to /var/www/digi.io/wp-content/themes/listingpro-child/templates/singe-list/listing-details-style2/content/
right-click on adinfo.php -> view/edit
Note: It will automatically display the content of adinfo.php in your texteditor, Sublime3 in my case
ctrl+f; author-title -> hit ENTER
You can see "class='author-title'" under "class='listing-name'", SWAP their places. Cut the whole div of listing-name, paste it under author-title h3 tag.
Open git bash
ssh jp@23.92.53.254 -> hit ENTER
enter password when prompted
Change directory to /var/www/digi.io/wp-content/themes/listingpro-child/templates/singe-list/listing-details-style2/content/
run this command to see files inside that directory;
ls -la
delete adinfo.php;
sudo rm -rf adinfo.php
create new file named adinfo.php;
sudo nano adinfo.php
Now, go back to your text editor ( Sublime3 in my case) ctrl+A to select all, ctrl+C to copy
Go to git bash, right click and paste
ctrl+X
press Y
hit Enter
Done!