Hi,
Thank you for your feedback.
I want to know if I can show some widgets on dashboard.
See pic attached. https://ibb.co/SrxkXHx
Projectopia 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
Thread Starter
kpk1l
(@kpk1l)
Can you tell me the file that show this dashboard?
Thread Starter
kpk1l
(@kpk1l)
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?
Thanks
Hi,
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
Thread Starter
kpk1l
(@kpk1l)
Thank you. I’ll wait or the update to see the invoices.
Thread Starter
kpk1l
(@kpk1l)
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_total
Can you tell me how to show total from all the time?
Thanks
Thread Starter
kpk1l
(@kpk1l)
Space between amount an currecny doesn’t appear
-
This reply was modified 2 years, 4 months ago by
kpk1l.
Thread Starter
kpk1l
(@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
Thread Starter
kpk1l
(@kpk1l)
Hi,
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
Thread Starter
kpk1l
(@kpk1l)
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