dorysp
Forum Replies Created
-
Thank you for the quick reply.
So does this mean the client needs to get new API credentials? Why would they all of sudden not work?
I’d like to add that this happens once the CC information is added and the submit button is hit.
Thank you.
Forum: Fixing WordPress
In reply to: Uploaded images grayed out thumbnailsit seems that all is resolved now. We think there was a corruption in the wp-postmeta db where auto_increment was missing. I re-added the auto_increment, however, she needed to clear her local cache. Once she did that, she now can upload images and the thumbnails show up.
Forum: Fixing WordPress
In reply to: Uploaded images grayed out thumbnailsActually i have been in contact with them, but not on this specific issue. They did say that the images have to be uploaded while you’re in the particular property that is being added/edited. However, being that I can upload images without any issues but the other person can’t leads me to believe it is not specific to this plugin.
Thank you. Changing the field name works perfect and was more important than adding the link.
Yes, i’m using the lastest version of your free and pro plugin. I reverted Woocommerce back to 3.X and that fixed the issue. It seems your plugins are not updated to work with Woo 4.X yet.
I’m hoping someone can help me with this soon. I’m in the middle of developing this site and this is holding further progress.
Ok, thank you. I see it now.
Forum: Plugins
In reply to: [WooCommerce] Hiding one category on shop main pageNever mind. I figured it out. I had to add ‘featured’,’bundles’
Just my lack of knowledge coding in php.
Thanks for AlL your help!
Forum: Plugins
In reply to: [WooCommerce] Hiding one category on shop main pageOk, I found some other code in the functions.php file so I need to add the new category there but not sure how to add it. I tried putting a comma between “featured” and “bundles” and that didn’t work.
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 ); function get_subcategory_terms( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on the shop page // to hide from shop page, replace is_page('YOUR_PAGE_SLUG') with is_shop() if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop('') ) { foreach ( $terms as $key => $term ) { if ( ! in_array( $term->slug, array( 'featured' ) ) ) { $new_terms[] = $term; } } $terms = $new_terms; } return $terms; }Forum: Plugins
In reply to: [WooCommerce] Hiding one category on shop main pageSorry, yes I had to unpublish the products because it’s a live site. I’ve re-published them so the “bundles” category is showing now.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Can I sync to only 1 product?The product is a brand new virtual product and the emails are sent on a timed basiss for this program. Can this plugin handle adding a different mailchimp list on a per product basis?
Forum: Plugins
In reply to: [Theme My Login] Recent update broke siteNo, the site is not using the Social Warfare plugin
Tobias asked me to contact the js developer regarding the issue. I ended up going with scroll mode instead of collapse.
I have the site set up on my dev server, however, I need to provide you with a password. How can I send that to you privately?