dannidar
Forum Replies Created
-
Forum: Plugins
In reply to: [Business Hours Indicator] Open/Closed Indicator Incorrect, Cacheing issue?It is really weird. I seem to be able to add and delete vacations now, but they’re still not working properly for me.
For example, today, the normal hours are 12:00pm – 9:00pm. I have edited it so that there is a vacation set up from April 9th – 12th, so that it shows as CLOSED today until they open full time later in the season. I also have holidays set up for their off season hours, during which the shop closes at 8:00pm.
The indicator did change from CLOSED to OPEN, but did so today at 12noon instead of recognizing the vacation days. So it’s updating with the hours, but not this vacation instance. Is it possibly because I entered it out of chronological order? Like I have April 16 – 19 vacation, then additional vacation days through til December, then I added this one from April 9th – 12th – should I recreate the list with this date at the top?
I really am not sure if it’s a caching issue or an issue with the vacation settings or what…I did change the “Hours” for today and as soon as I did that, it displayed properly as “closed” today, but the change didn’t seem to take effect when I just edited the vacation dates.
I don’t even know if I am making sense anymore! Sorry to confuse you! Let me know if you want to take a look at the back end of the site.
- This reply was modified 6 years, 7 months ago by dannidar.
Forum: Plugins
In reply to: [Business Hours Indicator] Open/Closed Indicator Incorrect, Cacheing issue?The time zone is correct in the general settings tab.
In order to test without caching, I disabled all caching on the site, then attempted to adjust the hours and see if I could get it to display that the store is OPEN now, for testing purposes.
What I found was that I couldn’t accurately test because I was unable to delete one of my “vacation” days. I clicked the red X to remove a date, clicked DONE, then every time I went back to the Vacation area, it still had that day as a vacation day.
I saw where this was an issue for someone else, and you recommended creating a new location. I did that, and with only a few holidays/vacation settings entered, it seemed to be working well, even with the caching turned back on.
Update: I just added all the hours, holidays and vacations to a new location and things seem to be working well for now. I noticed that in the first location instance, a lot of my vacation days had been removed without any action on my end. Not sure what was going on, but was definitely buggy.
If you need/want to access the site as an admin to see if there is anything weird going on, let me know—but for now, it seems to be working as a new location.
Also, as an aside, I have hours for every day, then about 75 holiday hours, and another dozen vacation spans….this store has very irregular hours! Not sure if that makes any difference.
Thanks so much for your help!
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Sparkpost integrationI just want to comment on here that I am using SparkPosts’s SMTP relay settings with success even without API integration into Postman. Just set up a free account, verify your domain and use the SMTP details in a manual config of the plugin. Seems to be okay so far.
Forum: Fixing WordPress
In reply to: WordPress 4.5 admin editor not working in Chrome@xavier Masse
Worked like a charm! Thanks so much for sharing the info.
Forum: Fixing WordPress
In reply to: Updated to WP 4.5, TinyMCE no longer working correctlyJust wanted to chime in that I am experiencing the same issue with Chrome and TinyMCE. And yes, switched to default theme, deactivated all plugins, etc. on a fresh install.
Just updated Chrome yesterday and it does not play well with this version of TinyMCE at all. Have also had to switch to Firefox for the time being, but perhaps I will try reverting to an older version of TinyMCEForum: Plugins
In reply to: [WooCommerce] Adding a product automatically to the cartThere’s nothing in the error logs on my server, that I could find anyway.
I get a generic 500 Internal Server Error….
But let me play around a little more and see what happens.
Thank you for your input!Forum: Plugins
In reply to: [WooCommerce] Adding a product automatically to the cartActually, none of those quite offer what I need exactly.
So, I came across this on StackOverflow, which is basically what I need to be able to do, replacing the “Free Product” with the product I want to add to the cart.
So logic should be :
1. Check all the products that are added in to the cart
2. Check that if any product in the cart having free products or not
3. If yes, then simply add the free product.add_action( 'init', 'add_product_to_cart' ); function add_product_to_cart() { if ( ! is_admin() ) { global $woocommerce; $product_id = 30; //Your product ID here $free_product_id = 2287; //Free product ID here $found = false; //check if product already in cart if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) { foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) { $_product = $values['data']; if ( $_product->id == $product_id ){ $found = true; } } // if product not found, add it if ( $found ) $woocommerce->cart->add_to_cart( $free_product_id ); } } }
But, when I add this to my functions.php, I receive an error message.
Can anyone help me figure out why this isn’t working?Also, I would need this to work when any of the following Product IDs are in the cart : 203, 204, 205, 189, 208, 225, 228
The product to be added is product ID: 506
Anyone??
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Not adding to correct groupResolved…
This was an error on my end and the plugin is working as expected now.
Thanks so much!Thank you so much!
So, I was able to get it to work in Firefox properly, and that’s perfect for now, until the official update is ready.
I tried making the additional changes required for Chrome as well, but I’m assuming that I just made some sort of error there because that ended up a mess! ??
I really appreciate your time and attention to this, and love the plugin!
Have a wonderful day!Thanks!
Also, if it helps, I am using the Avada theme, with only the following plugins installed:
Gravity Forms
Gravity Forms Mailchimp Add-on
Akismet
Fusion Core (this is part of Avada theme)
Popup MakerI am having the exact same problem. Any word on how to fix?
Well, the error message is back after I made the change above. I’d appreciate any input you could offer on this. I am using it like so in the template file:
<?php echo do_shortcode( '[alpine-phototile-for-instagram id="568" user="visitdorchester" src="user_recent" imgl="instagram" style="cascade" col="3" size="M" num="9" border="1" highlight="1" align="center" max="100" nocredit="1"]' ); ?>
Let me know if there’s anything on my end that could be causing the PHP Fatal Error outlined above.
Thanks!
DanielleI just realized that when I used the echo shortcode in the php template, I did not have quotations around the user= value. Would this have caused that error message, that you know of?
Thanks for looking into it Eric…I’ve noticed the inconsistency as well.
I appreciate you taking the time to check it out. And thank you for the awesome plugin.