Marinko
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images in the Media Gallery keep multiplying foreverNew WPML version solved my issue but I had to reinstall whole platform. It was not a big deal because it happened on a beginning of development, unfortunately abandoned few days later…
You might try disabling WPML Media because that one cause the trouble. While disabled, try to fix faulty content in Media Library. Delete new media files and re-upload them once again.
If you succeed, do not reactivate WPML Media plugin until update whole WPML all together.Hope this will be helpful…
Forum: Plugins
In reply to: [Groups] Restricting Content in WordPress TemplatesHi,
I need to hide WooCommerce stock info from public and make it available only to a group of users.
It would be nice to have complete code that goes to theme function file.Thank you.
Forum: Fixing WordPress
In reply to: Images in the Media Gallery keep multiplying foreverSame here! One particular media (gif image) is multiplying every time i scroll down the media library page.
Funny thing is that it just shows that is multiplying in media library, but it doesn’t really do in media folder on server side. There is just a single copy of the mentioned gif file.WP 4.0
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Image too small when viewing on phoneYes, this works for me too, but now I don’t have next/previous image arrows on small screens. If I exclude “.pp_hoverContainer” from the code above, I can see the arrows but I can’t get correct position!
Help 🙂
Forum: Plugins
In reply to: [Booking.com Affiliate plugin] Single calendar for date pickerLooks like I found it 🙂
/bookingcom-affiliate-plugin/includes/shortcodes.php
On line 486 and also on 510, changed “numberOfMonths” from 2 to 1 and voila!
Line numbers based on plugin v1.6Thanks anyway
Forum: Fixing WordPress
In reply to: HTTP Error when uploading images (but not all failing!)And yet again, on another installation, mklusak solution rocks!
Thanks man 🙂Forum: Fixing WordPress
In reply to: HTTP Error when uploading images (but not all failing!)My installation was working fine until today. This problem occurred without noticeable reason (no updates, no plugins, no nothing…) and “mklusak” solution was the only one that actually worked for me!
Thank you mklusak!
Forum: Plugins
In reply to: [Content Scheduler] email notification sending every hour!Same here. For example, mails was sent at:
10:36am
11:46am
1:24pm
2:09pm
2:40pmand so on…
Forum: Plugins
In reply to: [Contact Form 7] Show/hide fieldsThank you HermanBos for a quick answer.
It looks like I’ve found a solution to keep it all in one .js file 🙂Here is the code:
/*! jQuery script to hide certain form fields */ $(document).ready(function() { //Hide the field initially $("#onekid").hide(); $("#twokids").hide(); $("#threekids").hide(); //Show first hidden field $('#awesome').change(function() { if ($("#awesome").val() == "1") { $("#onekid").show(); $("#twokids").hide(); $("#threekids").hide(); } else { $("#onekid").hide(); } }); //Show first & second hidden field $('#awesome').change(function() { if ($("#awesome").val() == "2") { $("#onekid").show(); $("#twokids").show(); $("#threekids").hide(); } else { $("#twokids").hide(); } }); //Show all three hidden fields $('#awesome').change(function() { if ($("#awesome").val() == "3") { $("#onekid").show(); $("#twokids").show(); $("#threekids").show(); } else { $("#threekids").hide(); } }); });So far, it works in Firefox, IE, Opera, but it doesn’t completely work in Chrome (it doesn’t hide fields after opening). I must mention that I didn’t use Bunny Bomb’s CSS at all.
If I make it completely cross-browser compatible, I’ll post it here.
Forum: Plugins
In reply to: [Contact Form 7] Show/hide fieldsHi HermanBos,
I have a similar problem using BunnyBomb’s solution but with some customization according my needs.
I have to make a form with a dropdown field such as this:— (blank)
One kid
Two kids
Three kidsAnd than, if someone select “One kid”, form will show up just one text field to be filed with kids age.
If someone select “Two kids”, form will show up two text fields so the user can input ages for both kids separately.
If someone select “Three kids”, form will show up three text fields so user can also input their ages separately (and so on if needed).Now, my code looks like this:
/*! jQuery script to hide certain form fields */ $(document).ready(function() { //Hide the field initially $("#onekid").hide(); $("#twokids").hide(); $("#threekids").hide(); $('#awesome').change(function() { if ($("#awesome").val() == "1") { $("#onekid").show(); $("#twokids").hide(); $("#threekids").hide(); } }); $('#awesome').change(function() { if ($("#awesome").val() == "2") { $("#onekid").show(); $("#twokids").show(); $("#threekids").hide(); } }); $('#awesome').change(function() { if ($("#awesome").val() == "3") { $("#onekid").show(); $("#twokids").show(); $("#threekids").show(); } }); });and it works except when I click some option from dropdown (eg. Three kids), and than click blank again, it wont clear empty fields!
I’ve tried about a 50 different solutions but none with a complete success.
Any ideas? Thanks…
Forum: Plugins
In reply to: [Contact Form 7] Dynamic DropdownHi addinall,
Any progress with this?
Forum: Plugins
In reply to: [SI CAPTCHA Anti-Spam] [Plugin: SI CAPTCHA Anti-Spam] SI Captcha and Form 7Contact Form 7 is one of the famous plugins for WP. Making user friendly integration between this two, would represent huge advantage for most of us.
Thank you.
Forum: Plugins
In reply to: [Simply Poll] [Plugin: Simply Poll] Problem with supporting other languagesHi,
Have You solved this issue?
I am using similar letters too, but in my case, all the answers disappear.Thank you.
Forum: Plugins
In reply to: [WP Most Popular] [Plugin: WP Most Popular] Date rangesHi “adebaby”
Would you be so kind to share your development to the rest of community?
Thanks!
This option would be great to have!
Thanks.