Matthew Harris

Results 89 comments of Matthew Harris

I can see there have been a few commits the plugin since I wrote that snippet, however the site I wrote it for is still working: https://www.legaledge.co.uk/our-services/trade-marks/form/ I can't see...

Until this is implemented you can swap the buttons by calling this in the document ready function: ``` function swapButtons() { $(".wpcf7-field-group-add").each(function(index) { $(this).after($(this).prev().detach()); }); } ``` By using `detach`...

Another note, I'm running Sublime 2 v2.0.2, Build 2221 on Windows 8.1. I haven't tested on any other versions / operating systems.

I solved it by fully removing the app from the permissions and then dragging the app back on to the list (originally I was just toggling it). Not sure why...

nothing has fixed it for me, tried installing the latest version using `npm i sharp --saveDev`, and running `npm install --ignore-scripts=false --foreground-scripts --verbose sharp --force` and `npm install --cpu=arm64v8 --os=darwin...

My app is showing white text on a white background and I'm assuming because of this issue I cannot customise it back. Hopefully the PR for this gets merged soon!...

I actually solved this partially by setting the theme to light in my `capacitor.config.ts`: ```ts /// import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'dev.runthings.vankit',...

I've just spent several hours getting my head around this before realising that you do not actually set it programatically at all. The date picker is not aware of a...

Not an easy one to recreate I guess, I just left the tab open. Maybe there is a snippet that can be used to manually invalidate the nonce? I had...