tungneovision
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_unit_tag_not_found, There is no valid unit tagMore detail about my code :
,
this is my custom composable for fetching data purpose
import { useFetch } from "#app";
import { useRuntimeConfig } from "#app";
export default async function useContactFormAPI(body) {
const runtimeConfig = useRuntimeConfig();
const { data, error } = await useFetch(runtimeConfig.public.CONTACT_FORM_API, {
method: "POST",
headers: {
"Content-Type": multipart/form-data; charset=utf-8; boundary= + ${Math.random().toString()}
},
body: body,
});
console.log(error);
return data.value;
}
this is my event handler
const handleClick = async (event) =>{
const body = new FormData();
….
some data
….
body.append(“_wpcf7”, “20”);
body.append(“_wpcf7_version”, “5.9.8”);
body.append(“_wpcf7_unit_tag”, “wpcf7-f20-o1”);
const data = await useContactFormAPI(body);
console.log(data);
console.log(event);
}Forum: Plugins
In reply to: [Contact Form 7] “wpcf7_unit_tag_not_found”, “There is no valid unit tag.”More detail about my code :
this is my custom composable for fetching data purpose
import { useFetch } from "#app";
import { useRuntimeConfig } from "#app";
export default async function useContactFormAPI(body) {
const runtimeConfig = useRuntimeConfig();
const { data, error } = await useFetch(runtimeConfig.public.CONTACT_FORM_API, {
method: "POST",
headers: {
"Content-Type":multipart/form-data; charset=utf-8; boundary= + ${Math.random().toString()}
,
},
body: body,
});
console.log(error);
return data.value;
}
this is my event handler
const handleClick = async (event) =>{
const body = new FormData();
….
some data
….
body.append(“_wpcf7”, “20”);
body.append(“_wpcf7_version”, “5.9.8”);
body.append(“_wpcf7_unit_tag”, “wpcf7-f20-o1”);
const data = await useContactFormAPI(body);
console.log(data);
console.log(event);
}Hello @kapasias ,
Thank you for spending time for my problem. I tried your solutions but results is still the same. Do you think it is because I do the project in localhost in WSL2 so it cause this problem ? Or should i change the version of my plugin so that each pie chart in each tab will appear ? It i need to change version, which version should i choose ?I agree. Thank you for your suggestion broo !!!
Forum: Accessibility
In reply to: Advanced chart does not display in tabs of elementor template kitsOne more thing, I tried other tabs widget, from themesflat tabs, advanced tabs, normal tabs, and i also tried all kind of charts as well and results is still the same.
One more thing, I tried other tabs widget, from themesflat tabs, advanced tabs, normal tabs, and i also tried all kind of charts as well and results is still the same.
One more thing, I tried other tabs widget, from themesflat tabs, advanced tabs, normal tabs, and i also tried all kind of charts as well and results is still the same.