Jan Zikmund
Forum Replies Created
-
@tkama – thanks, your solution works great!
Correct way to do this is using a filter in your child theme’s functions.php as described on their official page here:
https://wpforms.com/developers/how-to-disable-the-email-suggestion-on-the-email-form-field/
Forum: Plugins
In reply to: [Auto Post WP to Photo Social Network] Bug report: debug mode always onThis is what I got:
http://janzikmund.cz/files/instagram-response-debug.txt
Please let me know when you download it and I will delete it. I modified some of the hashes but otherwise this is the full response.
Forum: Plugins
In reply to: [Auto Post WP to Photo Social Network] Bug report: debug mode always onThere is no error message, it is just several huge JSONs and at the bottom is:
REQUEST: direct_v2/inbox/?
RESPONSE:Something went wrong while logging to instagram:
—-
And that’s it, there is nothing after thatForum: Plugins
In reply to: [Auto Post WP to Photo Social Network] Bug report: debug mode always on@dufour_l I just wrote you through a contact form on your website. Please write me back and I will send the debug output. Thanks a lot
Forum: Plugins
In reply to: [Auto Post WP to Photo Social Network] Bug report: debug mode always on@dufour_l – Just tried again with debug but the response is pretty long to paste here, any chance I can send it to you by email or any other way? Also I don’t want to paste it here for privacy reasons..
Thanks, Jan
Forum: Plugins
In reply to: [Auto Post WP to Photo Social Network] Bug report: debug mode always on@dufour_l Hi, thanks for good news, I have just tried it but when I replace the locally fixed 1.4.8 with freshly downloaded 1.4.9 and publish a new post, I just got an error that something went wrong when logging to instagram. When I put my locally modified 1.4.8 back, it works so I am still keeping it. Any chance to research this? My client will unfortunately be hardly willing to pay for me spending any more time on it as long as our current local version works.
I have just tried a diff between wp2instagram.php in version 1.4.8 and 1.4.9, but the changes are too many, not sure if it is just the structure or some many additions were added.
- This reply was modified 7 years, 2 months ago by Jan Zikmund.
Had exactly the same issue, seems like the updated version 4.0.3 released today has it fixed.. at least my test order after the gateway update to 4.0.3 went through.
- This reply was modified 8 years, 4 months ago by Jan Zikmund.
Thanks for the tip! This should really be placed somewhere much more obvious
Hi Kimberly, thanks for getting back to me. Yeah I use “Disk:Enhanced”.
Well I don’t really know what is going on. Regarding the headers, you can check yourself, I had turned page cache on, the URL is http://kiallafoods.com.au/blog/ . In browser it opens, but Screaming Frog gived 403. Same for “Fetch as Google” in Google Search Console.
Then I tried accessing the page in cache directly: http://kiallafoods.com.au/wp-content/cache/page_enhanced/kiallafoods.com.au/blog/_index.html , and surprisingly, I could access it in Screaming Spider, but in browser it gave 404.
I went through the directory tree and after I commented out .htaccess in /wp-content/cache/page_enhanced , I could visit the page in cache directly even in the browser. But then I reverted the .htaccess back and I can still access the cached page in browser as well, even though it didn’t work before.
This is the content of that .htaccess just in case:
# BEGIN W3TC Page Cache cache
AddDefaultCharset UTF-8
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/html M3600
</IfModule>
<IfModule mod_headers.c>
Header set Pragma “public”
Header append Cache-Control “public”
</IfModule>
# END W3TC Page Cache cacheSo now it seems all work fine, even the other pages that gave 403 before seem accessible in crawlers. Unfortunately I don’t have any more time to spend on this as the client is not paying it, and it seems fine for now. Still I would be curious if you had any logical explanation. As especially I am wondering if this issue my re-appear, but I guess we will just see. If it happens again, I will probably just turn of page caching and leave it as it is.
Thanks for your time
Forum: Reviews
In reply to: [User Login Log] Emails your admin user & email toHi qvarting,
I just installed 2.0 but don’t see any code that should do this. Could you double check or let me know more detailed where the issue is if it still persist for you? Thanks.
DeaJae: once again thanks for your help but unfortunatelly it doesn’t work. I tried importing your example, and there are no attributes imported on the attributes tab, and on variation tabs there is some unattached “Any Pa_UC101” value. See the screens after importing your example CSV.
https://dl.dropboxusercontent.com/u/52841224/example-import1.png
https://dl.dropboxusercontent.com/u/52841224/example-import2.pngI don’t have more time to spend on this, as my client will not pay for time spend on bugfixing something that should work, we chose the plugin because we needed quick working solution and not to spend hours trying to figure out why attibutes and variations don’t work together.
Anyway, if someone has similar problems, I recommend dividing the import to two files, where the first file imports variations only, and then second file assigns attributes based on sku. It is important for this to work to have set Merge products: YES in import settings:
https://dl.dropboxusercontent.com/u/52841224/import-file-1.png
https://dl.dropboxusercontent.com/u/52841224/import-file-2.pngI hope the author will address this, or at least write an article about how to set import of attributes and variations correctly together, as this was quite frustrating. Cheers
DeaJae:
Thanks for your tip, I have removed the attributes column and added |gluten->1->0 to variations column. Now the attribute is created together with amount, which is good, but the attribute is empty, it is not filled by the value from “pa_gluten” column. So I still cannot use it. See my actualised structure here:https://dl.dropboxusercontent.com/u/52841224/structure2.pngAllaerd I must confirm Attributes and Variations don’t work together, I have exactly the same issue as described above.
Screenshot of my csv structure is here:
https://dl.dropboxusercontent.com/u/52841224/structure.png
And here is my csv file:
https://dl.dropboxusercontent.com/u/52841224/test.csvIf there are “attributes” and “pa_gluten” columns present in CSV, variations don’t import and only imported attribute is “Gluten”. If I remove these two columns, or unbind them in header, attribute “Amount” is loaded correctly and used for variations.
Is there anything I am missing or is it a bug? I would need having this fixed as soon as possible, please let me know.
Forum: Plugins
In reply to: [Contact Form 7] How to make Validation Errors NOT disappear on hover.Hi, I believe you can override the function in your theme. In my case, I insert the Form shortcode by do_shortode() function, so I insert the overriden function directly after it and it works. So in my footer.php, the block of code looks like this:
<?php echo do_shortcode('[contact-form-7 id="8" title="Footer Contact Form"]'); ?> <script type="text/javascript"> jQuery(function($) { $.fn.wpcf7NotValidTip = function(message) { return this.each(function() { var into = $(this); into.append('<span class="wpcf7-not-valid-tip">' + message + '</span>'); into.find(':input').focus(function() { into.find('.wpcf7-not-valid-tip').not(':hidden').hide(); }); }); }; }); </script>Hope it helps.