• Resolved kpk1l

    (@kpk1l)


    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

Viewing 15 replies - 1 through 15 (of 17 total)
  • Plugin Support Denzel Chia

    (@denzelchia)

    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

    Plugin Support Denzel Chia

    (@denzelchia)

    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 ago by kpk1l.
    Thread Starter kpk1l

    (@kpk1l)

    bug: Currency Symbol Position after amount. But in dashboard I see it before.

    Plugin Support Denzel Chia

    (@denzelchia)

    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)

    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.
    Thanks

    Plugin Support Denzel Chia

    (@denzelchia)

    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)

    Thank you Denzel.

    Plugin Support Denzel Chia

    (@denzelchia)

    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.

    Plugin Support Denzel Chia

    (@denzelchia)

    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

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Dashboard widgets’ is closed to new replies.