Jay Syder
Forum Replies Created
-
Forum: Plugins
In reply to: [AddySolution's address Autocomplete for WooCommerce] Save button missingHi Martin,
Great thank you for this update, this will make it much simpler for future installs.
Thanks managed to work out the issue was due to Klaviyo running on older Woocommerce and WordPress once we updated these seems to now be resolved we were running version 7.2.3 woo and 6.1.3 wp. So maybe a compatibly issue that fixed newer version error but created an error on older versions. So marking resolved now just thought I would post so if others have issues will be resolved.
Ok thanks I will look at getting this functionality custom built then to work with the attribute mapping since it is recommended from google with potential of products being flagged better having this worked on than waiting for feature requests since I know they can take a very long time sometimes.
Forum: Plugins
In reply to: [Google for WooCommerce] MPN requires identifier_exists marked YesOk that is interesting and conflicts with what google support told me. Also there is a small state at the bottom.
Actual behavior:
Currently, we set identifier_exist to false by default. If an identifier is set e.g. “GTIN” the we set identifier_exist to trueIt says this is setup to display true if filled in sich as gtin which works fone wondering if this same setup could be applied to mpn.
Also if you cannot do you have anymore docs or examples of the hook you mentioned so I can look at custom fix as you say. This does seem unusual to currently only partial support mpn field this way.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Updated Stripe cannot setup AccountReferring to being marked as Developer on Stripe. Which is the role on Stripe used for Developers to connect Stripe with websites often. I am Admin on WordPress. The new onboarding and settings is super simplified one option is to automatically connect which if I click that process it doesn’t see the account I am Developer of only ones I am admin of. So then I click the button for manual connect it provides 3 fields I think they were API Key, API secret and webhook secret. Only problem is to create a webhook you need the webhook url for your store. In the past this was displayed in full settings but now it has been simplified it is no longer displayed. For myself luckily I was able to search throguh old sites to find this. And others could google to find out. But thought I would let you know this is actually now harder to setup Stripe than it was in the past.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Not tracking EcommerceOk I have deactivated Monster Insights plugin that was using the code as well now. I checked analytics and both “Enable Ecommerce” and “Enable Enhanced Ecommerce Reporting” are turned on I noticed in that webpage it had the option for Related products that option wasn’t available for me to turn on.
Also I have made no orders via admin the reason I want it double checked is so I don’t have to wait for real customers to make orders and wait overnight as I know sometimes analytics can come in delay. So if you can re-check again that the google analytics script is displaying fine including the ones that let the ecommerce tracking work are also displaying thanks. Then hopefully after the next customer order today I see that in analytics.
Oh also under intergration for this I have everything ticked excepect “Display Advertising Support”
Hi yeah thanks, Elissa I did contact you through your website on support just got no response after the update that it was fixed so after checking and finding out it had been thought this was the best place to mark as complete and comment to let others know in case they also weren’t aware.
Hi thanks for the latest update 2.07 which has fixed errors displays for editor and shop keepers.
Forum: Reviews
In reply to: [One Active session] Simple single login plugin that worksGreat although the only functionality I can currently think that would be a great complement is if it told your old login something like “You have been logged out because your account has been accessed through another device”.
But I really like it’s simplicity and fact it is using new wordpress features 🙂
Forum: Plugins
In reply to: [WP FullCalendar] Time Format not recognising tt for am / pmThanks jpkidd,
I have tested an putting a instead of tt does work for am pm. I see that some of the documentation has changed for new code like that so links should be changed under WP FullCalendar setting to the link below or have the time specific info from this page taken out and made into a single page ease of use. But I am marking this as resolved now.
Forum: Plugins
In reply to: [WP FullCalendar] Latest updateIf you are wanting to remove start date before event name go to settings then wp full calendar and delete whatever is in the time format box and press space bar in the box then save. This is what I had to do as blank seems to revert to default time format.
Forum: Plugins
In reply to: [WP FullCalendar] Time Format not recognising tt for am / pmHi Delawaregrad a fix I ended up using since I use the calendar with WP events manager is just deleted and added a space for the time format under wp fullcalendar setting then added went to Event manager setting and clicked on Full Calendar Options and added #_12HSTARTTIME before the title which I have set up to display with am pm which you can do under formatting date time if you haven’t already.
The above is all assuming you are using WP FullCalendar for displaying events.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] problem with URLs after updrade0.5.5.1 seems fine for me so far also.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] problem with URLs after updradeFound that for me just added on lines 694 the lines that had been moved fixed it :
add_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 ); add_filter( 'the_content', 'domain_mapping_post_content' );And I changed it by :
add_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 ); add_filter( 'pre_option_siteurl', 'domain_mapping_siteurl' ); add_filter( 'pre_option_home', 'domain_mapping_siteurl' ); add_filter( 'the_content', 'domain_mapping_post_content' );Thanks that fixed it for me 🙂
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] problem with URLs after updrade