numixtech
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Popup] Picture instead of title.Hi @jgaard,
Currently no facility to popped up always and image instead of title. We will be consider in next update.
Thanks.
Forum: Reviews
In reply to: [Page Transition] Almost perfectHello d2webdesigns,
I understood what you are saying. As you might know our wordpress plugin is using jquery plugin called “Animisition” made by blivesta. Would you please request this feature of pre-loading the second page on his github repository ? Here is the link – https://github.com/blivesta/animsition
Thanks.
Forum: Plugins
In reply to: [Page Transition] Dequeue StyleHello @letheos
That is because I am queuing css animistion using “wp_enqueue_scripts” hook action with less priority(1000) to include css at the very last.
Please add as per below code in your theme functions.php:
add_action( 'wp_enqueue_scripts', 'dequeue_page_transition_style', 1000 ); function dequeue_page_transition_style() { wp_dequeue_style('page-transition-animsition'); }
I hope this helps.
Thanks.
Forum: Plugins
In reply to: [Sticky Popup] something wrong after installForum: Plugins
In reply to: [Page Transition] Exclude certain pagesHello @csj89,
I’m sorry but currently this feature is not available with the plugin but we will surely try to implement it in next releases. Meanwhile please add following code to your theme functions.php to disable or exclude page transition on certain pages.
add_action( 'wp', 'exclude_page_transtion' ); function exclude_page_transtion() { if( is_home() || is_front_page() || is_singular( 'product' ) ) { if( class_exists( 'Page_Transition' ) ) { $page_transition = Page_Transition::get_instance(); remove_filter( 'wp_headers', array( $page_transition, 'add_ie_compatible_header' ) ); remove_action( 'wp_enqueue_scripts', array( $page_transition, 'enqueue_styles' ), 1000 ); remove_action( 'wp_enqueue_scripts', array( $page_transition, 'enqueue_scripts' ) ); remove_action( 'wp_head', array( $page_transition, 'head_scripts' ) ); remove_action( 'wp_footer', array( $page_transition, 'footer_scripts' ) ); remove_filter( 'body_class', array( $page_transition, 'body_class_names' ), 100 ); remove_action( 'wp_head', array( $page_transition, 'head_styles' ) ); } } }
This will disable transition on blog page, home static page and custom post type ‘product’ singles. Change ‘product’ in is_singular(‘product’) function to your custom post type.
Please let me if this help or not.
Thanks.
Forum: Plugins
In reply to: [Numix Post Slider] Onde colar o codigo shortcodeForum: Plugins
In reply to: [Numix Post Slider] keeps loading foreverHello @dhasilva,
We have checked and found your theme is using old jquery version 1.6. Our plugin requires to have at least jquery version 1.9. So please update your theme to include jquery version 1.9.
Updating jquery to 1.9 will fix your issue.
Thanks.
Forum: Plugins
In reply to: [Numix Post Slider] keeps loading foreverHi @dhasilva,
Can you please share a link so we can review site and let you know what is the issue.
Thanks
Forum: Plugins
In reply to: [Numix Post Slider] keeps loading foreverHi @dhasilva,
This is generally happens when there are jquery or javascript error can you please check. Let us know if there are still issue.
Thanks
Forum: Plugins
In reply to: [Page Transition] LoadingHello @jackhorror,
Yes you were right shiftnav and our plugin are conflicting due to priorities of appending elements to body with jquery.
To fix loading issue, please change one setting for shiftnav from Appearance -> Shiftnav and under General Settings tab uncheck the checkbox for option “Shift Body“.
This will fix loading issue but you may find one more issue that shiftnav menu part will not animate with page. It will stay at top and blink when page is loaded. To fix it please add following code at the end of your theme functions.php file.
add_action( 'wp_footer', 'shiftnav_element_move', 1000 ); function shiftnav_element_move() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $( '#shiftnav-toggle-main, #wpadminbar, .shiftnav' ).appendTo( '.animsition' ); }); </script> <?php }
I have tested this with free version of shiftnav plugin. I hope this helps.
Thanks.
Forum: Plugins
In reply to: [Sticky Popup] How to disable?Hi @gorillo,
We have added functionality to Enable and Disable Sticky Popup. Please update sticky popup plugin.
Forum: Plugins
In reply to: [Sticky Popup] How to disable?Hi @gorillo,
For disable plugin you have to deactivate plugin. We will be surely give this feature on next update.
Forum: Plugins
In reply to: [Sticky Popup] Popup Right Side Icon ProblemHi @diegocarc,
This seems to be hosting security setting which does not allow to save url of the image. To confirm just remove http and domain name from the url of the image and then try to save plugin setting if it works then its hosting issue so please contact hosting guys.
Thanks.
Forum: Plugins
In reply to: [Sticky Popup] Popup Right Side Icon ProblemHi @diegocarc,
Are you able to save setting without image ?
Forum: Plugins
In reply to: [Sticky Popup] Popup Right Side Icon ProblemHi @diegocarc,
Would you please check image is actually uploaded in media. you can check it in wp admin under Media->library.
We think it seems permission issue in uploads directory.
Thanks.