Marc_O
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated fields for ACF] Possibility to have another rule after round ?Thank you very much ! ??
Hello,
Thank you for your answer.
Yes the bug is still there in the last version.
If I search a member logged as one member the results are looking into fields that should be private but if I do a search not being logged on the website I got the results as they should be (exluding from the search the private fields).
RegardsNo answer on this one ?
It really look like a bug.Hello,
Problem solved.
This is the code for anyone who would like to do the same thing.
The first two “if” are when the member already choose A or B and the data is in place at the loading of the page, the rest of the code is when the user click on A or B.jQuery(function($) { if ($('input[value$="A"]').is(":checked")) { $('input[value$="B"]') .prop("checked", false) .prop("disabled", true); } if ($('input[value$="B"]').is(":checked")) { $('input[value$="A"]') .prop("checked", false) .prop("disabled", true); } $('input[value$="A"]').click(function() { if ($('input[value$="A"]').is(":checked")) { $('input[value$="B"]') .prop("checked", false) .prop("disabled", true); } else { $('input[value$="B"]').prop("disabled", false); } }); $('input[value$="B"]').click(function() { if ($('input[value$="B"]').is(":checked")) { $('input[value$="A"]') .prop("checked", false) .prop("disabled", true); } else { $('input[value$="A"]').prop("disabled", false); } }); });
Forum: Plugins
In reply to: [Surbma | Divi Lightbox] Not working with the Theme builder (Divi 4.0) ?Hello,
Thanks you for your answer.
To target the post body module would be a great solution if it works.
Regards
Forum: Plugins
In reply to: [Advanced File Manager] Change size of the image thumbnailsHello,
I had to change some CSS rules of containers of the images too but this solution works perfectly.
Thanks ??Forum: Plugins
In reply to: [Wordpress File Upload] Shortcode breaks without doing anythingHello,
Yes i’m using the Divi builder include in the Divi Theme.
Are your plugin not working with page builder ?I’ve disable the builder for the page and it seems ti work now but i would prefer to use it inside the builder.
Thank you
Marco
Forum: Plugins
In reply to: [Wordpress File Upload] Can’t make upload path work :(Hello,
I thought i didn’t use this settings and then totally forget it was on when i tried other settings.
Thank you it work perfectly now.
MarcoForum: Plugins
In reply to: [File Away] Can't download when stats enabled – Conflict with W3 Total CacheI’ve removed the page from the cache :
“Page Caching using disk (Requested URI is rejected)”
but i still can’t download any files when stats are enabled, it only works when i totally desactivate all the options of W3 Total Cache.
Any idea why ?Forum: Plugins
In reply to: [File Away] Can't download when stats enabled – Conflict with W3 Total CacheOk, thanks for your answer.
I’ve try to disable cache on the page the shortcode is used but it didn’t work. Perhaps i’ve done it the wrong way , i’ll try again.
ThanksHello,
The change didn’t work with ‘shorturl’ => echo wp_get_shortlink() but it works great with ‘shorturl’ => wp_get_shortlink()
Thank for your answer ??Hello,
I don’t have it because i’m using a plugin that automatically shorten the permalink so i just have to call the wp_get_shortlink() function to include it.
But perhaps you’ll find what you need here : https://dev.bitly.com/code_libraries.htmlOk, thanks for your answer.
I’ll wait for next version then ??Forum: Plugins
In reply to: [SEO Facebook Comment] 100% is being written in as 100 PX!Plugin updated, the fluid option works perfectly on desktop and mobile. Thanks for your reactivity.
Perfect !Forum: Plugins
In reply to: [SEO Facebook Comment] 100% is being written in as 100 PX!Hello,
I’ve got exactly the same problem on this site with a responsive theme : https://www.shutupandplaythebooks.com/
But the thing is that i don’t have the mobile version turned on so i don’t understand why when i use 100% for the width it’s 100px on the website, but only on tne desktop view, the mobile view is perfect when i use 100% fot the width.
So i can’t get both views desktop and mobile work together.
I’ve choose to make it clean on the desktop view so i used 660px for the width of the comments but now the view on mobile is not responsive.
Do you know what happen here ?
Thanx for your answer.