ACF Recent Posts Widget: You seem to have ACF disabled, some plugin functionalities are disabled.', 'acf_rpw' ); ?>

ACF Recent Posts Widget: Survey

Why the admin page?

Hello folks! We've been really glad with the reception of the plugin and its amount of active installs.
The plugin's development has been in a blank spot since three months, so we'd like to get some input.

Why the survey?

Since we run out of the ideas on where to go from now on we'd like to hear your feedback and complete
the online survey we have created which will help us out in undertanding your further needs.

We'd like to ask you to visit our page: http://wp-doin.com/2015/10/21/acf-recent-posts-widget-survey/ and complete the short survey for us.

FAQ & Thanks

The survey is non-compulsory and doesn't require you to take a look at it at all.

  1. We'll only collect anonymous data
  2. We're not going to charge your or force you to take any further steps
  3. We'd love to know what you think
  4. We want to satisfy your needs

Kindest Regards,
Rafał Gicgier
WP doin CEO

admin_pointers_check() ) { add_action( 'admin_print_footer_scripts', array( $this, 'acf_rpw_admin_pointers_footer' ) ); wp_enqueue_script( 'wp-pointer' ); wp_enqueue_style( 'wp-pointer' ); } } /** * Add admin ACF RPW pointers * @return boolean */ public function admin_pointers_check() { $admin_pointers = $this->acf_rpw_custom_admin_pointers(); foreach ( $admin_pointers as $pointer => $array ) { if ( $array['active'] ) return true; } } /** * Add ACF RPW pointers scripts to the footer */ function acf_rpw_admin_pointers_footer() { $admin_pointers = $this->acf_rpw_custom_admin_pointers(); ?> ' . __( 'ACF RPW settings' ) . ''; $new_pointer_content .= '

' . __( 'If interested fill in a short survey to decide on the further ACF RPW develpoment.' ) . '

'; return array( $prefix . 'new_items' => array( 'content' => $new_pointer_content, 'anchor_id' => '#toplevel_page_acf-rpw-settings', 'edge' => 'top', 'align' => 'top', 'active' => (!in_array( $prefix . 'new_items', $dismissed ) ) ), ); } /** * @hook init */ public function load_plugin_textdomain() { $domain = 'acf_rpw'; $locale = apply_filters( 'plugin_locale', get_locale(), $domain ); load_textdomain( $domain, WP_LANG_DIR . '/' . $domain . '/' . $domain . '-' . $locale . '.mo' ); load_plugin_textdomain( $domain, FALSE, basename( dirname( __FILE__ ) ) . '/lang/' ); } } // instantiate the plugin $acf_rpw = new ACF_Recent_Posts_Widget();