bradyjfrey
Forum Replies Created
-
Forum: Plugins
In reply to: Role Manager Plugin for wordpress 2.1Cross reference for other searches:
https://www.ads-software.com/support/topic/103537Forum: Plugins
In reply to: Role Manager fix for WP 2.1You’re welcome alle:)
LostInNetwork, not sure how to do that or if any plugin out there has that feature. So far I’ve only seen Role Manager come anywhere near the ability for that functionality, but it doesn’t sound like it can handle what you’re after.
Forum: Plugins
In reply to: Role Manager – UTF8, ProblemYou can download instead of dealing with the html scruff, or going through the diff, at:
Download zip of changed fileForum: Plugins
In reply to: Role Manager – UTF8, Problemhttps://www.im-web-gefunden.de/2007/01/28/wordpress-21-role-manager-plugin/
Found a fix, some of the code had to be readjusted to work with the new links in 2.1, or should I say locations of files. I’ll upload a zip in a second.
Forum: Fixing WordPress
In reply to: hacking wordpress3rd agree, get a new host, that’s not a wordpress vulnerability.
Forum: Plugins
In reply to: Verticle menu in WordPress adminAnd a plugin I found:
https://www.yellowswordfish.com/index.php?pagename=admin-drop-menus-for-spotmilk-wordpress-pluginThis was a perfect basis for doing some major CSS reworking of his code:
https://kamalaspa.com/hackedplugin.pngI’ve emailed the developer of the plugin to see if he wants the CSS as a working alternative. His Javascript lists out all the options for me, otherwise I’d have to hack wp-admin.css heavily like you noted. Thanks!
Forum: Plugins
In reply to: Verticle menu in WordPress adminNah, it’s a hack I’ll have to do to menu-header.php in the admin folder, or a plugin. The PHP is calling the sub options based on the parent menu… anyone have any tips or references to this?
Forum: Plugins
In reply to: RSS? I don’t get it.That RSS link didn’t hold up so well, try this:
RSS Wiki informationForum: Plugins
In reply to: RSS? I don’t get it.RSS is a language to deliver content to news readers, not a browser (unless, of course, your browser doubles as a newsreader, as does Firefox and Safari). WordPress already has RSS automatically built in, so you do not need to do anything but Post up content. So, RSS is a support to your blog, and delivers content to users, but not in the way I believe you’re assuming.
To post up content, just design your theme using the wordpress theme/tag designs as intended. Use the admin to post up articles and write pages – RSS feeds will create themselves automatically, and depending on your design, the admin system you’re using to write content will post to your site accordingly.
More information on newsreaders:
https://www.newsgator.com/Home.aspxMore information on RSS:
https://en.wikipedia.org/wiki/RSS_(file_format)More information on wordpress tags:
https://codex.www.ads-software.com/Template_TagsForum: Plugins
In reply to: adjust formatting whitespace wp_get_archives outputsAnd IE7 which is what makes me angry:(
Forum: Plugins
In reply to: adjust formatting whitespace wp_get_archives outputsNevermind, solved it, here’s how to adjust it:
1) in the wp-includes folder open up ‘template-functions-general.php’
2) on line 271 remove the /t and the /n (to remove the tab and hard break
3) save itNow my code is unformatted with tabs and returns, looks beautiful in IE as intended. Sorry for the troubles, now I”ll have to remember this hack – might be a nice bug to post?
Forum: Fixing WordPress
In reply to: Display a list of days in a monthly archive?No ideas, anyone?
All I want is if you click on the monthly archive, it doesn’t display every post for that month, but every day of posts, like:
Archive for Archive for March, 2006
March 1st
March 2nd
March 3rdLooks like I’ll need to make me a plugin…
Forum: Fixing WordPress
In reply to: Adjust contributor capabilities to write, publish, but not editThank you, that is an excellent application:) However, is there any documentation on how to do this without a plugin?
Forum: Fixing WordPress
In reply to: putting individual day archives in ascending orderResolved via Andrew Krespanis with:
<?php query_posts('day='. get_the_time('d') .'&order=ASC'); ?>
Forum: Fixing WordPress
In reply to: Only Monthly archives to show a list of postsNo, it is listing all the dailies regardless of the current archive month. Here is the demo site, and here is my full code:
<?php get_header(); ?><div id="content">
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class="entrydate">Archive for the '<?php echo single_cat_title(); ?>' Category</h2><?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class="entrydate">Archive for <?php the_time('l, F jS, Y'); ?></h2><?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class="entrydate">Archive for <?php the_time('F, Y'); ?></h2>-
<?php wp_get_archives('type=daily'); ?>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class="entrydate">Archive for <?php the_time('Y'); ?></h2><?php /* If this is a search */ } elseif (is_search()) { ?>
<h2 class="entrydate">Search Results</h2><?php } ?>
<?php while (have_posts()) : the_post(); ?>
<h3 class="entrytitle" id="post-<?php the_ID(); ?>"><cite><?php the_time('H:i') ?></cite> <!-- " rel="bookmark"> --><?php the_title(); ?> <?php the_author();?></cite></h3><div class="entrybody">
<?php the_content(__('(more...)')); ?>
<?php edit_post_link('Edit'); ?>
</div><?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?></div>
<?php get_footer(); ?>I’d actually like to limit the loop to only show on daily page views, but I am ok having that load at the bottom as well, so long as the monthly results shows only that monthly page.
Thank you for the help:)