ethanhackett
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Tiles] PaginationInteresting. I’ll look into the fix. Thanks for taking extra effort to look into it. When I implemented the Pagination it kept adding an additional /. I had a sneaky suspicion that there might be a reason.
You moved the pagination correctly. That’s what it would take. I could add the admin control to turn bottom, top, both and then output the pagination at the beginning, end or both. That shouldn’t be too difficult. Maybe I can implement it while I fix the / issue.
Thanks for using the plugin and alerting me of the bug.
Forum: Plugins
In reply to: [Post Tiles] categories doesn't appearsAre you using the correct post categories numbers? You can see the corisponding category id numbers in the Post Tiles settings page. Under the Pick Your Cutom Tile Colors: You should see it list all your categories then in the brackets you’ll see the category ID (1) etc. Try stripping out your short code and see if any posts show up – [post-tiles]
Forum: Plugins
In reply to: [Post Tiles] Upgraded to 3.5, lost image fadeI’m running it with wordpress 3.5 and I don’t see any issues. Could you email me a url [email protected] and I’ll take a look. I can’t seem to replicate the issue on my end.
Forum: Plugins
In reply to: [Post Tiles] [Plugin: Post Tiles] Pagination to access older postsI added pagination this afternoon. Once wordpress updates based on the repository you should see 1.3.4 which has pagination and control over featured image sizes.
Forum: Plugins
In reply to: [Post Tiles] WordPress 3.5 Post Tiles1.3.3 rollover problemI just tested it with Jetpack enabled and it seems ok. Can you tinker with the Jetpack settings to see what exactly could be breaking it?
Forum: Plugins
In reply to: [Post Tiles] Breaks with W3 Total CacheI installed W3TC and the plugin seems to be ok. I tried playing with the js and css compressors too to see if that would break it. Could you enable and disable some settings in the w3tc and let me know when it breaks so I could look into it further?
Thanks,
Forum: Plugins
In reply to: [Post Tiles] page tilesIf I were to add page functionality I’m not sure how I would categorize them. See Posts tiles pulls in all the posts sorting by date and organizing them by categories.
Could you guys share with me how you would anticipate using Post Tiles if it could display pages?
Forum: Plugins
In reply to: [Post Tiles] Display categories for multiple sets of tilesThough keep in mind if you disable the all button there wont be a way to return he focus to all the posts. You could modify the javascript to toggle on the second click but that’s not in there by default.
Forum: Plugins
In reply to: [Post Tiles] Display categories for multiple sets of tilesYou could hide the all button with some simple css. Put this in your themes css folder.
#category-all { display: none !important; }
I’m looking into two categories. I forget to test the plugin with multiple groups of tiles sometimes so a bug may have slipped through. I’ll look into it.
Forum: Plugins
In reply to: [Post Tiles] Breaks with W3 Total CacheYikes. I’ll try to look into it.
Forum: Plugins
In reply to: [Post Tiles] WordPress 3.5 Post Tiles1.3.3 rollover problemThanks for the heads up. I’ll have try and test it with Jetpack. Those fargin stinking boostages. ??
Forum: Plugins
In reply to: [Post Tiles] Upcoming post?I’m not totally sure what your asking. Could you elaborate a little more?
Forum: Plugins
In reply to: [Post Tiles] Can't increase amount of tiles past 8If you uncover what the issue is please come back and post it or email me.
Did you find out what was adding the strong tag around the tiles?
Forum: Plugins
In reply to: [Post Tiles] Can't increase amount of tiles past 8There shouldn’t be any conflict between the two pages. I’m not sure if having posts=’82’ is too high for a server. If you strip out the custom parts and just ust the [post-tiles] short code does it work?
And the categories should separated by commas unless 174 is your category.
The other thing I noticed which seems odd is that when I view your source code on this page https://www.basic.fm/?page_id=2555 it wraps the list items in three strong tags. But that isn’t happening on this page https://www.basic.fm/?page_id=39.
I’m wondering if the archive page has some conflicts with this. I would check your wordpress settings to see how many posts are set to display at one time. In Settings > Reading check to see how many posts are set to display.
I wonder if it’s having an issue because it’s an archive page not a regular page. If it’s an archive page it might be running multiple queries to pull in posts and could be having a conflict with the query used in the Post Tiles.
Forum: Plugins
In reply to: [Post Tiles] Featured Image ThumbnailsI’d like to add this into the next version of Post Tiles. At the moment with version 1.3.3 the only way to change them is to edit the plugin file.
Open the plugin file post-tiles.php located in your wp-content > plugins > post tiles > post-tiles.php.
On line 459 it says
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), array(350,350));
Change the array to the size you want. Keep in mind at the moment this a custom change so if you update the plugin later it will override this change. So just make a note of what customizations you make so you can easily make them again after you update.