agiesbrecht
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_tag_cloud displays correctly… except on the home pageSame thing. I manually added the following code to the most recent Twenty Eleven theme:
<!-- manually added --> <div> <h5>Tags populares</h5> <p><?php wp_tag_cloud('number=50&smallest=10&largest=10&orderby=count&order=DESC'); ?></p> </div> <!-- manually added -->
It was the only thing I changed in the default theme for this test.
But, again, all pages showed the tag cloud, but not the home page.
Forum: Fixing WordPress
In reply to: Home Page Different From Landing PageI’m no specialist, but it seems like “Home” is a category in your site.
Forum: Fixing WordPress
In reply to: Images do upload, but only size WordPress shows is 0x0?
Forum: Fixing WordPress
In reply to: Images do upload, but only size WordPress shows is 0x0Another data, after some tests tonight: every single time I try to upload from the laptop it goes smoothly; every single time I try to upload from the desktop I get the “0x0” images.
Any clue?
Forum: Fixing WordPress
In reply to: Uploaded images show dimensions of 0x0 in 3.3I also have this problem, but at least in my case it doesn’t seem to have anything to do with permissions (777 for all directories involved). I also haven’t any any domain or server change.
The only thing related that has changed is that I added a new image size via funcions.php on my theme, but I have tested removing it, and it didn’t work:
if ( function_exists( 'add_image_size' ) ) { add_image_size( 'destaque', 960, 640 ); }
The problem appeared after upgrading to 3.3. I have upgraded to 3.3.1, yet the problem persists, both with the new and old uploader.
One other thing: the files are being uploaded to the server; it’s just that I can’t see the sizes on WordPress.
Strange thing: when I do it from my laptop (same Windows and Firefox versions, same internet connection), it works as it should. But only from it.
Forum: Fixing WordPress
In reply to: Tagging imagesWell, if there’s anyone interested, I found two plugins that take care of this: https://www.shibashake.com/wordpress-theme/media-library-plugin-2-4 and https://www.codehooligans.com/projects/wordpress/media-tags/.
I’m using the latter, but I still have to test it further.