oobi
oobi
The same is true when dispatching fails due to duplication via the [ShouldBeUnique](https://laravel.com/docs/8.x/queues#unique-jobs) trait. If I execute my unique job several times, I get one job record in the database...
Yeah I tried that and $_POST and $_REQUEST. The trouble I had is it's going through the Wordpress REST process (in the editor) and that stuff doesn't appear to exist...
Any movement on this one?
Sadly I found no way to do this without hacking carbon fields itself. An extra param in the set_render_callback would be amazing.
I'd like to see this also - particularly the ability to change the width in the editor. Setting a class attribute won't change the block width in the editor which...
That would be amazing - thanks for considering it! On Tue, 21 Feb 2023 at 8:51 pm, HTMLBurger-NG ***@***.***> wrote: > Hi @oobi , > > We're going to address...
That works a treat - thanks a bunch!
I spoke too soon. This works in the editor (preview the block) but not on the front end. What I'm hoping for is access to the post_id for the purpose...
Actually here's a little patch for that method that allows it to work in both places: ``` public function get_post_id() { $post_id = isset($_GET['post']) && (int) $_GET['post'] > 0 ?...
No problem -- another quick change: ``` $admin_url = $_SERVER['HTTP_REFERER'] ?? ''; ``` Referrer isn't guaranteed to be set. I bumped into this using webpack.