Ate Up With Motor
Forum Replies Created
-
Forum: Hacks
In reply to: Setting comment_notes_after in comment_formThat gives me a syntax error; something about the echo statements isn’t punctuated right, I think.
Forum: Themes and Templates
In reply to: [Frontier] Formatting problems in IE 8I will try that with the genericons.
As for the other, maybe it’s that IE 8 doesn’t support the box-shadow property; there’s no shadow around any of the widgets, either, although there is in other browsers.
Well, I can live without that. Modernizr at least keeps the layout from looking broken, even if it’s not as pretty this way.
Thanks again!
Forum: Themes and Templates
In reply to: [Frontier] Formatting problems in IE 8Okay, I installed modernizr and that seems to have fixed many of the issues.
The genericons still don’t show up (they now appear as empty box characters), which I’m not too worried about. However, I am concerned that the content area and main menu border properties are still not being followed. It seems like IE 8 is still expanding the element content/colors to the edges of those elements in a way that makes the borders disappear. (I’m dimly aware that IE treats width and margin/padding attributes differently than other browsers.) Do you have any suggestions in that regard?
Thanks!
Forum: Themes and Templates
In reply to: [Frontier] Change number of footer widget columns?Okay, that works (although I still have to figure out how to get it to center).
Thanks again!
Forum: Themes and Templates
In reply to: Creating an HTML sitemap *without* a plugin?Okay, I think I’ve got it. For the benefit of others, here is what I finally ended up with:
<?php // Add categories to exclude in the exclude here $cats = get_categories('exclude='); foreach ($cats as $cat) { echo "<h3>".$cat->cat_name."</h3>"; echo "<ul>"; $archive_query = new WP_Query('posts_per_page=-1&order=asc&orderby=title&cat='.$cat->cat_ID); while ($archive_query->have_posts()) { $archive_query->the_post(); $category = get_the_category(); echo '<li><a href="'.get_permalink().'" title="'.get_the_title().'">'.get_the_title().'</a></li>'; } echo "</ul>"; } ?>
That produces a list of all posts grouped by category and then sorted in ascending alphabetic order by post title.
Thanks, esmi! (And thanks again to Joost de Valk for getting me most of the way there.)
Forum: Themes and Templates
In reply to: Creating an HTML sitemap *without* a plugin?Ahah, I got that to work instead of query_post() — now I have to see if I can get the orderby syntax right.
Thanks!
Forum: Reviews
In reply to: [Broken Link Checker] Good plugin, but now get error 500 on all my site.It sounds like you’re on a shared server with limited memory. (I run into this a lot and it’s really a server issue rather than something specific to the site or plugin.)
You could try changing the server load limit setting in the Link Checker advanced setting.
Forum: Themes and Templates
In reply to: [Frontier] Changing read more text?That’s it exactly. Thank you so much — I spend most of yesterday trying to get my head around how to set up the code for that!
Forum: Themes and Templates
In reply to: [Frontier] Adding prev/next to paginated articlesOkay, thanks!
Forum: Plugins
In reply to: [Yoast SEO] Disable WP SEO from altering permalinks (stopwords)Thanks, Justin — I was gnashing my teeth about this.
Okay, I think I solved the problem. What it appears happened is that after importing, the database desperately needed to be optimized (particularly because the import failed once and I had to delete everything and start over). There was so much junk that optimizing reduced the size of that table by 64 MB.
I would suggest that people make a point of optimizing their database after completing the import (and to definitely do that if they have this kind of a problem). For future releases, it might also be worth considering adding a feature to optimize the database from the plugin itself, especially for users who aren’t comfortable with phpMyAdmin. I don’t know how feasible that is, but it would be a nice addition.
Thanks!
But why would the imported database table cause backup errors at all? That’s the part I’m not getting. Is there a way to clean that up?
Forum: Plugins
In reply to: [Visual Form Builder] Ordered/unordered lists in instruction fieldOkay, good to know. Thanks!
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Question about time zonesWill the fix be incorporated in the next official update? (I’m not the most technically skilled, so I tend to be hesitant about beta versions.) If so, I might wait for that. It’s a minor point at present.
Thanks!
Forum: Themes and Templates
In reply to: Child Theme: Removing scripts from parent functions.phpI’ll try that, thanks!