• Resolved farhanul

    (@farhanul)


    Hello,

    Is it possible to add order number and {{Human_date}} for the woocommerce order status updates?

    For example,
    Currently, a notification is “Your order is %Status% ”
    There is no time or order number mentioned. As we get a lot of orders from the same customers, they get confused about their order updates.

    We are suggesting, “Your order #%Order number% is %Status% ({{Human_date}})
    The result should be, “Your order #1002 is on-hold (5 hours ago)”

    We are currently doing it by changing the direct PHP file from the plugin. But we need to update it every time the plugin updates. So it would be better if it is integrated into your plugin directly.

    We have seen a bug. The notifications are being “Seen” as soon as someone loads them. Shouldn’t it be “seen” only when they are clicked?

    We would recommend making it like Facebook. Notifications are seen only when they are visited. Also, add a feature to mark notifications seen if they are right-clicked. Or add a button to “Mark seen” or “Mark all seen”

    It would also be nice if the notifications are separated by a bottom border. Currently, the notifications are only separated by white space. A border on the bottom would be great. We are currently doing it using custom CSS. But this would improve the overall plugin for others.

    Thank you. This is an amazing plugin.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author wpdever

    (@wpdever)

    Hi,

    For the order number and date of order updates, can you contact me here: [email protected] ? I’m thinking not everyone would want this change so I can add a hook and send you custom code for now.

    Also, thanks for pointing out the “seen” bug, I will fix it in the next update. For the mark as seen button, there is a hook “wnbell_item_append” I added for this purpose. Let me know if you need more information on how to use it.

    Thanks for the bottom border suggestion. I will add it in future updates.

    Thread Starter farhanul

    (@farhanul)

    Hello,
    Thank you for your reply.
    We don’t need a custom code at the moment. We have changed the codebase to fix our needs. We recommended these changes so the other users can get the benefits! If you add the changes to the plugin in the future, it would be great for others.

    As for the order number change, we think it would be even better if there is a custom tab to edit the order notifications, just like default notifications. For example, a button to enable “Include Order number with order status updates”. Or, something like that.

    It’s an awesome plugin. So we want everyone to get the amazing potential it generates for us.

    Plugin Author wpdever

    (@wpdever)

    Hi,
    I just released an update that should haved fixed the order notifications bug.
    For the user notifications, I plan to add options to customize all of them as a premium feature. But I added this filter hook you can use to customize with an order number or dates and it won’t be removed with plugin updates.
    You can try something like this in your theme’s functions.php file or in a custom plugin:
    add_filter(“wnbell_woo_orders_text”,”custom_order_text_callback”,10,2);
    function custom_order_text_callback($text,$notification){
    //change the $text= “You order is …”;
    return $text;
    }

    Thread Starter farhanul

    (@farhanul)

    Hello,

    Thank you for the update. It fixed the bug.

    The filter works great too.

    I am actually planning to buy your premium plugin soon. Could you give me an estimated time on how long may it take to get the following features be available?

    1) New notification > Recipient role > “Visitor or No role”
    Usage:
    I want to send notifications only to people who are not logged in. But I don’t want logged-in users to see it.

    2) Page-able notifications.
    Notifications are currently linear. A text appears with time and hyperlink. It would be better if the user could click a short notification and the notification would grow bigger in size with much more details.
    Example: https://www.thecubicle.com/ (Click their bell icon to see how it acts)

    3) Woocommerce notification custom edit from Dashboard.
    You already mentioned that you want to add it as a premium feature.
    Could you specify how long may it take for this update to be released?

    If you were to build this feature only for us, how much would it cost.
    (I’m sorry if this place is not right for business deals. Let us know if we should contact at [email protected] for these deals)

    Thank you.

    Plugin Author wpdever

    (@wpdever)

    Hi,

    There’s a feature that was requested by multiple users so that’s probably what the next update will be about, I can add the visitor role feature you mentioned in this update so it should be done in about a week or two.
    I’ll start on the user notifications customization feature next. So it might be done in a few weeks.
    The second feature : ‘notification detail view’ is the only feature I don’t plan on adding to the plugin so you can contact me on that email if you’d like to hire me to do it, or if you need hooks to develop it yourself.

    Plugin Author wpdever

    (@wpdever)

    Hi,
    I’ve just released an update with the logged-out guest role in the premium version. So the user notifications customization option should take a week or two from now.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Woocommerce notification & a few feature suggestion’ is closed to new replies.