trongtri35
Forum Replies Created
-
Thank you @largbasket for rely me,
I will post in oxygen group for this and hope will have update oxygen in future.Because Oxygen Builder can’t create a template for any custom route.
=> And with this error, the course-category can’t create too?
In single course page, there are author and category course. But get error when click on 2 that link.
And get erros when forget password student. :7
( ! ) Warning: include_once(template-part.retrieve-password.php): failed to open stream: No such file or directory in /home/linuxmint/Local Sites/lms/app/public/wp-content/plugins/oxygen-tutor-lms/elements/PageDashboard.php on line 46
Thank you Diego Versiani,
You are awesome!Thank you so much!
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Formiantor conflict with seoPressYes, that the key.
So now i have to manually write in meta description.
So, all contents generated by Oxygen (don’t appear in gutenberg , just in Oxygen design) will be catched by SeoPress for SEO?yes, i’m using oxygenbuilder.
it seem to be that seopress conflict with shortcode in oxygen builder when i enable compatible mode with oxygen in SeoPress.Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed does not exclude AdSense adsbygoogle.jsi yes, i have the same problem with localization. when try to host local google analytics, it seem lscwp can’t local google analytics!
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Formiantor conflict with seoPressyes, everything working well (Forminator shortcode working well and show the form in front-end) when i turn of compatibility mode with oxygenbuilder.
I think SeoPress have problem with oxygenbuilder. So please find out and fix it as soon as possible.
Because in new version of oxygenbuilder (ver 3.8), they will native support rankmath, and i think i should change to rankmath.
So please check and fix to ensure Seopress good for oxygenbuilder. SEO plugin is very important with website, i love and don’t want to leave Seopress. But we are using oxygenbulider.Hi Predrag,
its seem from seopress plugin. in my setting file, i turn on compatibility mode with pagebuilder and Forminator not showing, when i turn off that setting, Forminator working well.
So do you want to find out why!? Just tell me what should i do. Or i can check solve here. Because i just turn of compatibility mode from seopress.
i had contact seopress too.Forum: Plugins
In reply to: [SEOPress - On-site SEO] Formiantor conflict with seoPressyes, i use pagebuilder and have check compatibility.
my configfile: https://drive.google.com/file/d/18KWFnm-sSDaOasjLjA29jy5u9w6b_Y8q/view?usp=sharingwhen i reset all, the forminator form appear again, i dont know why!? i think setup wizard problem!
Yes, you are so excellent Patrick!
My config on seopress make Forminator not show. i dont know which config!?? i see your rely and try reset all, and Forminator show again.
But now i dont know how to config without default from seoPress :))
here my config error file: https://drive.google.com/file/d/18KWFnm-sSDaOasjLjA29jy5u9w6b_Y8q/view?usp=sharing
Please check and help me find out!Thank you Predrag so much, it work like a charm.
in my case. insert jQuery instead of install plugin.* Note, to make this work: * 1. Enable load form using Ajax on Behaviour tab * 2. Add class name wpmudev-calculation into calculation field (Calculation field settings -> Styling tab) */
jQuery( document ).ready(function($) { function formatNumber(nStr, decSeperate, groupSeperate) { nStr += ""; x = nStr.split(decSeperate); x1 = x[0]; x2 = x.length > 1 ? "." + x[1] : ""; for (var rgx = /(\d+)(\d{3})/; rgx.test(x1); ) x1 = x1.replace(rgx, "$1" + groupSeperate + "$2"); return x1 + x2 } $(document).on('after.load.forminator', function(e, _form_id){ $('#forminator-module-'+ _form_id).find('.wpmudev-calculation .forminator-calculation').on('change', function(){ let _this = $(this), _next = _this.next(".forminator-input"); if( ! _next.length ){ _this.after('<input type="text" class="forminator-input" value="'+ formatNumber( _this.val(), '.', ',') +'" disabled="true" />'); _this.hide(); }else{ _next.val( formatNumber( _this.val(), '.', ',') ); } }); }); });