Please do NOT enqueue bootstrap CSS/JS on EVERY single administrator page. This not only causes the entire admin area to show a white background, but it also causes numerous conflicts and issues with other themes and plugins.
You should ONLY load CSS/JS needed on YOUR plugin pages when it is required.
]]>Hi,
We need a support in order to implement similar solution. Do you offer customization and paid support?
Kind Regards,
]]>hi,
How do i get the client to get the info?
$getPostresponse is that a string to get in a form or how do i call this info from the external webservice?
thx in advance Edwin
]]>Hi,
We are a church community who want intranet wordpress to interact with our bookkeeping software true wsdl/soap.
i did got from the supplier from the bookkeepingsoftware a wsdl file
how do i ger further?
upload the file to: /wp-content/plugins/wpsoap/wsdl/myfilegotfromsupplier.wsdl ?
is there anny documentation to set up this plugin?
thx in advance
greetz Edwin from the netherlands
]]>Hi, first of all i want to thank you for this plugin however i encounter a problem, we run a Woocommerce Plugin in our website but it seems that the plugin is complicated with the WooCommerce, When I install this to our website the Product data (General Tab) is Missing.
]]><?php
/*
* WSDL LOCATION: It can be found in admin section WP SOAP setting page.
* SOAP SERVER LOCATION: It can be found in admin section WP SOAP setting page.
* email: your wordpress user email.
* password: your wordpress login password.
*/
$client = new SoapClient('WSDL LOCATION', array('cache_wsdl' => WSDL_CACHE_NONE));
try {
$client->__setLocation('SOAP SERVER LOCATION');
$response = $client->__soapCall('authenticate', array('email' => '[email protected]', 'password' => 'yourpassword'));
return $response;
} catch (SoapFault $e) {
return $e->getMessage();
}
?>
]]>