riacale
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Custom CSS] CSS not being overriddenJust to get it fixed I just created a child theme.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Tiled Gallery Broken ImagesHi Jeremy,
Thanks for the reply. Unfortunately, what you suggested still didn’t work. I reduced the file size down to 25% of what it was and still nothing.
I’ve managed to just use another plugin and uninstalled jetpack. =(
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Tiled Gallery Broken ImagesAfter getting to work more than a week ago, the tiled gallery is broken again: http://scrapingthefringe.com/blog/2013/12/20/snow-day/
To be more specific, sometimes it loads the images, sometimes it doesn’t.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Tiled Gallery Broken ImagesI’ve figured it out. So as a precaution to anybody who wants to use the Tiled Gallery plugin, I recommended that you also download the plugin:
Disable Hybrid’s Cleaner Gallery (http://jetpack.me/support/tiled-galleries/ >> see link at the bottom of the page)
I’m using a fairly new Automattic theme (Ryu), not any of the themes mentioned by others before (e.g. Oxygen, Hybrid), with minimal plugins and I still needed the Disable Hybrid’s Cleaner Gallery plugin.
My suggestion to the Jetpack folks is to include that plugin’s functionality into the Media settings when the Tiled Gallery module is activated, if that’s at any all possible.
Forum: Themes and Templates
In reply to: [Wu Wei] 2.3 breaks thingsI’ve had the same issues as you and without the changelogs, I have no idea what to “fix”.
I should’ve backed-up everything before I did the update.
Forum: Installing WordPress
In reply to: After 3.2, a funky dashboardthanks for the helps guys. It was a cache issue. I just had to clear just like snat said.
Forum: Themes and Templates
In reply to: CSS problems with post-meta-dataI’ve tried that but the unintended consequence is that it happens on all the posts, regardless of how many tags there are.
I’m wondering if there is way to set the tags area so it automatically adds padding when there are more than 1 line of tags. If not, c’est la vie.
Forum: Themes and Templates
In reply to: CSS problems with post-meta-dataHere’s a link to the post where the screenshot was taken:
http://scrapingthefringe.org/2011/05/22/a-first-and-a-last/
I don’t know how much more detail I can give besides the one I mentioned in the previous post. Just to restate the problem, the main issue is that if there are lots of tags, the area for them in the post overlaps with category area.
What I’m wondering is if there is a way to fix that (CSS or otherwise) without increasing the padding on all posts. What I’m looking for is some way to have that tags area in the post just push down the category area instead of overlapping.
Thanks for any suggestions!
Forum: Fixing WordPress
In reply to: Media Uploader missing options WP 3.0does the php.ini file need to have more than just
memory_limit = 1024?Forum: Fixing WordPress
In reply to: Blank Permalink Admin Page after changing permalink typeyour site isn’t live? what’s the error text that shows up?
The same thing happened to me too but it was because I changed the permissions on my index.php file in the root directory to 666 as per the other proposed solutions I found.
When I brought it back to 644 then it went fine.
Forum: Fixing WordPress
In reply to: cannot upload images from computer (but can from url)i just encountered this problem today. i fixed my export error and blank permalinks settings page problems.
I re-installed WP 3.0 again as per MacManX’s suggestion since wp-admin and wp-includes were affected by the solutions for the aforementioned problems.
Rors, I tried your solution which was creating a php.ini file in my public_html folder and inserted
memory_limit = 64MNone of these suggestions were fixed and it’s really only the add image from my computer on the uploader that doesn’t work.
I have flashed installed too.
I changed back to the default theme, tried different browsers, and deactivated any plug-in (just the importer at the moment) I still encountered the problem.
Forum: Fixing WordPress
In reply to: Blank Permalink Admin Page after changing permalink typeEegads! Thanks Zenpih. I’ve been trying different solutions and yours was the one that worked. Just to be clear for everybody else coming into this thread the steps you should take are:
- access .htaccess file from your root directory and add the rewrite code
- go into wp-admin/includes/misc.php and replace
function got_mod_rewritewith Zeniph’s code
function got_mod_rewrite() { //$got_rewrite = apache_mod_loaded('mod_rewrite', true); //old line with false negative; $got_rewrite = true;//force the response to true as we know mod_rewite is installed; return apply_filters('got_rewrite', $got_rewrite); }
Thanks again. This is a godsend!