elinoretenorio / jobskee-open-source-job-board

Jobskee is an open source job board built using PHP and MySQL (http://jobskee.com)
MIT License
96 stars 48 forks source link

Can user change the logo of the jobskee website #23

Open whitehorse1 opened 7 years ago

whitehorse1 commented 7 years ago

When I check in Jobskee assets/defaults/images, there are no logo there. How do i change the logo to a different company logo on the jobboard.

It is much different from jobberbase.

sourcem2c commented 6 years ago

To change logo .. goto views/default/assets/images .. and you will find logo.png there. Upload yours to replace this.

pedromor commented 6 years ago

I'm not seeing a png in that folder in my install. Trying to get rid of the the jobskee text in the nav bar.

image

joreluix commented 6 years ago

For the images, it worked me, add or modify the file .htaccess into assets folder with next code:

RewriteEngine on RewriteCond %{REQUEST_URI} ^upload/members/.*.(gif|jpe?g|png)$ [NC] RewriteRule .? - [F,L]

devasia2112 commented 5 years ago

to get rid of the name go to the translation file called en.ini, to change the logo go to header.php and change line 45 from: <a class="navbar-brand" href="<?php _e(BASE_URL); ?>"><?php _e(APP_NAME); ?></a> to: <a class="navbar-brand" href="<?php _e(BASE_URL); ?>"><img src="<?php echo APP_SET_LOGO; ?>" /></a>

APP_SET_LOGO just added another define with config.php Line 35 (// APPLICATION SETTINGS).

All set, i would like to use the native method of the application if there is one, but i couldn't find it.