berzley
Forum Replies Created
-
I would like to second this issue. I had some luck clearing cache, disabling seamless integration, and then disabling cache. This got it to allow me to search once more, but then only those posts would show.
Also have it so it will never show results for searches of more than one word.
Forum: Plugins
In reply to: [Snazzy Maps] can’t see any stylesIf you’re up for editing the plugin and know your way around JavaScript it’s a fairly straight forward fix.
All of the
$(...).live(..., functionfunctions need to be changed to$(...).click(function,$(...).submit(function, and$(...).change(functionappropriately.Then, the the
$('.style').submit(function(originally$('.style').live('submit',) needs to be moved up into therenderStylesfunction editing this line:container.append(...You should end up with something like this:
let el = $(Mustache.to_html(styleTemplate, data)).data("style", style); el.submit(function() { $(this) .find('input[name="new_style"]') .val(encodeURIComponent(JSON.stringify($(this).data("style")))); }); //Add to the last row container.append(el);Forum: Plugins
In reply to: [Snazzy Maps] can’t see any stylesSame issue and error in the console. For reference: WordPress version 5.5.1