somethingelse
Forum Replies Created
-
ok… i am getting this error but it seems to have nothing to do with menus…
i recently upgraded to network mode in 3.1.2
that worked fine.then i installed a plugin for importing members… that seemed to work fine.
i tested the import, worked fine.
installed another plugin.
now the import doesn’t work.
deactivated that last plugin, still getting the “catchable fatal error”
so… i’m stumped.
Forum: Networking WordPress
In reply to: Enabled Multisite but Network menu hiddeni WAS experiencing this same problem.
no love on the network activation.i prefer to use sub-directories, so i skipped step 2, as it says.
so… on a whim, i compared wp-config between the site i’m working on, and another site (not a network site).
i noticed that the define (‘WPLANG’, ”); was commented out.
so, for the heck of it, i commented it back in ??
re-uploaded my wp-config and presto! network mode!not a clue why or how that worked.
or if it was in fact at all related…
but i have network under my tools menu now… and that’s what i care about ??Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Archive widget not workingalso seems to fix itself once you upgrade to WP 3.1.2 (at least it did for me, magically.)
Forum: Installing WordPress
In reply to: Upgraded to 3.1.1, now no posts showing upi’m having the same problem, and am NOT using any category plugins EXCEPT for Ninja Categories & Tags
have tried deactivating that one, no change.
tried deactivating ALL plugins, no change.
reactivated one at at time, no change.
with “simple twitter” deactivated, i got a loop.php error which i thought was weird – but will deal with that LATER.i had set a category base, no joy. Removed the category base, still no joy… reset back to “default” in permalinks settings, still no joy… don’t even get “no posts” – just get the heading “Category Archives: Category name” and nothing after that…
i’m using a child theme of Twenty Ten… just upgraded to 3.1.1
have very few plugins running.as this site is a new conversion, i’ve only got one post in one category – (numerous pages tho)
any thoughts?? i’m stumped.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Override CSSbrilliant – that’s the solution!
!important
totally does the trickthanks for the reminder of that very helpful tool.
Forum: Fixing WordPress
In reply to: exclude_category Doesn't work with WordPress 3.1BRILLIANT FIX
function exclude_category($query) { if ( $query->is_home ) { $query->set('category__not_in', '147'); } return $query; } add_filter('pre_get_posts', 'exclude_category'):
Thanks @otto! I wasted about 3 hours trying things this morning before it occurred to me this might be a 3.1 bug… and your function totally fixed my problem in 5 seconds.
have made a note, too, @mmorpglife of your multi-category fix.
thankful there are people like you who can think in code, cuz i surely cannot. ??
@trivum!! that completely did the trick.
i think part of the problem is, when overriding a function (as opposed to inserting a new one) all it wants is the actual CHANGES, not the extra parts of the function code.
i’m no programmer, but i tried every possible configuration to change the header size, assuming that i needed to call the function to begin with… but as in @trivum’s solution, only the definitions were needed, not the
function twentyten_setup() {
bit.i did not experience the lock out that @tim did… copied trivum’s code exactly.
Thanks for the fixes!
thanks John… I actually tried that
<?php echo sharing_display(); ?>
as i’d found it in a previous post, but couldn’t make it work. Likely due to my lack of programming experience… so i’ll try again.Forum: Themes and Templates
In reply to: Do not see a link for previous entries at the bottom of a pagethe code above is exactly what i have in our index.php
<?php endwhile; else : ?> <div class="post"> <h2>Page Not Found</h2> <p>Looks like the page you're looking for isn't here anymore.</p> <?php include(TEMPLATEPATH.'/searchform.php'); ?> </div><!-- .post --> <?php endif; ?> <div class="navigation clear"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div>
and i didn’t touch it but now, suddenly after upgrading to 3.1, it’s not working. I’m new to this particular website, and am not sure what it did before, but now it links to /blog/page/2 but displays exactly the same most recent posts, instead of the next oldest batch.
it’s a custom theme (not mine) and i’m wondering if there’s something up with the query…<?php // Which page of the blog are we on? $paged = get_query_var('paged'); query_posts('cat=1'); // <- EXCLUDE PRESS RELEASE AND PRODUCTS FROM THE BLOG ?>
and i’m also not super fluent in this stuff, so might be looking at the wrong thing – but this is where i’m coming to after searching & reading multiple posts on the idea.
any thoughts?
yes, i have a similar issue – sharedaddy appears to insert itself at the end of my excerpts – i cannot find any tag or hook for it anywhere…
the bit of code looks like this:
<?php the_excerpt(); ?><p class="continue"><?php printf('<a href="%s">', get_permalink()); _e('Continue reading about ', 'amazinggrace'); the_title(); ?></a></p>
and somehow sharedaddy show up after the excerpt and before the continue link…HELP. I’ve looked EVERYWHERE. Totally stumped.
Forum: Fixing WordPress
In reply to: z-index problemAWESOME… thank you. i’ve searching for this simple fix for over an hour.
me too!
Forum: Fixing WordPress
In reply to: Very important issue – after update/publish post – blank pageyep… i’m having the exact same problem.
it’s somewhat annoying and extremely unproductive.
i have not done what bdmstory has done, however i’ve also not made any structural changes since this started happening.
it’s very odd.
Forum: Plugins
In reply to: Listing categories and posts on pagesTHANK YOU THANK YOU THANK YOU…
that is EXACTLY what I was trying to do… brilliant!
and especially thank you for explaining it so clearly. I’ve been able to hack my way thru a lot, but your post made this VERY simple.
Really appreciate you sharing your learning with the rest of us. Shortened my curve substantially, today.
Forum: Themes and Templates
In reply to: All pages have the same titleyou’ll need a plugin that will allow you to customize titles for each page & post… i use Meta SEO Pack, works very well!