Delite Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Products shortcode srcsetThanks for your answer! In your opinion there is another way that allows me to show a product (with photo, title, price and purchase button) but with a smaller image that can fit well in the sidebar?
Thanks again for your time.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] background ActionPlease read Push Notifications for WordPress (Lite) description:
Push Notifications for WordPress (Lite) natively supports:
- Apple Push Notification service (APNs)
- Firebase Cloud Messaging (FCM)
FCM notifications on iOS are not supported. Only native notifications are supported.
You have to read carefully documentation on our site.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] background ActionPlease note that we do not give client-side code level support on the plugin.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] SwiftClosed as duplicate of this post.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] SwiftSince the library is written in Objective-C, you have to create a bridging header like this:
// // Push-Bridging-Header.h // #import <PushNotifications/PushNotifications.h>
Then you can use the Objective-C methods as if they were written in Swift. More info here.
Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] Registration ProblemsHello, you can fine more information here.
We suggest you to take a look at our Android and iOS library, they have full support of OAuth handling.
- This reply was modified 6 years, 12 months ago by Delite Studio.
With the premium plugin you can send arbitrary notifications using action and hooks. For example you can use
pnfw_send_notification
to send a push notification to all devices of a specified user.Forum: Plugins
In reply to: [WP GPX Maps] Chart distance tooltip incorrect+1 for problem #2. I’m using the altitude graph, which in my case should have “km” as unit of measurement, while “m” is indicated (e.g. it shows “2m” instead of “2km”).
Debugging the
WP-GPX-Maps.js
script, I can see thatunit
is “2” (row 737), sol_x
is correctly set tol_x = { suf : "km", dec : 1 };
. But apparently this information is not used to draw the graph…Forum: Plugins
In reply to: [WooCommerce] Order actions hidden in WC 3.3+Thank you! I never thought I’d find it there ??
Forum: Plugins
In reply to: [WooCommerce Satispay] Sandbox not workingOther technical results from our tests: when using sandbox after checkout process it logs this PHP error:
PHP Notice: Undefined property: stdClass::$checkout_url in /home/cuneotrekking/public_html/wp-content/plugins/woo-satispay/wc-satispay.php on line 162
Given by:
return array( 'result' => 'success', 'redirect' => $checkout->callback_url );
At that point
$checkout
object is:stdClass Object ( [code] => 34 [message] => Unauthorized [wlt] => Gq8WGcNM )
And, as we can see, it doesn't contain the property
callback_url
.Why we are receiving an "Unauthorized" message having a correct bearer?
As a side note, plugin must check that
$checkout
does not contain an error and act as required giving a detailed error. At the moment it try to force a'result' => 'success'
without checking the contents of$checkout
.- This reply was modified 7 years, 4 months ago by Delite Studio.
- This reply was modified 7 years, 4 months ago by Delite Studio.
Hello,
please read our FAQs:
When I call an API the server returns 401 Invalid HTTP method. What should I do?
As outlined in the documentation some APIs must be called using the POST HTTP method (e.g. the Register API) and other using the GET HTTP method (e.g. the Posts API list). More info here.
If you are sure you have used the correct HTTP method be sure to check the settings of your web server. In particular, some users have reported that nginx has different URL mapping rules than Apache (see above).Forum: Plugins
In reply to: [Push Notifications for WordPress (Lite)] New Token Registration IssueHello,
are you sending the
oauth_consumer_key
parameter as specified in the RFC 5849? Please note the OAuth parameters must be added as query string parameters and not included in the Authorization header. This is because there is no reliable cross-platform way to get the raw request headers in WordPress.Hi,
from 4.1 onward our documentation describes REST API endpoints.
It explains the URL structure, the HTTP method and parameters it supports and gives you an example of HTTP request.
You need to make those HTTP requests on your application to connect to the remote server where you have installed our plugin.
This is a task that requires mobile and networking programming skills or you can use our iOS and Android libraries to do this stuff for you. Obviously you need some programming to integrate them in your application.
Hope it helps!
- This reply was modified 7 years, 9 months ago by Delite Studio.
Hello,
try to look at those FAQs:
My Android application is closed and I cannot receive notifications. What should I do?
and
When I send a test notifications everything works properly, while when I publish a post nothing is sent. What should I do?
Hope it helps.
Please read our FAQs as it has been already asked before:
When I send a notification from Firebase console everything works properly, while when I send them from the plugin nothing is received. What should I do?
Firebase uses Notification messages when our plugin uses Data messages.
With the Notification message Firebase automatically displays the message to end-user devices on behalf of the client app. With the Data message client app is responsible for processing data messages.More info in the official FCM documentation.
You can enable Notification messages in the Settings → Android → Firebase enabling Use the Notification message instead of the Data message.