Krissy
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Post Type UI – Menu ErrorTo clarify – When adding the category to the menu the box shows pink and just says “Invalid”, upon some edits I was able to actually get the title to load but upon saving all it tells me is: There are some invalid menu items. Please check or delete them.
Forum: Plugins
In reply to: [WP-FAQ] WP-FAQ only displays 1 post per groupDisregard, this issue is server related, not script related. My apologies.
Forum: Hacks
In reply to: Recently on Last.fm Plugin HelpDisregard, my fiance is able to create a hack for it.
Forum: Hacks
In reply to: Recently on Last.fm Plugin HelpThe plugin name is on the title – http://wordpress.org/extend/plugins/lastfm-recent-tracks-widget/ – is the link for it. “Recently on Last.fm”.
When installing the plugin it only gives me one instance of it on the Widgets list. I’m wondering if anyone knows of a hack that I could put in with just a simple PHP line. The creator doesn’t appear to be updating the plugin, I’m hoping someone else has used it recently other than myself.
Forum: Themes and Templates
In reply to: issue with the tool bar not showingHave you looked under the profile settings for your username to see if the toolbar is active?
Forum: Themes and Templates
In reply to: Changing the Color of the #access a { } backgroundI honestly have no idea about Google Chrome, that’s nothing to do with WordPress.
As far as the style.css, that has nothing to do with the links. You’re looking to edit header.php around line 83
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">You can then change the URL to whatever you please
<a href="http://google.com">Forum: Themes and Templates
In reply to: Category Archive PageThe two options that I found with a quick search:
http://wordpress.org/extend/plugins/wp-category-archive/
This plugin may allow you to do what you’re looking for.
The following call tag may allow you to accomplish as well
<?php wp_get_archives('cat=1'); ?>Create a page and include this on the template, it should give you the desired result as well.
Forum: Themes and Templates
In reply to: Is it possible to link navigation tab to anchor link?<ul id="navlist"> <li class="<?php if ( is_home() or is_archive() or is_single() or is_paged() or is_search() or (function_exists('is_tag') and is_tag()) ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>/">Home</a></li> <?php wp_list_pages('sort_column=menu_order&depth=1&title_li'); ?> <li> <a href="#termsandconditions">Terms & Conditions</li> </ul>Note, that this will place the terms and conditions at the end of the list, there is no way to work it into the middle (as far as I know).
The only change made was adding another list item before the closing tag.
Forum: Themes and Templates
In reply to: Changing the Color of the #access a { } backgroundstyle.css contains everything you’re looking for.
On line 520 of style.css#access { background: -moz-linear-gradient(#252525, #0A0A0A) repeat scroll 0 0 transparent; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); clear: both; display: block; float: left; margin: 0 auto 6px; width: 100%; }the #252525, #0a0a0a
Change it to whatever two colors you wish, or replace it with
background: #DDD;Forum: Themes and Templates
In reply to: Is it possible to link navigation tab to anchor link?The only way that I personally know would be to edit the code on the template itself and add “Terms & Conditions” as it’s own link with the anchor.
Forum: Themes and Templates
In reply to: Question On Downloading ThemesYou can load as many themes with WordPress as you please. There’s no limit. If you wish to remove them from the /wp-content/themes folder you can, but if you look under the “Appearance” tab in WordPress you can view the screenshots for all themes that you’ve installed in-case you wish to switch back and forth with them.
Forum: Hacks
In reply to: Custom IMAGE / Photo ArchiveAnyone have any ideas?
I’ve looked through every plugin I can find, nothing is doing what I need it to – and custom post types just aren’t displaying things the way I need.
Basically I need a daily webcam where each cam image can be commented on as the ‘view larger’ image will display directly to a blog entry with said photo.
I already tried setting up the image link in the_excerpt and trying to pull it that way for the single category but it just won’t work. Help?!
Forum: Developing with WordPress
In reply to: SQL Table StructureAwesome! I was able to repair the old tables (but WordPress still wouldn’t properly work for me) so I imported them to the new installation and everything appears to be fine now.
Thank you so much for your help!
Forum: Developing with WordPress
In reply to: SQL Table StructureDAMN!
MySQL said:
#145 – Table ‘./username_wrdp/wp_terms’ is marked as crashed and should be repaired
That’s the error I get with it. Is there any way to repair it? The wp_term_relationships and wp_term_taxonomy tables appear to be fine. It’s just the initial wp_terms one that has crapped out on me.
Forum: Everything else WordPress
In reply to: Display based on CategoryThank you very much for your replies but I still have a small issue. These templates only work for individual entries. I’d need it to setup on the index.php file as well.
Any advise?