Twansparant
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Images] HTTP error when uploading large filesActually it might be the time it takes to the script to do everything. Can you try to disable all the Retina size in the settings? Try again? (should work) Try to active only one size?
When I disable Auto Generate, upload my large photo and manually generate the retina images afterwards, everything goes fine.
My error log says:
PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 15360 bytes) in /path/to/mydomain/public_html/wp/wp-includes/media.php on line 2743
So indeed it’s a memory problem…
Forum: Themes and Templates
In reply to: [onetone] Switching to visual editor removes part of codeSorry I was in the wrong section, I don’t use the onetone theme, but I did discover that this solution still works: https://www.leighton.com/blog/stop-tinymce-in-wordpress-3-x-messing-up-your-html-code
Forum: Themes and Templates
In reply to: [onetone] Switching to visual editor removes part of codeI have the same problem!
The WYSIWYG editor just strips my whole list completely, even with text between the
li tags. Very annoying.It seemed the missing translations in the email notifications only occurred when resending existing orders, when I place a new order the translations are correct in the emails.
Forum: Plugins
In reply to: [WP Less Compiler] Does this auto-compile?Never mind, I bumped into this post to compile my less files manually and it works great!
https://www.tailored4wp.com/how-to-use-less-auto-compiler-in-your-next-wordpress-project-quick-tip-361/Forum: Plugins
In reply to: [WP Less Compiler] Does this auto-compile?I would like to know exactly the same?
What exactly do you do when you get the 404 ?
Did you get the 404 after ticking the checkbox and then Save settings ?No, but the click here to check again link in the commentary underneath the checkbox also points to the wordpress install folder and not the homepage.
Ah, never mind. Just found the problem in the tweaks_wordpress_safe_jquery() function. Indeed using site_url() (twice).
Cool, so this will be fixed in the next version?
Forum: Fixing WordPress
In reply to: All Images are not appearing in Media Library Grid ViewDid any of you also use the WPML Media addon?
I think that’s what caused it in my case, since it didn’t automatically update I had a fairly older version installed. When I updated it and reviewed it’s settings (checked ‘When uploading media to the Media library, make it available in all languages’ & ‘Translate existing media in all languages’), the media library showed everything again!Forum: Fixing WordPress
In reply to: All Images are not appearing in Media Library Grid ViewSame here!
Anyone found a solution or incompatible plugin?
Thanks!Forum: Plugins
In reply to: [Perfect Images] Issue with crop positionDid you try the code on your side Twansparant?
Not yet sorry, but I can today if you send the beta version.
Thanks!Forum: Plugins
In reply to: [Perfect Images] Issue with crop positionThanks @nicscott01
Looks like you figured it out already! Great!Forum: Plugins
In reply to: [Perfect Images] Show Retina Column for editorsHi again,
Just wundering if this feature made it into the last version?
We still got the option: Hide ‘Retina’ column
But I would really like to Show the column for editors too, not just admins.Thanks!
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Use taxonomy terms as categoryDid you put this code in your theme’s functions.php?
Yes I did!
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Use taxonomy terms as categoryThanks for your reply, but that only works for post tags.
I found a workaround that adds the tags on save based upon the post taxonomy terms like this:/** * Add Podcast Taxonomy Terms as Tags for RSS feed */ function set_podcast_tags_on_publish($post_id, $post) { if ($post->post_type == 'podcast' && $post->post_status == 'publish') { $genres = get_the_terms($post_id, 'podcast-genre'); if($genres) { foreach($genres as $genre) { wp_set_post_tags($post_id, $genre->name, true); } } } } add_action('save_post','set_podcast_tags_on_publish', 10, 2);
Forum: Fixing WordPress
In reply to: non-working category archivesI see…
What number is in your Settings > Reading > Number of posts in WP? Try setting the number of posts for archive sin your functions.php:function limit_posts_per_archive_page() { if ( is_category() ) { set_query_var('posts_per_archive_page', 30); } } add_filter('pre_get_posts', 'limit_posts_per_archive_page');