nuggetsol
Forum Replies Created
-
Thank you for the logs and your effort to pinpoint the issue. This really helps.
Let me look into the issue and get back to you. We might need your help to test the changes before I can release a new version of the plugin.
In order to be able to send/receive files, do you mind opening a support ticket via – http://www.oasisworkflow.com/submit-a-query
Thanks.
Hi Darnell,
It looks like the data is not properly stored in the DB.
Do the following:
1. Install the plugin again. Make a copy of the data stored in fc_workflows and fc_workflow_steps.2. Modify the workflow and compare the data with the original data.
See if you see any difference. Also, if possible send me the old/new data.
Also, which browser are you using? Did you try using another browser? Does it work in another browser?
Purchasing allows you to use Oasis Workflow for an unlimited period of time. It’s not a subscription. The plugin will continue to function even after a year.
Only for continued support and updates, all licenses must be renewed after a period of one year.
Hope this helps.
Thanks.
Unfortunately, we do not have a one time purchase version with lifetime upgrade.
All purchases come with one year of free upgrades. At the end of the year you can renew your license at a discounted price.
Hope that helps.
Forum: Plugins
In reply to: [Oasis Workflow] Unable to delete an old workflowThe “free” version doesn’t come with a “delete” option, since it only allows to work with one workflow.
However, once there are no pending items in the workflow, you will be able to modify it.
If you still wish to modify the workflow which has active articles, you can simply create a new version of the workflow, by using “Save as New Version” button. Retire the old version and make the new version active by assigning end date on version 1 and start date on version 2.
Forum: Plugins
In reply to: [Oasis Workflow] Username instead of roleMarking this as closed.
Forum: Plugins
In reply to: [Oasis Workflow] Post claim functionClosing this, since it was handled via the support ticket at http://www.oasisworkflow.com
Forum: Plugins
In reply to: [Oasis Workflow] Fatal error at oasiswf-actions.phpThat line of code is getting called as part of the wp_trash_post hook.
Are you deleting posts/pages from outside WordPress Admin (like through a cron OR something similar)?
In order to fix the issue, put the following lines of code after line 239
if( !class_exists('FCProcessFlow') ){ require_once( OASISWF_PATH . "includes/workflow-base.php" ) ; }This will make sure that the FCProcessFlow class is available before executing the next line of code.
If you are not comfortable making this code change, simple open a support ticket via http://www.oasisworkflow.com/ and I will be able to send you the modified file.
Hope this helps.
Forum: Plugins
In reply to: [Oasis Workflow] Username instead of roleHi there!!!
It looks like in your case, you have specific users whom you want to assign the task.
See if the “Teams” add-on works for you.
Essentially, with the “teams” add-on you will create teams, for example…
HR team – 2 author, 1 editor, 1 publisher.When the user submits the article to the workflow, they will choose a team instead of specific users. This will allow you to hide the actual users and behind the scenes the assignment will go to the appropriate user in the team who holds the role specified on the step.
The teams add-on works only with the “Pro” version though.
Hope this helps.
Forum: Plugins
In reply to: [Edit Flow] Edit Flow AlternativeHave you tried oasis workflow? https://wordpress.org/plugins/oasis-workflow/.
It provides ways to create custom editorial workflows.
Forum: Fixing WordPress
In reply to: BPM PluginYou may want to look into Oasis Workflow – https://wordpress.org/plugins/oasis-workflow/
It has a lot of the features to support editorial review process.
See if it fits your needs.
Forum: Plugins
In reply to: [Oasis Workflow] Reminder on daily basisThis is a new feature to add to the plugin. We do not have that yet and I will add this to my TODO list.
Forum: Plugins
In reply to: [Oasis Workflow] Update postNot sure if I understand your question. The revision option is only available with the “Pro” version of Oasis Workflow.
With the “free” version, once the post is published, we display the out of the box “update” button.
You might want to look at Oasis Workflow plugin which allows you to create custom editorial workflows.
https://wordpress.org/plugins/oasis-workflow/
The “basic” version comes with a standard workflow which can be modified to suite your needs. It uses a simple drag and drop functionality to create custom workflows.
It has Inbox features, audit trails and reporting features which are pretty standard with any editorial workflow.
If you are interested in multiple workflows and some enhanced editorial workflow features you can take a look at the “Pro” version.
Hope this helps.
Forum: Plugins
In reply to: [Oasis Workflow] Admin EmailEssentially, you will need to create a custom plugin where you will be able to use these hooks and add custom code.
You will use “add_action()” to call this hook and add a function which does the custom job.
You might want to work with a wordpress developer to be able to add some custom code.
Do not edit any of the plugin code files, since they will get overridden with the next update. Instead create your own little plugin and add the customization using the hook.