Plugin Directory

Changeset 3322051


Ignore:
Timestamp:
07/04/2025 12:10:39 AM (9 months ago)
Author:
etruel
Message:

Avoid plugin conflicts with other plugin on simple functions – update now!

Location:
wpematico
Files:
158 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpematico/trunk/app/plugin_functions.php

    r3316606 r3322051  
    2323add_action( "after_plugin_row_" . WPEMATICO_BASENAME, 'wpematico_update_row', 10, 2 );
    2424add_action( 'admin_head', 'WPeMatico_plugins_admin_head' );
    25 add_action('admin_footer', 'admin_footer');
    26 add_action('admin_print_styles-plugins.php', 'admin_styles');
    27 add_action('admin_print_styles-plugins.php', 'admin_styles');
    28 add_action('wp_ajax_handle_feedback_submission', 'handle_feedback_submission');
    29 
    30 
    31 function admin_styles() {
     25add_action('admin_footer', 'wff_admin_footer');
     26add_action('admin_print_styles-plugins.php', 'wff_admin_styles');
     27add_action('wp_ajax_handle_feedback_submission', 'wff_handle_feedback_submission');
     28
     29
     30function wff_admin_styles() {
    3231    global $pagenow, $page_hook;
    3332    if($pagenow=='plugins.php' && !isset($_GET['page'])){
     
    3837}
    3938
    40 function admin_footer(){
     39function wff_admin_footer(){
    4140    global $pagenow, $page_hook;
    4241
     
    185184    }
    186185}
    187 function handle_feedback_submission() {
     186function wff_handle_feedback_submission() {
    188187    // Check if the user has permission to deactivate plugins
    189188    if (!current_user_can('activate_plugins')) {
  • wpematico/trunk/readme.txt

    r3316606 r3322051  
    244244> See all detailed changelog at [WPeMatico Releases](https://wpematico.com/releases/)
    245245
     246= 2.8.7 – Jul 3, 2025 =
     247
     248* Refactored few missed internal function names with a prefix to avoid naming conflicts with other plugins.
     249
    246250= 2.8.6 – Jun 21, 2025 =
    247251
    248 * 🛠️ **New Debug Logs Tool!** Easily track what’s happening under the hood of WPeMatico with a dedicated log viewer in the Tools menu. Perfect for developers and advanced users. [Learn how to use it.](https://etruel.com/question/how-to-use-wpematico-log/)
    249 * Implemented **WP_Filesystem** for safer and more WordPress-compliant file operations.
     252* **New Debug Logs Tool!** Easily track what’s happening under the hood of WPeMatico with a dedicated log viewer in the Tools menu. Perfect for developers and advanced users. [Learn how to use it.](https://etruel.com/question/how-to-use-wpematico-log/)
     253* Implemented **WP_Filesystem** for safer and more WordPress-compliant file operations.
    250254
    251255= 2.8.5 May 19, 2025 =
     
    461465== Upgrade Notice ==
    462466
    463 Recommended update: New debug logs tool added for developers and advanced users. Includes safer file handling via WP_Filesystem.
     467Avoid plugin conflicts – update now!
  • wpematico/trunk/wpematico.php

    r3316606 r3322051  
    44 * Plugin URI: https://www.wpematico.com
    55 * Description: Create posts automatically from RSS/Atom feeds organized into campaigns with multiples filters.  If you like it, please rate it 5 stars.
    6  * Version: 2.8.6
     6 * Version: 2.8.7
    77
    88 * Author: Etruel Developments LLC
     
    2929        private function setup_constants() {
    3030            if (!defined('WPEMATICO_VERSION'))
    31                 define('WPEMATICO_VERSION', '2.8.6');
    32    
     31                define('WPEMATICO_VERSION', '2.8.7');
     32
    3333            if (!defined('WPEMATICO_BASENAME'))
    3434                define('WPEMATICO_BASENAME', plugin_basename(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.