averta support
Forum Replies Created
-
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] how delete genertor metaHi,
Thank you for choosing Master Slider.
Please add the following code to the function.php file in your theme:
/** * Make sure the function does not exist before defining it */ if( ! function_exists( 'msp_remove_class_filter' ) ){ function msp_remove_class_filter( $tag, $class_name = '', $method_name = '', $priority = 10 ) { global $wp_filter; // Check that filter actually exists first if ( ! isset( $wp_filter[ $tag ] ) ) { return FALSE; } if ( is_object( $wp_filter[ $tag ] ) && isset( $wp_filter[ $tag ]->callbacks ) ) { // Create $fob object from filter tag, to use below $fob = $wp_filter[ $tag ]; $callbacks = &$wp_filter[ $tag ]->callbacks; } else { $callbacks = &$wp_filter[ $tag ]; } // Exit if there aren't any callbacks for specified priority if ( ! isset( $callbacks[ $priority ] ) || empty( $callbacks[ $priority ] ) ) { return FALSE; } // Loop through each filter for the specified priority, looking for our class & method foreach ( (array) $callbacks[ $priority ] as $filter_id => $filter ) { // Filter should always be an array - array( $this, 'method' ), if not goto next if ( ! isset( $filter['function'] ) || ! is_array( $filter['function'] ) ) { continue; } // If first value in array is not an object, it can't be a class if ( ! is_object( $filter['function'][0] ) ) { continue; } // Method doesn't match the one we're looking for, goto next if ( $filter['function'][1] !== $method_name ) { continue; } // Method matched, now let's check the Class if ( get_class( $filter['function'][0] ) === $class_name ) { // WordPress 4.7+ use core remove_filter() since we found the class object if ( isset( $fob ) ) { // Handles removing filter, reseting callback priority keys mid-iteration, etc. $fob->remove_filter( $tag, $filter['function'], $priority ); } else { // Use legacy removal process (pre 4.7) unset( $callbacks[ $priority ][ $filter_id ] ); // and if it was the only filter in that priority, unset that priority if ( empty( $callbacks[ $priority ] ) ) { unset( $callbacks[ $priority ] ); } // and if the only filter for that tag, set the tag to an empty array if ( empty( $callbacks ) ) { $callbacks = array(); } // Remove this filter from merged_filters, which specifies if filters have been sorted unset( $GLOBALS['merged_filters'][ $tag ] ); } return TRUE; } } return FALSE; } } add_action( 'plugins_loaded', function(){ msp_remove_class_filter( 'wp_head', 'MSP_Frontend_Assets', 'meta_generator' ); });Let me know the result.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] No Text Layer Transition?Hi,
Thank you for choosing Master Slider.
You can change the sliding speed by increasing/decreasing transition speed:
http://support.averta.net/en/wp-content/uploads/Transition_speed.jpgIf you need any further information, please let me know.
Have a great weekend.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Not all thumbnails are loadingHi,
Thank you for choosing Master Slider.
Make sure the thumbnails option is enabled. Because we couldn’t find the thumbnails’ markup on your page.
If you need any further information, please let me know.
Have a great weekend.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Caption not showing on slideHi,
Thank you for choosing Master Slider.
Make sure you added slide info from slider controls.
Please check out this documentation: http://docs.averta.net/display/mswpdoc/Slide+Info.+ControlIf you need any further information, please let me know.
Have a great weekend.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Real Media Library compatibilityHi Matthew,
Thank you for choosing Master Slider.
You can generate the slider based on this markup:
http://docs.averta.net/display/MSJQIf you need any further information, please let me know.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Layers do not appear togetherHi,
Thank you for choosing Master Slider.
Could you please provide me with more details? I didn’t see any problem on the link you sent.
Also, there is a JS error on your page. Maybe the problem is caused by that.
Please fix it, then let us know.Looking forward to hearing from you.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] First two slides not loadingHi,
Thank you for choosing Master Slider.
I checked out your link and there was no problem.
I guess Lazyloading option on your Jetpack plugin is enable. Please disable it.
We don’t have Master Slider on Gutenberg, however, you can use shortcode.
If you need any further information, please let me know.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] No APIs foundHi,
Unfortunately, we won’t add it soon. We have a plan to add it on our major update and I cannot estimate an exact time for that.
Have a great weekend.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] No APIs foundHi again,
It is not possible on Master Slider. It doesn’t have Rest API.
Best,
Hi,
Thank you for choosing Master Slider.
It is not possible to have images with different widths on current version of Master Slider.
If you need any further information, please let me know.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Thumbnails not showingHi,
Thank you for using Master Slider.
I can see them and they are loaded for me without refreshing the page:
http://support.averta.net/en/wp-content/uploads/thumbs-1.pngIf you need any further information, please let me know.
Best,
Hi Victor,
Thank you for choosing Master Slider.
Please check out your media library and make sure all the images are there.
Then create another slider and see how it works.
Also, you can save again your current slider and update it to see whether the problem persists or not.Let me know the result.
Best,
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Lightbox zoom layerHi,
Thank you for choosing Master Slider.
There is no option to do that. You can add lightbox if you want, by checking out the below documentation:
http://docs.averta.net/display/mswpdoc/Using+Lightbox+in+Master+SliderIf you need any further information, please let me know.
Best,
Hi,
Thank you for choosing Master Slider.
No it is not possible to do that and you need to add them manually.
If you need any further information, please let me know.
Best,
Hi,
Thank you for using Master Slider.
Do you still have problem? Because the slider on the link you sent, works fine for me.
Let me know.
Best,