• Resolved CrazySerb

    (@crazyserb)


    Latest version just broke compatibility with “YITH WooCommerce Customize My Account Page” plugin, which attaches to shortcode [woocommerce_my_account] on a specific account page to display additional content.

    Can you fix whatever you added/changed since the version 1.9.82.2 that is causing this?

    Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Magazine3

    (@magazine3)

    Can you please help us to re-create the issue? So that we will re-create it at our end and get back to you accordingly. For that, We need some setup details. Can you please share some screengrabs of your setup to re-create the issue?

    Thread Starter CrazySerb

    (@crazyserb)

    @magazine3 Sure. Contact YITH developers, ask for a copy of that plugin I linked for development purposes, tell them that your plugin is somehow interfering with their plugin’s functionality (quote support ticket #204412 from their system, as they are aware of this issue as well), install the plugin on your end and troubleshoot it from there… as no amount of screenshots or setup details from my end will help you out with troubleshooting this otherwise.

    Thanks.

    Plugin Author Magazine3

    (@magazine3)

    Thanks for letting us know a bit clear. We will re-create it from our end and get back to you shortly.

    Thread Starter CrazySerb

    (@crazyserb)

    @magazine3 YITH support guys found the issue in your plugin:

    I found the issue, it’s due to a function in the plugin Schema & Structured Data for WP & AMP.
    In order to prevent it I needed add a filter at following path
    wp-content\plugins\schema-and-structured-data-for-wp\admin_section\structure_admin.php on line 764:

    return apply_filters( 'saswp_filter_comparison_logic_checker', $result );

    Then I added following code in the file functions.php of your theme.

    /* Prevent conflict YITH Customize My Account and Schema & Structured Data for WP & AMP */
    add_filter( 'saswp_filter_comparison_logic_checker', 'yith_wcmap_disable_plugin_on_account_page' );
    
    if( !function_exists( 'yith_wcmap_disable_plugin_on_account_page' ) ){
     function yith_wcmap_disable_plugin_on_account_page( $allow ){
      if( function_exists( 'is_account_page' ) && is_account_page() ){
          $allow = false;
      }
      return $allow;
     }
    }

    Hope that helps.

    Plugin Author Magazine3

    (@magazine3)

    For this, We have raised a GitHub ticket in our repository. Our developer will work on it and add the code in the next update to avoid conflict.

    You can also track the working flow of the ticket in the below link:
    https://github.com/ahmedkaludi/schema-and-structured-data-for-wp/issues/1507

    Plugin Author Magazine3

    (@magazine3)

    Our developer has been fixed the issue in our latest update. Can you please check it once by updating the plugin to the latest and see if it fixes the issue?

    Thread Starter CrazySerb

    (@crazyserb)

    @magazine3 yes, I can confirm that this has been fixed now.

    Plugin Author Magazine3

    (@magazine3)

    Glad to hear it. If you have any other queries or issues, Please create a new topic.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Latest version v1.9.83 broke YITH Plugins / Shortcodes’ is closed to new replies.