Chuck
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Display block-inline on Tablet & MobileAlso, inline view in group setting not working. ??
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Display block-inline on Tablet & MobileAre there special settings for Divi Builder? I tried multiple view/not view settings on the individual filter view, and group filter view and Divi view. I can get the Group Filter to show on the Desktop OR the Tablet/Phone view, but not both.
Thanks!Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Display block-inline on Tablet & MobileThank you. I have done as you indicated. Except I don’t see an option to “turn on options Abode Products”. Where is that setting located? Thanks.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsYep. Got it. I’ll mark out the old code and add the new code you provided today. I’ll then do a test on a single Product Set update and see what happens.
You are awesome! Thank you very much for your help.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsGreat! Added in the code. What do I do with this code that is already in the default code from the internet?
/** * Add slug value for each attribute that should not be modified during a Product Set update. * Slugs can be found here: WordPress Admin Area > Products > Attributes */ $attrs = array( 'color', 'size', ); if ( 'insert' == $action ) { return $value; } foreach ( $attrs as $attr ) { $name = ( substr( $attr, 0, 3 ) === 'pa_' ) ? $attr : 'pa_' . $attr; if ( $name == $attribute ) { $value = wc_get_product_terms( $post['ID'], $name, array( 'fields' => 'names' ) ); $value = implode( WC_DELIMITER, $value ); } } return $value; }
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsYes.
Also, I’m not seeing anywhere to set DataFeedr Global attributes, even if I wanted to.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsTo clarify, I’m not using any DataFeedr imported attributes. All attributes are custom on my end. Thanks.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsSorry, our messages are overlapping. No, I am not using any Global Attributes.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsWhat’s interesting, I’ve never had this problem before. What has changed, or what may I have done to now have to do this? Is there a way to not import “any” attributes?
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsThe attributes will change from time to time and I’m trying to avoid replacing/updating the plugin list of attributes. Thanks.
Forum: Plugins
In reply to: [Datafeedr API] Product Set updates replacing attribute termsThanks! I have a variety of products with over 40 different attributes and 5x that many terms. Any way to simplify the code you provided. I’m not using any imported DataFeedr attributes. They are all custom attributes.
Forum: Networking WordPress
In reply to: Redirect multiple TLDs to one sub-domain.Good idea! Cleared cache. I added the code to the subsite’s child theme. Changed the domains. No luck. I changed the ID from 1 to the subsite’s ID. Still no. I deleted the code and added it to the mainsite child theme. Still no. I changed the site ID back to 1. No luck. Sorry!
Forum: Networking WordPress
In reply to: Redirect multiple TLDs to one sub-domain.Correction: They are resolving to mymultisite.com as a new blog POSSIBLE sign-up as domain2com.mymultisite.com and domain3com.mymultisite.com. The multisite does not automatically create new blogs.
Forum: Networking WordPress
In reply to: Redirect multiple TLDs to one sub-domain.Sorry I wasn’t more specific. Domain2.com and Domain3.com do not resolve to
https://subsite.mymultisite.com. They are resolving to mymultisite.com as a new blog sign-up as domain2com.mymultisite.com and domain3com.mymultisite.com.Forum: Networking WordPress
In reply to: Redirect multiple TLDs to one sub-domain.Thank you! Doesn’t seem to work though. My multisite is on a shared IP. Would making it a static IP make a difference?