Skip Navigation

[Resolved] family budget site

This support ticket is created 6 years, 11 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 -
- 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 3 replies, has 2 voices.

Last updated by Noman 6 years, 10 months ago.

Assisted by: Noman.

Author
Posts
#614214

dear sir,
i like to develop a site that each cleint can enter private area and enter his income and outcome and after that to show him reports and graphs about his budget.

can toolset tools can help me with that?

please advice,
nir

#614255

Noman
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

Hi Nir,

Thank you for contacting Toolset support. I am sorry but this is not possible using built-in Toolset features but you can have a look here and try the solution Beda explained:
https://toolset.com/forums/topic/charts-and-graphs-with-toolset/#post-361492

Please note this requires a custom code or modifications which falls into Custom coding & custom development and it is out of support policy (https://toolset.com/toolset-support-policy/). So we recommend to contact Toolset recommended service providers to further discuss the custom approach. We have some recommended list of service providers here if you would like to take a look: https://toolset.com/consultant/

Thank you

#614287

tnx for your fast replay,
maybe i didnt explane my self,
i want to use the access tools to make the private area and then create a post type for the income/outcome with taxonomy on income and outcome that the user can enter.
then i was whinking to use the views to get the date for the calculation and graphs.

1. can my plane will work ?
2. is the views can give me integer number for calculations ?

please tell me what you think

tnx
nir

#614309

Noman
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

Using_hide_it_shortcode.png
Register_Custom_Shortcode.png

Hello Nir,

1. I want to use the access tools to make the private area and then create a post type for the income/outcome with taxonomy on income and outcome that the user can enter.
>> Yes, you can achieve it using Access plugin, please follow the docs:
https://toolset.com/documentation/user-guides/setting-access-control/
https://toolset.com/documentation/user-guides/#access

2. 2. is the views can give me integer number for calculations ?
Yes, you can remove extra divs from view and get only integer value for calculation.

1. To do this please add following code in your theme’s or child theme’s functions.php file:

add_shortcode('hide-it', 'hide_it_func');
function hide_it_func(){
    return;
}

2. Then please register "hide-it" custom shortcode in Toolset >> Settings >> Front-end Content >> Third-party shortcode arguments -- see attached screenshot.

3. Finally edit your View, and wrap the code [wpv-layout-start] and [wpv-layout-end] with [hide-it] shortcode, please see attached screenshot and example below:

[hide-it] [wpv-layout-start] [/hide-it]
...
[hide-it] [wpv-layout-end] [/hide-it]

Thank you