ecsdave
Forum Replies Created
-
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?True that, Ipstenu.
Ipstenu said:
Right 🙂 Which means IF you do want to change your permalinks, you have to ALWAYS do it from Network Settings.
This is not… tenable or sustainable for CLIENT sites, alas.
Users the world over are hoping you’ll do this… ;=)
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Ah, did I not mention that part, in my post above – Remove /blog in url for root blog in wordpress 3.1 multisite installation… ;=)
Oops!
Let me mention it here then…
Once you’ve found that the /blog is removed from your posts “live” permalink structure, do NOT go back in and change/save it again. It’s already “fixed”.
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Well, if you DO find it, and can “fix” it, I’m certain that multisite users the world over will applaud your efforts!
…….
Bravo!! ,,, !!!!\\\\ ''!_ |||| ' \'-'''| '\ / )\ \ ejm / \ \ \…….
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?I did poke around in the db (prior to trying the plugin) but kept getting the 404… 😉
Also, THANK YOU for being active on this… ;D
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Oh, and I probably should have, but didn’t (I am using post_id) replace /blog with something else in my permalinks…
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Yes, indeed, on the permalinks option page, it STILL shows up (outside of the little box), but… As far as I can tell, it is NOT in the permalink at the top of a new posts editing page, nor is it there when the post (not page) is saved, and is live…
I may have left out a step, in my comment above, or I may not have… I really don’t remember. I tried to comment all the steps as best I could recall. All I know is that “for now”, the /blog is not on my new (or old) posts any more, and if you put /blog into the url yourself, it gets stripped, and there’s no 404. 😉
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Well, I don’t know how, but I did it…
I used the http://buddydev.com/http//buddydev.com/public-download/cc-remove-blog-slug-v-1.1.zip plugin, and as best I can remember, it did NOT appear to work.
Ah, the plot thickens…
Of course, I followed some instructions, somewhere, that said to copy your custom permalink structure from out of the little box, and save it somewhere, then select the default option, and save. This with the above plugin installed (as super user/network admin) and activated.
The next step said to then put your custom permalink code back into the little box, and save again. I did that.
Tested the post links, still had /blog in them, and when deleting that string, got the “404”…
Okay, so I figured why keep this plugin, if it don’t work, right? So I go back to network admin, deactivate, then delete.
So, now I’m thinking I don’t want /blog in my url, so I’m guessing “pages” are the way to go (and some say that is so, but I’m not going to debate that here). So I go and copy paste the post, to a page. All is well…
Later on, after dinner, I come back to the blog, as the post/page wasn’t finished. Amongst doing other things, and still having the “Hello World” post in the list, I click on the view link (I had modified the post, instead of deleting and creating a new one), and voila, the /blog seems to have disappeared, and trust me, it had been there before!
So, I ADD the /blog part back into the url, and… it gets stripped on hitting the enter key, and the post loads. Wow!
I’m guessing I just fixed (or broke) something, and eliminated the /blog from my root multisite (3.1) blog… 😉
And, on further testing, the /blog is NOT in newly created posts…
Things that make you go Hmmmm…
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Oh darn!
;=(…
Forum: Networking WordPress
In reply to: plugin: Remove Blog Slug for resolving multisite url confusion?Okay, I see that /blog/ is stuck in there…
I just changed over to a mu/multisite setup…
Can I change it to another term, other than blog?
Thanks!
(3.1 version)
Forum: Requests and Feedback
In reply to: Simple title solution for P2 themeHmmm,
Jason, I tried your “mod” and didn’t see a difference?
See here: FreeAffiliateTraining.info BlogForum: Requests and Feedback
In reply to: Simple title solution for P2 themeThis would be nice!
show up as a H2 title in the “feed”… give users the option to “Use first line as title”
Please, may we have this, LOL!
Forum: Fixing WordPress
In reply to: Tag Cloud Overflows*** bump ***
Forum: Fixing WordPress
In reply to: Tag Cloud OverflowsI have the same problem, and it is not a plugin, it is a widget…
The tags vary in size, I’d like them to wrap to the next line,
but cannot find the “css” to accomplish this.Thanks in advance for any assistance.
Forum: Installing WordPress
In reply to: What files are changed? Is MySQL updated?What if you have mods?
I’ve modded several areas/files and after browsing the topic titles here
I’m wary of “upgrading”…Forum: Fixing WordPress
In reply to: Show Comments by DefaultWith the following code implemented with the index.php in your themes folder:
<?php get_header(); ?> <? if(!$single){ $withcomments = TRUE; } ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <?php comments_template(); ?> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>You should have what you want for your comments display.
…and I believe this thread is RESOLVED, lol
😉
ECS Dave