WP Theme Developers - WPTD
Forum Replies Created
-
Forum: Reviews
In reply to: [Image Before After Addon for Elementor - WPTD] The problem with the “After”Hi,
We fixed that issue. Check latest version.
Forum: Reviews
In reply to: [Video Popup for Elementor - WPTD] Great supportThank you. ??
Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] On Mobile Popup Not WorkingOkay.
Thank you.Hi Sir,
We checked Android mobile – Ms Edge browser
It’s works good. We released v1.5 now. Try that this may clear this issue.Thank you.
Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] Missing full screen video player functionHi,
We updated allowfullscreen option in v1.5
Thank you.
Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] Demo doesn’t workHi,
Actually we tested with https://app.lambdatest.com/
It’s working there perfect.
Thank you.Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] Need instructionsHi,
Now we added some instructions. Please check if you have any clarification about settings.
Thank you.Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] On Mobile Popup Not WorkingHi,
We solved this issue on v1.3. Please check now.
Thank you.Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] Changing button text stylingHi,
We are not provided any option to change button font family. Please make it with help of CSS.
Thank you.Forum: Plugins
In reply to: [Video Popup for Elementor - WPTD] Not working on mobile devices.Hi,
We checked your url into mobile. It’s working and this plugin is fully responsive support design and popup video too.
Thank you.Hi Everyone,
WordPress 5.5 Alpha color picker issue:
Updated solution here. Copy following code and paste into your child theme function file.if( is_admin() ){ add_action( 'wp_default_scripts', 'wp_default_custom_scripts' ); function wp_default_custom_scripts( $scripts ){ $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker.js", array( 'iris' ), false, 1 ); did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( 'clear' => __( 'Clear' ), 'clearAriaLabel' => __( 'Clear color' ), 'defaultString' => __( 'Default' ), 'defaultAriaLabel' => __( 'Select default color' ), 'pick' => __( 'Select Color' ), 'defaultLabel' => __( 'Color value' ), ) ); } }
- This reply was modified 4 years, 7 months ago by WP Theme Developers - WPTD.