MrLeif
Forum Replies Created
-
Forum: Plugins
In reply to: [Login with Vipps and MobilePay] unable to log in.. invalid_requestTakk. Da n?rmer vi oss her ??
Forum: Plugins
In reply to: [Login with Vipps and MobilePay] unable to log in.. invalid_requestFunnet og lagt til flere ganger, b?de test og produksjon verdier..
F?r fortsatt samme feil…
Er det en enkel debugging s? jeg kan se mer av hva som skjer f.eks. i error_loggen?Forum: Plugins
In reply to: [AI Engine] Languages stopped workingJust got the same problem
Version 1.9.95?
wordpress 6.4.1Well. with the troubleshooter everything was fine after a couple of minutes! ?? Thank you for your help!
I have to do the troubleshooting at a late hour (when few is on the site).. I will be back tomorrow with more after troubleshooting
I have submitted the values to the form
Forum: Plugins
In reply to: [WP Store Locator] Clusters require doubleclick with Firefox?Those errors should be gone now. But still have to doubleclick to zoom in on the yellow clusters..
If you move the map, so the cluster is out of center, it will center on the cluster, but not zoom in on it (this happens in Firefox and Microsoft Edge, not Chrome..)If I turn off WordFence and Login LockDown, the plugin writes to the log.
Would really like to have this plugin work without removing theseSame question here, just started testing this plugin.
also using w3 total cache.
Would like to know what experience you’ve had on this.Forum: Plugins
In reply to: [WP Mobile Detect] Shortcodes disappearing with Visual ComposerHi,
I’m testing a workaround;
In functions.php, add this code;function phone_before_after($content) { $phoneFromHere="[vc_row][vc_column width=\"1/1\" el_class=\"phonefromhere\"][/vc_column][/vc_row]"; if (strpos($content, $phoneFromHere) !== false) { $content = str_replace($phoneFromHere, "[/notphone][phone]", $content); $beforecontent = "[notphone]"; $aftercontent = "[/phone]"; $fullcontent = $beforecontent . $content . $aftercontent; }else{ $fullcontent=$content; } return $fullcontent; } add_filter("the_content", "phone_before_after");
in Visual Composer;
I add the default content first, then at the end, an empty row where I add the class “phonefromhere” to the empty column.
[edit]: And after this empty row, I add the part meant for phones.This way I get [notphone][/notphone] on the first part, and [phone][/phone] on the last part of the page.
Forum: Plugins
In reply to: [Meta Box] put main editor(content) in tab?resolved
Forum: Plugins
In reply to: [Meta Box] put main editor(content) in tab?also, a fix so the editor adapts to the smaller area available;
setTimeout(function(){
jQuery(“#content-html”).click();
// alternative: jQuery(“#content-tmce”).click();},100);
})Forum: Plugins
In reply to: [Meta Box] put main editor(content) in tab?fixed it with javascript/jQuery
var element = jQuery(“#postdivrich”).detach();
jQuery(‘.rwmb-tab-panel-text’).prepend(element);