Forum Replies Created

Viewing 15 replies - 301 through 315 (of 479 total)
  • Plugin Author RLDD

    (@rermis)

    Sure, that’s a great solution. It seems it might be tedious from a maintenance standpoint, but it’s perfectly doable and they can be broken up with newlines. I’ll take a look at this the next few days, it may take one more release to implement.

    Plugin Author RLDD

    (@rermis)

    Hi Jamie,
    You may now hide or show categories with the following function defined in your custom theme’s functions.php file. This may not be perfect. Default roles are present, and category placeholders can be changed to be specific to your categories.

    
    function dyt_user_cat($c,$userid){
      $c=sanitize_text_field($c);
      $user=get_userdata($userid);
      $roles=implode(',',$user->roles);
    
      if(stripos('|'.'|Admin Category|'.'|',"|$c|")!==false && stripos($roles,'Administrator')===false) return 1; // Hide admin category from all non-Admins
      if(stripos('|'.'|Editor Category|Test Category|'.'|',"|$c|")!==false && stripos($roles,'Editor')===false) return 1; // Hide these categories from all non-Editors
      
      if(stripos('|'.'|Reader Category|'.'|',"|$c|")!==false && stripos($roles,'Editor')!==false) return 1; // Hide these categories from all Editors
      if(stripos('|'.'|Reader Category|'.'|',"|$c|")!==false && stripos($roles,'Administrator')!==false) return 1; // Hide these categories from all Admins
      if(stripos('|'.'|Editor Category|'.'|',"|$c|")!==false && stripos($roles,'Reader')!==false) return 1; // Hide these categories from all Readers
      return 0; // Default show category
    }
    Plugin Author RLDD

    (@rermis)

    Hi Jamie,
    Glad everything is working out. Currently the export function is a PRO feature available to admins within the plugin settings. Extending this to end users would take some work. Currently export by employee is not a feature requested by other plugin users, so this feature might fall closer to the bottom of the list.

    As long as Dynamic Time plugin settings are set to “Keep data safe” and your website data is incrementally backed up, I can assure you the time entry data rests safely in the database. Timecard entries are not deleted or moved, even if an employee is deleted. Once a timecard is approved, the data is locked from editing.

    Employees with an active login can access their timecard at any time to view past entries, and maybe even a bit faster than opening a spreadsheet. Hope this helps!

    Plugin Author RLDD

    (@rermis)

    Hi @jambo90210,
    Do you have a custom theme? If so, would you be open to setting dropdown category permissions in code with a brief script? You would potentially be able to manually set permissions on dropdown menu items in a future release. Just checking to see if you are open to that.

    Plugin Author RLDD

    (@rermis)

    Hello,
    Thank you for notifying me of this issue. Sessions have been removed in entirety in version 2.1.2. Please let me know if this version does not fully resolve your issue.

    Plugin Author RLDD

    (@rermis)

    Hello,
    Thank you for notifying me of this issue. Sessions have been removed in entirety in version 2.1.2. Please let me know if this version does not fully resolve your issue.

    • This reply was modified 4 years, 9 months ago by RLDD.
    Plugin Author RLDD

    (@rermis)

    Hi @vismithams,

    I am unable to reproduce this error. However, I have released a potential fix for the error message provided. Can you install version 2.1.1 and kindly let me know if this is resolved?

    Thank you!

    Plugin Author RLDD

    (@rermis)

    @mseka Today’s release should cache removal of auto-applied coupons and not reattempt to apply. Let me know if this works for your scenario!

    Plugin Author RLDD

    (@rermis)

    Hi @mseka,

    You are correct, a coupon marked as auto-apply will continually try to apply itself. If it or another coupon is also set as individual use, then they will not be able to be applied together.

    This is a conflict that can be resolved by setting both coupons to not be individual use, or turning off auto-apply.

    I will see if a future release can at least temporarily allow an auto-applied coupon to be removed. This feature would take some time to implement so that it correctly remembers if a coupon was manually removed and does not try to auto apply it again.

    Plugin Author RLDD

    (@rermis)

    Hi Jamie,
    Thank you for your feedback. Yes, displaying categories on hover I agree is an excellent recommendation. Even though categories are available to be seen in the PRO version report level, this makes sense to also make more accessible on the timecard itself. I’ll add this to potential future improvements.

    Category restriction is a less requested feature, and more difficult to implement, but I will make note of your request.

    Admin functionality is purposely isolated to the admin view, since the plugin admin page contains plugin level settings and configuration options for the plugin, it cannot be accessible through itself e.g. a shortcode. However, supervisors can access their assigned employees via the link in the email for quick tasks such as resubmission or approval. Hope this helps!

    Thread Starter RLDD

    (@rermis)

    Thanks kiscsiszu,
    That is almost helpful, but we have page rules covered in the klaviyo settings. What we’re hoping to achieve with dynamic loading is control over geo-location by state, and user role in WordPress.

    Thread Starter RLDD

    (@rermis)

    Hi,
    Thanks for considering! I would like to be able to trigger JS popups manually. Currently, if the plugin is installed, popups occur with no ability to suppress. Therefore if we have a specific user group that should not receive the popup we are unable to suppress.

    The behavior functionality not available to us for popups includes geo-location by state, and user role in WordPress. We hope to wrap the JS in our own conditionals. We are unable to do this now since the popups are triggered on their own.

    Plugin Author RLDD

    (@rermis)

    Hi Denz
    Cool, thanks for letting me know. You saved me some time!

    Plugin Author RLDD

    (@rermis)

    Hi Denz,
    Thanks for the clarification. There is JS running on cart pageload that is a potential conflict. I will look into this further to see if I create an option to disable. That might fix your issue.

    Plugin Author RLDD

    (@rermis)

    Hi Denz,

    Thanks for your question. Could this be a feature of the ‘WooCommerce Subscriptions’ plugin, or another similar plugin? I’m certain that Auto Coupons does not have a recurring fees section. Did Auto Coupons work successfully alongside the recurring fees section at one time? There is a new WC version out recently, so if you’ve upgraded WooCommerce plugin you might try going back to the previous version and see if that works.

Viewing 15 replies - 301 through 315 (of 479 total)