hitcode
Forum Replies Created
-
Forum: Plugins
In reply to: [Locatoraid Store Locator] missing infobox.jsHello everyone,
sorry for the issue, we’ve made a fix for this in the latest 2.6.6 version.Forum: Plugins
In reply to: [Locatoraid Store Locator] missing infobox.jsHello everyone,
sorry for this issue, we’ve fixed the reference to the infobox file in the latest 2.6.6 version.Forum: Plugins
In reply to: [ShiftController Employee Shift Scheduling] History visible for allHello,
sorry for not replying sooner.Currently you can achieve it with PHP code modification. Please edit this file:
wp-content/plugins/shiftcontroller/application/modules/logaudit/config/acl.phpChange the function shift_logaudit_view so it will always return true, like this:
function shift_logaudit_view( $u, $o ) { return TRUE; }Please let me if it works for you.
Forum: Reviews
In reply to: [ShiftController Employee Shift Scheduling] Where is the email supportWhere exactly is a location to enter their emails? I see nothing under the plug in.
The staff details are taken from the WordPress users database, the emails of employees are those of their WordPress accounts.
Forum: Reviews
In reply to: [ShiftController Employee Shift Scheduling] Where is the email supportHello,
I assume Location is actually where you would place your staff
Well at the moment to simplify it a bit the “Location” entity can stand for an actual location, or for a work role. So it’s just Location + Staff configuration for a shift rather than Location + Role + Staff.
Where is the ability to email your staff their schedules?
When a shift is published or changed, the staff members get automatic emails with their shift(s) information.
Forum: Plugins
In reply to: [ShiftController Employee Shift Scheduling] Remove Profile ImageHi,
at the moment it can be disabled by manually editing a bit of code. If it’s not a problem for you, please edit this file:shiftcontroller/application/presenters/user.php
change line 74, now it looks like this:
if( $ri == 'wordpress' ){change it to:
if( 0 && ($ri == 'wordpress') ){Otherwise please drop us a line through http://www.shiftcontroller.com/contact/ and we’ll reply back with the updated code which you will later place on your site.
Forum: Plugins
In reply to: [ShiftController Employee Shift Scheduling] Logout doesn't workHello,
we’ll try to figure it out, although so far not being able to replicate it, it seems to work fine for me.Hello,
thank you for your feedback. We’re working to add reminders option, although it will require additional configuration on the website to run periodic actions (cron jobs).Forum: Plugins
In reply to: [Locatoraid Store Locator] Seems brokenHello,
we’ve got a number of installs of the latest version running. It might depend on your WordPress environment, but we’ll need a temporary WP admin access to figure it out. If you accept this, please let us know through http://www.locatoraid.com/contact/Forum: Plugins
In reply to: [Locatoraid Store Locator] Pro with non pro?Hello,
no the Pro version doesn’t depend on the Free one, it’s self sufficient and is installed in a separate folder “locatoraid-pro”.Forum: Plugins
In reply to: [ShiftController Employee Shift Scheduling] Remove timeoff requestsHello,
sorry only with the code hack at the moment, here’s the file for the menu navigation configuration:
shiftcontroller/application/config/menu.phpYou will need to remove it from the $config array in 3 places, where it refers to ‘/timeoffs’ on lines 18, 70, 81
Or, way easier, add this code to the bottom of this file:
unset( $config[USER_HC_MODEL::LEVEL_ADMIN . '/timeoffs'] ); unset( $config[USER_HC_MODEL::LEVEL_MANAGER . '/timeoffs'] ); unset( $config[USER_HC_MODEL::LEVEL_STAFF . '/timeoffs'] );Forum: Plugins
In reply to: [ShiftController Employee Shift Scheduling] Food truck shiftsHello,
thank you for your interest.1. I assume we can add a shift and invite certain employees to propose their availability.
Yes, you can create “open” shifts (i.e. without employee assigned yet), and employees can pick them up.
2. For truck-related shifts there are different phases: pre-booking, oral approval, contractual confirmation. Is there a way for the manager to differentiate the phases and relate it to the employees only when the shift is confirmed?
We don’t have custom statuses for the shifts, only “pending” and “active”. You could probably make use of the comments feature of the Pro version, for example, create a pending shift, add a comment “PRE-BOOKING”. Then as the shift progresses, add another comment “ORAL APPROVAL”. When when it’s finally confirmed, change its status to “active”, and then assign an employee or make it available for pick up.
3. Is there a way the confirmed shifts to publish in a public calendar to use the solution also for the truck customers to see where the trucks are?
Yes, with the shortcode you can show your calendar on a public page.
Forum: Plugins
In reply to: [Locatoraid Store Locator] Custom markerHi Deborah,
please edit this file:
locatoraid/assets/js/lpr.jsyou will need to uncomment (remove the starting //) the line 419 and specify the URL of your custom marker:
icon: "//www.yoursite.com/mymarker.jpg",Forum: Plugins
In reply to: [Locatoraid Store Locator] Custom markerHi Deborah,
thank you for your feedback. Will you need to change the generic marker for all locations (it can be done by a code hack), or choose a marker for each location (it can’t be done at the moment 🙁Forum: Plugins
In reply to: [Locatoraid Store Locator] Tracking stats custom rangesHello,
I’m sorry I missed the original post.1. Is it possible to use the same store information on multiple pages?
You could put the shortcode in multiple pages but it will not be able to separately track the stats. Another option is to enable multiple instances of the plugin – simply copy the main “locatoraid.php” file to “locatoraid_2.php” (anything starting with “locatoraid_”) and you will have another independent instance of the plugin, you can separately activate it in the admin panel and it will have its own database and shortcode. Although you will need to keep in sync the locations of both instances.
2. Date ranges for stats.
Yes it could be possible, it keeps the time when the search happened in the database. We’ll try to add a range selector to filter the stats in one of the nearest version updates.