Hi @lucashility,
I found the file where we can disable the company logo.
You can tweak these files:
content_job_listing.php (I edited this using sftp)
and edited the padding space in the frontend.css
Hope this helps.
Thanks, @nlucinada125.
I used this in my stylesheet to hide the logo:
/*Hide company logo from classifieds*/
.company_logo
{ display: none; }
Hiding the logo is best done by overriding our default template files. Here’s a general tutorial on that:
https://wpjobmanager.com/document/template-overrides/
The files to override in this case are:
WP-Job-Manager/templates/content-single-job_listing-company.php
… and:
WP-Job-Manager/templates/content-job_listing.php
Look for the the_company_logo() function, since that’s where the logo will be output.
That said, we aren’t able to actually write the code for you. You may want to look into one of these services if you need help:
https://codeable.io/?ref=l1TwZ
http://studio.envato.com/
https://jobs.wordpress.net/
Thanks!