Title: arturino's Replies | WordPress.org

---

# arturino

  [  ](https://wordpress.org/support/users/arturdesign2devcom/)

 *   [Profile](https://wordpress.org/support/users/arturdesign2devcom/)
 *   [Topics Started](https://wordpress.org/support/users/arturdesign2devcom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/arturdesign2devcom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/arturdesign2devcom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/arturdesign2devcom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/arturdesign2devcom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/arturdesign2devcom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Table of Contents] Default Selected Heading/Link is incorrect](https://wordpress.org/support/topic/default-selected-heading-link-is-incorrect/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [11 months ago](https://wordpress.org/support/topic/default-selected-heading-link-is-incorrect/#post-18512591)
 * wonderful. thanks so much.
 * Moderator note: signature moderated [https://wordpress.org/support/guidelines/#do-not-spam](https://wordpress.org/support/guidelines/#do-not-spam)
    -  This reply was modified 11 months ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Table of Contents] Default Selected Heading/Link is incorrect](https://wordpress.org/support/topic/default-selected-heading-link-is-incorrect/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [11 months ago](https://wordpress.org/support/topic/default-selected-heading-link-is-incorrect/#post-18506367)
 * Hi Akshay, I tested with a default theme and it didnt even show up.
   But i DID
   roll back to vrs **2.0.7`2`** — AND IT WORKED!see demo:[https://stg-visualsitemapscom-stagingvsm.kinsta.cloud/resources/website-planning-information-architecture-tips-and-tools/#Introduction](https://stg-visualsitemapscom-stagingvsm.kinsta.cloud/resources/website-planning-information-architecture-tips-and-tools/#Introduction)
   vrs **2.0.7**`3` exposed a different scrolling bug where it hijacked the main
   scrollbar and didnt even let me scrolldown the page. So this apparently is a 
   bug on your side. I’m using a VERY solid and popular theme which you should support
   in theory. [https://undsgn.com/uncode/](https://undsgn.com/uncode/)Can you test
   it with this theme and stabilize it? thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pixel Caffeine] Plugin is breaking my Carousel](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/#post-12933365)
 * `<?php
    /* * Plugin Name: Remove Hook From Pxel Plugin * Description: Remove 
   hook from the pixel plugin * Version: 1.0.0 * Author: Kevin * Requires at least:
   5.0.0 * Tested up to: 5.4.0 * WC requires at least: 3.3.0 * WC tested up to: 
   3.4.4 * Text Domain: remove-hook-from-pixel * Domain Path: /languages/ * License:
   GNU General Public License v3.0 * License URI: [http://www.gnu.org/licenses/gpl-3.0.html](http://www.gnu.org/licenses/gpl-3.0.html)*/
 * function remove_filters_with_method_name( $hook_name = ”, $method_name = ”, $
   priority = 0 ) {
    global $wp_filter;
 *  // Take only filters on right hook name and priority
    if ( ! isset( $wp_filter[
   $hook_name ][ $priority ] ) || ! is_array( $wp_filter[ $hook_name ][ $priority])){
   return false; }
 *  // Loop on filters registered
    foreach ( (array) $wp_filter[ $hook_name ][ $
   priority ] as $unique_id => $filter_array ) { // Test if filter is an array !(
   always for class/method) if ( isset( $filter_array[‘function’] ) && is_array(
   $filter_array[‘function’] ) ) { // Test if object is a class and method is equal
   to param ! if ( is_object( $filter_array[‘function’][0] ) && get_class( $filter_array[‘
   function’][0] ) && $filter_array[‘function’][1] == $method_name ) { // Test for
   WordPress >= 4.7 WP_Hook class ([https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/](https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/))
   if ( is_a( $wp_filter[ $hook_name ], ‘WP_Hook’ ) ) { unset( $wp_filter[ $hook_name]-
   >callbacks[ $priority ][ $unique_id ] ); } else { unset( $wp_filter[ $hook_name][
   $priority ][ $unique_id ] ); } } }
 *  }
 *  return false;
    }
 * /**
    * Allow to remove method for an hook when, it’s a class method used and 
   class don’t have variable, but you know the class name 🙂 */ function remove_filters_for_anonymous_class(
   $hook_name = ”, $class_name = ”, $method_name = ”, $priority = 0 ) { global $
   wp_filter;
 *  // Take only filters on right hook name and priority
    if ( ! isset( $wp_filter[
   $hook_name ][ $priority ] ) || ! is_array( $wp_filter[ $hook_name ][ $priority])){
   return false; }
 *  // Loop on filters registered
    foreach ( (array) $wp_filter[ $hook_name ][ $
   priority ] as $unique_id => $filter_array ) { // Test if filter is an array !(
   always for class/method) if ( isset( $filter_array[‘function’] ) && is_array(
   $filter_array[‘function’] ) ) { // Test if object is a class, class and method
   is equal to param ! if ( is_object( $filter_array[‘function’][0] ) && get_class(
   $filter_array[‘function’][0] ) && get_class( $filter_array[‘function’][0] ) =
   = $class_name && $filter_array[‘function’][1] == $method_name ) {
 *  if ( is_a( $wp_filter[ $hook_name ], ‘WP_Hook’ ) ) {
    unset( $wp_filter[ $hook_name]-
   >callbacks[ $priority ][ $unique_id ] ); } else { unset( $wp_filter[ $hook_name][
   $priority ][ $unique_id ] ); } } }
 *  }
 *  return false;
    }
 * add_action(‘wp_head’, function() {
 *  remove_filters_for_anonymous_class( ‘woocommerce_after_shop_loop_item’, ‘AEPC_Woocommerce_Addon_Support’,‘
   add_content_category_meta’, 99 );
 *  if ( class_exists(‘AEPC_Woocommerce_Addon_Support’) ) {
 *  $object = new AEPC_Woocommerce_Addon_Support();
 *  add_action( ‘woocommerce_after_shop_loop_item_title’, array( $object, ‘add_content_category_meta’),
   99 );
    } });
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pixel Caffeine] Plugin is breaking my Carousel](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/#post-12922204)
 * hi Antonino, i had to hire a developer to make custom add-on plugin to remove
   this filter, so that any future updates of your plugin would not require more
   manual work. thanks for the followup
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pixel Caffeine] Plugin is breaking my Carousel](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [6 years ago](https://wordpress.org/support/topic/plugin-is-breaking-my-carousel/#post-12826749)
 * hi i found your issue:
 * I see they append your code to the hook “woocommerce_after_shop_loop_item”.
 * Is there is a way to append your code to a different hook instead, maybe with
   a filter, to avoid this kind of issues.
 * I think that if you appended your code to “woocommerce_after_shop_loop_item_title”
   hook that would fix my and many other’s issue.
 * thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Downgrading from 4.01 > 3.9.3](https://wordpress.org/support/topic/downgrading-from-4-01-3-9-3/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [6 years ago](https://wordpress.org/support/topic/downgrading-from-4-01-3-9-3/#post-12761731)
 * Ryan ive had others just tell me that when i upgrade, the DB structures actually
   change: [https://woocommercecommunity.slack.com/archives/C1KAZ91E3/p1588167045468200?thread_ts=1588147734.425500&cid=C1KAZ91E3](https://woocommercecommunity.slack.com/archives/C1KAZ91E3/p1588167045468200?thread_ts=1588147734.425500&cid=C1KAZ91E3)
 * which makes sense since the plugin warned me of it when i decided to upgrade.
 * cheers
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JetBackup - Backup, Restore & Migrate] Backup Fails – No Errors Showing](https://wordpress.org/support/topic/backup-fails-no-errors-showing/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/backup-fails-no-errors-showing/#post-12560585)
 * i tried deleting and reinstalling. that didnt work.
    and no im not touching my
   DB. i ended up installing another plugin that worked. thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider, Gallery, and Carousel by MetaSlider - Image Slider, Video Slider] Carousel > Equal Height Possible??](https://wordpress.org/support/topic/carousel-equal-height-possible/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [8 years ago](https://wordpress.org/support/topic/carousel-equal-height-possible/#post-10259419)
 * sadly i will need to get my developer involved for this. will let you know the
   outcome! this helps though! thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider, Gallery, and Carousel by MetaSlider - Image Slider, Video Slider] Carousel > Equal Height Possible??](https://wordpress.org/support/topic/carousel-equal-height-possible/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [8 years ago](https://wordpress.org/support/topic/carousel-equal-height-possible/#post-10258939)
 * thanks for the tip.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bug Importing Posts : Draft Dates Are All Reset](https://wordpress.org/support/topic/bug-exporting-posts-date-is-reset/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/bug-exporting-posts-date-is-reset/#post-9346713)
 * Thanks for the tips..
 * 1. YES – im using the native WP xml export/import.
    2. The XML Export dates are
   correct.
 * However they are using this **<wp:post_date>**tag:
    `<wp:post_date><![CDATA[<
   strong>2017-07-12</strong> 13:15:48]]></wp:post_date>`
 * However the Creation date seems to be wrong : `<pubDate>Thu, 01 Jan 1970 00:00:
   00 +0000</pubDate>`
 * The import date for this post ended up being: `2017-07-19`
 * Could this be because it asked me to re-assign the Author’s of the posts??
    Which
   i had to do, otherwise it would have made a new Author user or assign it to the
   Admin.
 * Btw, the users in the new site..are exactly the same!
    yet is asked me to re-
   assign all of them.
 * thanks
    -  This reply was modified 8 years, 9 months ago by [arturino](https://wordpress.org/support/users/arturdesign2devcom/).
    -  This reply was modified 8 years, 9 months ago by [arturino](https://wordpress.org/support/users/arturdesign2devcom/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp List Subscribe Form] !!! Fatal Error](https://wordpress.org/support/topic/fatal-error-2382/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-2382/#post-8581707)
 * php v 5.5.13
    Uncode theme : [http://www.undsgn.com/uncode/documentation/](http://www.undsgn.com/uncode/documentation/)
   plgins: [https://www.evernote.com/l/AIHqidYr70NOvLL0UhRKgfItNrybwL8Mc0gB/image.png](https://www.evernote.com/l/AIHqidYr70NOvLL0UhRKgfItNrybwL8Mc0gB/image.png)
 * site: 1.iotprivacyforum.org
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] Support for Conditional Fields?](https://wordpress.org/support/topic/support-for-conditional-fields/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/support-for-conditional-fields/#post-6690129)
 * ok great to hear that.
    if you can just paste the code deets here.. my dev can
   implement it.
 * and thanks for the FAST feedback!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] "Field Required" option on Interest Groups field not work](https://wordpress.org/support/topic/field-required-option-on-interest-groups-field-not-work/)
 *  [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/field-required-option-on-interest-groups-field-not-work/#post-6669512)
 * i need this too asap. thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Frisco for BuddyPress] [Theme: Frisco for BuddyPress] :: Frisco in Action??](https://wordpress.org/support/topic/theme-frisco-for-buddypress-frisco-in-action/)
 *  Thread Starter [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-frisco-for-buddypress-frisco-in-action/#post-2611104)
 * yes the WP blog and pages. ( a full looking site + SN capabilities )
    thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] [Plugin: WP e-Commerce] WP-E-commerce – Do Not Use This](https://wordpress.org/support/topic/plugin-wp-e-commerce-wp-e-commerce-do-not-use-this/)
 *  [arturino](https://wordpress.org/support/users/arturdesign2devcom/)
 * (@arturdesign2devcom)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-wp-e-commerce-wp-e-commerce-do-not-use-this/#post-2305171)
 * [@jean](https://wordpress.org/support/users/jean/) just curious which version
   did you test.
    i heard some reports that their latest version is becoming stable..
   if not do you recommend Shopp or JigoShop?
 * thanks for your post! helps to know 😉

Viewing 15 replies - 1 through 15 (of 15 total)