peirix
peirix
@groenroos Any closer on this? I'm getting the same problems now.
Yeah, was maybe a bit poorly written, as these are really two separate issues, but they are both related to having a second language/site. So the two issues are as...
1. Looks like the field was not properly set up after all on the second language, so that explains that one. 2. This is still a bit buggy. Adding screenshots...
Oh, I just included that screenshot because I thought Open Graph Title also pulled from the SEO Title Source. The title tag looked like this: `CrayoNano | 首頁`
Going back to check it now, I see that it had changed to the overwritten property. So upon a little more digging it seems it was related to cache. Changing...
Nope. Guessing they've stopped working on the Craft 3 version of the plugin 🤷
Hi. We're using `syncMeta()` to set the fields from a users meta to the orders meta: ``` $order->syncMeta(array_merge( $request->user()->account->only(['invoice_email']), $request->user()->account->getAllMeta()->only([ 'invoice_name', 'invoice_org', 'invoice_address', 'invoice_zip', 'invoice_city', 'shipping_same_as_invoice', 'shipping_name', 'shipping_address', 'shipping_zip', 'shipping_city',...
But still not sure why I'm getting an error on empty types based on the information that is in the database now?
I tried manually adding the missing fields to the `meta` table, but that didn't change anything. I see that some of my orders don't give this error message, and those...
Just thought I'd update on this, as I found a working solution: ```javascript head() { return this.seomatic; }, mounted() { this.$root.context.app.seomaticMeta('/', 1).then(res => { this.seomatic = res; }); } ```...