Title: pixelrush's Replies | WordPress.org

---

# pixelrush

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Shopping Feed Not Updating with Latest Prices](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/#post-13443704)
 * Actually, i switched it to twice daily to run, turned the feed off and on and
   then tried again and now it appears to be updating. Can you confirm in the logs
   again? Many thanks for your help and pointing me in the right direction.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Shopping Feed Not Updating with Latest Prices](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/#post-13443539)
 * I can see there is an area on the hosting for Cron jobs, but there seems to be
   one in there but it’s not for your plugin. Is there anyway I could manually create
   it maybe? Do you have any instructions for what I might need to add in there?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Shopping Feed Not Updating with Latest Prices](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/shopping-feed-not-updating-with-latest-prices/#post-13443507)
 * Ok that’s interesting. I just de-activated it and re-activated it. Still seems
   the same. I wonder, could this be something to do with the hosting in terms of
   allowing cron jobs? I know the client did move hosting at one stage and it didn’t
   seem like the traditional hosting and seemed a bit more complicated than that.
   Can I investigate on the hosting and should I expect to see cron jobs in cpanel
   for example?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPMR Google Feed Manager for WooCommerce – Sell on Google Merchant Center & Shopping] How to Strip Out Visual Composer Data](https://wordpress.org/support/topic/how-to-strip-out-visual-composer-data/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/how-to-strip-out-visual-composer-data/#post-10762537)
 * Looks like the updated regex has worked. `"/\[(\/*)?vc_(.*?)\]/"`
 * [https://www.all4furnishings.com.au/wp-content/uploads/wppfm-feeds/Products.xml](https://www.all4furnishings.com.au/wp-content/uploads/wppfm-feeds/Products.xml)
 * Many thanks for your help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPMR Google Feed Manager for WooCommerce – Sell on Google Merchant Center & Shopping] How to Strip Out Visual Composer Data](https://wordpress.org/support/topic/how-to-strip-out-visual-composer-data/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/how-to-strip-out-visual-composer-data/#post-10762005)
 * Hi Michael,
 * Thanks for quick response.
 * I followed the article, I’m using a child theme, and added the code to the functions.
   php child file.
 * Here is my xml file – [https://www.all4furnishings.com.au/wp-content/uploads/wppfm-feeds/Products.xml](https://www.all4furnishings.com.au/wp-content/uploads/wppfm-feeds/Products.xml)
 * This is my functions file
 * <?php
 * add_action( ‘wp_enqueue_scripts’, ‘basel_child_enqueue_styles’, 1000 );
 * function basel_child_enqueue_styles() {
    $version = basel_get_theme_info( ‘Version’);
 *  if( basel_get_opt( ‘minified_css’ ) ) {
    wp_enqueue_style( ‘basel-style’, get_template_directory_uri().‘/
   style.min.css’, array(‘bootstrap’), $version ); } else { wp_enqueue_style( ‘basel-
   style’, get_template_directory_uri() . ‘/style.css’, array(‘bootstrap’), $version);}
 *  wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’,
   array(‘bootstrap’), $version );
    }
 * function alter_feed_item( $attributes, $feed_id, $product_id ) {
 *  // The $attributes variable is an array that contains all the product data that
   goes into the feed. Each item
    // can be accessed by it’s feed key. So if in 
   the feed file an item has a key like ‘description’, you // can access that specific
   item by $attributes[‘description’]. // The $feed_id (string) makes it possible
   to only edit a specific feed. You can find the id of a feed in the // url of 
   the Feed Editor, right after id=. // The $product_id (string) makes it possible
   to select a specific product id that you want to filter.
 *  // or you can just make a simple change that will influence all feeds
    // If
   you have shortcodes in your product description you can remove them with het 
   next code // Remove WordPress shortcodes from Description $attributes[‘description’]
   = strip_shortcodes( $attributes[‘description’] );
 *  // If you use VIdual Composer markup in your product descrioptions you can remove
   Visual Composer markup with the next code.
    $attributes[‘description’] = preg_replace(“
   ~(?:\[/?)[^/\]]+/?\]~s”, ”, $attributes[‘description’] );
 *  // IMPORTANT! Always return the $attributes
    return $attributes; }
 * add_filter( ‘wppfm_feed_item_value’, ‘alter_feed_item’, 10, 3 );
 * But it’s still not working, what have I missed here?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Conversios: Google Analytics (GA4), Google Ads, Conversion and Analytics Tracking for Multi-Channels] Ecommerce Tracking Not Sending Transaction Data to GA](https://wordpress.org/support/topic/ecommerce-tracking-not-sending-transaction-data-to-ga/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/ecommerce-tracking-not-sending-transaction-data-to-ga/#post-10272293)
 * Hi There,
 * Thanks for quick response.
 * I’ve giving you view access read only, please let me know if you need more.
 * I’ve done a test today with credit card which is using square and it goes through
   to the confirmation page
 * The url I generated was – [https://www.mknordika.com.au/checkout/order-received/3496/?key=wc_order_5af64dd69fb72](https://www.mknordika.com.au/checkout/order-received/3496/?key=wc_order_5af64dd69fb72)
 * The other two merchants are afterpay and paypal, paypal has been working in the
   past but i’ll get my client to check the auto return again. As for afterpay I’m
   not quite sure how the return works in that so I’ll double check that also.
 * Either way, this credit card transaction should work so I’ll check it again later
   today and if that works then we’ll at least know it might be some kind of auto
   return issue we’re having.
 * Appreciate your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] Minifying HTML](https://wordpress.org/support/topic/minifying-html/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/minifying-html/#post-9168886)
 * Selecting notify me of follow up replies, forgot to select it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] WP Fastest Cache + Instagram Feed](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/#post-8412387)
 * Thanks for the response. I appreciate you taking the time to look into it.
 * Do you think there is anything we can do or it’s something that is part of the
   instagram API?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] Wp Fastest Cache / Safari Iphone Issues](https://wordpress.org/support/topic/wp-fastest-cache-safari-iphone-issues/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/wp-fastest-cache-safari-iphone-issues/#post-8412385)
 * No worries at all, I appreciate your help. As the issue seems to occur on subsequent
   reloads of the same page it’s probably not as big a concern as I first thought
   but would still be good to resolve it.
 * I’ve also added a ticket over on the cache plugin, they seem to have been able
   to replicate it but not sure where the issue is coming from
 * [https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/#post-8409268](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/#post-8409268)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] Wp Fastest Cache / Safari Iphone Issues](https://wordpress.org/support/topic/wp-fastest-cache-safari-iphone-issues/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/wp-fastest-cache-safari-iphone-issues/#post-8408189)
 * Thanks for the quick response. I appreciate your help so far.
 * It’s a weird one, if I close the browser and reopen it seems to work on the very
   first load. Then if I refresh the page it often doesn’t load until I either a)
   close the browser again or b) request the desktop version.
 * If you reload your screen after the initial load, without closing window, does
   it still work for you? Maybe it’s a more obscure and rare circumstance where 
   it’s only the reload that causes an issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] WP Fastest Cache + Instagram Feed](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/#post-8407983)
 * To be honest, sometimes it seems to work if I close the browser but then reopen
   a new window then it works. If I refresh the page then it doesn’t work.
 * If I request the desktop version of the site it works again.
 * Hope you can help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Fastest Cache - WordPress Cache Plugin] WP Fastest Cache + Instagram Feed](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/wp-fastest-cache-instagram-feed/#post-8407951)
 * It seems to be an issue between the desktop and the mobile version even though
   it’s a responsive site. I did tick the following – MobileDon’t show the cached
   version for desktop to mobile devices
 * That seems to resolve the issue for some of the browsers but not for safari /
   iphone.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HMS Testimonials] Warning Messages in 4.2.2](https://wordpress.org/support/topic/warning-messages-in-422/)
 *  Thread Starter [pixelrush](https://wordpress.org/support/users/pixelrush/)
 * (@pixelrush)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/warning-messages-in-422/#post-6322521)
 * I ended up commenting out this line and had some success, not sure if that’s 
   a great solution or what other problems I’ll cause
 * `//add_action('init', create_function('', 'if (session_id() == \'\' && !headers_sent())
   session_start();ob_start();'));`

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