wpdevart
Forum Replies Created
-
Hi @jainmonish01.
What version of our plugin are you using?
By the way, our plugin cannot redirect to another page if you have not made a booking request. This issue may be related to another plugin or theme.
Thanks.
Forum: Plugins
In reply to: [Booking calendar, Appointment Booking System] Booking Calendar paymentHi @persivalus.
Unfortunately, we are unable to add these features at the moment. We’ll add it to the To-Do List, but we can’t say yet when or if we’ll add these features.
Thanks.
Hi @nickdd.
One more thing, could you install version 3.2.5 and check if the problem exists in this version? You can download it from here – https://downloads.wp.xz.cn/plugin/booking-calendar.3.2.5.zip.
Thanks.
- This reply was modified 3 years, 3 months ago by wpdevart.
Forum: Plugins
In reply to: [Social comments by WpDevArt] Social comment not workHi.
We think this is a Facebook API issue. Our plugin only inserts an iframe, so there can be no problem from the plugin side. The FB Comments API sometimes doesn’t work and the reason is the API, unfortunately, we don’t have permission to check or fix it.
Thanks
Hi .
Can you remember if this problem occurred after updating the plugin?
In this case, we didn’t change anything, so we need the details.
Thanks.
Forum: Plugins
In reply to: [Countdown Timer - Widget Countdown] PHP 8.0 / 8.1 Fatal ErrorsHi @aberinger.
Since you are using the premium version, we must provide future support via email. Contact us at [email protected] and we will send you a new version.
We will close this topic, please use our email for future support.
Thanks.
Forum: Plugins
In reply to: [Countdown Timer - Widget Countdown] PHP 8.0 / 8.1 Fatal ErrorsHi @aberinger.
Okay, we will check it.
By the way, can you tell us what version of our plugin are you using?
Thanks.
Hi @bengenu.
Thanks for sharing the link. We can’t customize the code at the moment, but we’ll check if it’s better to add a comma as a decimal separator in the future.
Have a nice day.
Hi @coenieolivier.
You also contacted us via email and we have already replied to you. We will close this topic, but if you have other questions, you can contact us again.
Thnaks.
Forum: Plugins
In reply to: [Countdown Timer - Widget Countdown] Conflict with Gravity FormsHi.
Since you did not answer, we will close this topic.
Thanks.
Hi @bengenu.
We have tested the plugin, and this is not a global problem. Can you tell when you noticed this problem and if it worked correctly in the past?
Thanks.
Hi @rewalapartament.
We have already contacted you via email and since you are on the premium version we should provide future support via email. We will close this topic, but you can contact us at [email protected] if you have any other questions.
Thanks.
Forum: Plugins
In reply to: [Organization chart] Zoom out on load to show full chartHi @mooiwurk.
First of all, we forgot that the zoom option is only available in the premium version, so after the answer, we will close this topic, because we have to provide support for the premium version via email. If you have any other questions, you can contact us at [email protected].
Here is the solution. At the moment we cannot change the global version of the plugin, but you can use this custom code.
Open this file – wpdevart_chart_premium/front/js/front_js.js
Then find the code between lines 114-120. The code is following –
let options = { maxScale: parseFloat( self.options.max_zoomable ), maxZoom: parseFloat( self.options.max_zoomable ), minScale: parseFloat( 1 / self.options.min_zoomable ), minZoom: parseFloat( 1 / self.options.min_zoomable ), step: 0.01 * parseFloat( self.options.zoom_speed ), }Change this code and add this code startScale: 0.8, before the “}”. The final code should look like this –
let options = { maxScale: parseFloat( self.options.max_zoomable ), maxZoom: parseFloat( self.options.max_zoomable ), minScale: parseFloat( 1 / self.options.min_zoomable ), minZoom: parseFloat( 1 / self.options.min_zoomable ), step: 0.01 * parseFloat( self.options.zoom_speed ), startScale: 0.8, }Before checking, clear the cache of the site and browser.
Thanks.