Dashboard widgets
-
Hello.
I just found your plugin for projects management. Really nice UI. UX need more work on adding milestone, task(from my perspective)I want to know if I can show some widgets on dashboard.
See pic attached. https://ibb.co/SrxkXHx
-
Hi,
Thank you for your feedback.
I want to know if I can show some widgets on dashboard.
See pic attached. https://ibb.co/SrxkXHxProjectopia does not have a widget feature or the feature to show those information you require on dashboard, you will have to hire a developer to custom code it for you.
Thank you
Can you tell me the file that show this dashboard?
Another question.
I created an project with 3 milestones and tasks, 2 completed, 1 on hold.
I created then an invoice but it doesn’t appear under Outstanding Invoices.
Can you show me a tutorial or explain how this works?
ThanksHi,
Can you tell me the file that show this dashboard?
It is generated by function pto_dashboard found in wp-content/plugins/projectopia-core/includes/admin/dashboard/dashboard.php
That’s all I can provide for this. Please hire a developer if you require assistance in adding your custom code.
I created an project with 3 milestones and tasks, 2 completed, 1 on hold.
I created then an invoice but it doesn’t appear under Outstanding Invoices.At the moment, there seems to be a bug.
I will report this issue to our development team.Thank you
Thank you. I’ll wait or the update to see the invoices.
From what I see in your code,
$invoice_total = income from all paid invoices.
$current_month_income = all income current month (paid+unpaid)
I managed to show what I wanted (unpaid) with $current_month_income-$invoice_totalCan you tell me how to show total from all the time?
ThanksSpace between amount an currecny doesn’t appear
-
This reply was modified 3 years, 6 months ago by
kpk1l.
bug: Currency Symbol Position after amount. But in dashboard I see it before.
Hi,
Can you tell me how to show total from all the time?
I am sorry, this is beyond our support scope, our development team does not provide custom solution or assist in customer’s custom solution.
Space between amount an currecny doesn’t appear
bug: Currency Symbol Position after amount. But in dashboard I see it before.Please provide steps to replicate issue, as well as screen-shot of your issue so that I can make a bug report.
Thank you
Hello.
https://prnt.sc/EoEa_Llq1joj
I insert a currency text, select after amount, but the currency appear before amount
https://prnt.sc/s0_q2R_wDwz7
I checked to add space between amount and currency, but is not added.
ThanksHi,
Thank you for your reply.
Both settings were not implemented on dashboard income by month widget.
You will have to manually edit the codes.Please open wp-content/plugins/projectopia-core/includes/admin/dashboard/income-by-month-widget.php
and go to line 164 and find the following codes.
<?php echo esc_html( get_option( 'currency_symbol' ) . $current_month_income ); ?>and change to the following
<?php echo esc_html( $current_month_income ." ". get_option( 'currency_symbol' ) ); ?>Thank you
Thank you Denzel.
Thank you!
Hi.
Any feedack about outstanding invoices bug?I created then an invoice but it doesn’t appear under Outstanding Invoices.
At the moment, there seems to be a bug.
I will report this issue to our development team.Hi,
Please open wp-content/plugins/projectopia-core/includes/admin/dashboard/outstanding-invoice-widget.php
Go to line 54 and find the following codes
<?php if ( ! empty( $ordered ) ) { ?>Replace with the following codes.
<?php $ordered = 1; if ( ! empty( $ordered ) ) { ?>Thank you
-
This reply was modified 3 years, 6 months ago by
The topic ‘Dashboard widgets’ is closed to new replies.