Hi, I have "Advanced Category Excluder" addin installed and when I activate Advanced Content Pagination Pro it hides Advanced Category Excluder icon so I cant use it.
Any help figuring this out would be great
Hi,
We're on vacation now, we'll be back on 17.08 and fix this issue, we apologize for the delay and any inconvenience this may have caused you.
Thank you for your understanding
Artyom
Enjoy, 🙂
were you able to recreate issue?
Hi Greg,
We apologize for late response. We’re sorry that it cases any inconvenience, we just back from vacation.
There are two ways in order fix the issue you mentioned, you need to open the
“Advanced Content Pagination Pro” plugin’s “acp.php” file 43th string and change this:
add_action('admin_menu', array(&$this, 'add_plugin_options_page'));
to
add_action('admin_menu', array(&$this, 'add_plugin_options_page'),-1);
Or, open the “Advanced Category Excluder” plugin’s “advanced-category-excluder.php” file, 504th string and make this changes:
add_action('admin_menu', 'ace_adminmenu');
to
add_action('admin_menu', 'ace_adminmenu',99);
Thank you for using our services.
Hi, after applying the fix to ACE add_action(‘admin_menu’, ‘ace_adminmenu’,99); the visual eit post screen icon for your app is gone ?
is there other code i can fix to bring it back
Hi Greg,
Could you please send an Admin access to your Dashboard again? Please use support[at]gvectors.com email address.
We'll fix it from your dashboard.
Just found the problem. The Advanced Content Pagination Pro works fine and this problem comes from other plugin.
We spent about two days and found, that the "Advanced Category Excluder" plugin also doesn't have any relation to this issue. This problem comes from "WP E-Signature Signer Input Fields" plugin. It use TinyMCE filter hooks without setting priority and makes a lot of conflicts with other plugin icons, not only with ACP.
The problem in this file: esig-signer-input-fields/admin/esig-sif-admin.php
In this code:
add_filter( "mce_external_plugins", array($this, "sif_add_buttons") ); add_filter( 'mce_buttons', array($this, 'sif_register_buttons') );
As you understand we don't support third party problems, however we added small change in this code and all works fine now. But this change will be lost once you update this plugin in future.
Thank you for the hard work, i have big plans for your addin 🙂