Dan Griffiths
Forum Replies Created
-
Forum: Plugins
In reply to: [Share and Follow] [Plugin: Share and Follow] Not all icons showing?Much better! Just out of curiosity… what was the issue?
Forum: Plugins
In reply to: [Share and Follow] [Plugin: Share and Follow] Not all icons showing?I’ve tried clearing the cache, as well as switching between sprites and images with no success… it’s not just the image that doesn’t show up, but the code itself.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] 404 not found?Me or iulia1? I did
Forum: Themes and Templates
In reply to: Homepage link in WP3 custom menuCorrection… I got it working. Then I modified it. I’m now using the following, which works. However, for some reason, single posts don’t work still.
<?php if ( !is_page(array('page1','page2')) ): ?> <script>$('div#menu1 ul.rMenu li:first').addClass('current-menu-item');</script> <?php endif; ?>Forum: Themes and Templates
In reply to: Homepage link in WP3 custom menuTrying to follow phrozenRa’s suggestion, I added the following, but it doesn’t seem to work. Any suggestions?
<?php if ( is_home() || is_front_page() ): ?> <script>$('div#menu1 ul.rMenu li:first').addClass('current-menu-item');</script> <?php endif; ?>Forum: Fixing WordPress
In reply to: Blogroll in menu?I could, but I don’t want to add it to the sidebar. I actually want to add it to the main site menu
Forum: Plugins
In reply to: [Plugin: Content Warning] Option on post baseI’ll second this… it’d be incredibly useful if only it had the options to show on specific pages/posts.
Forum: Plugins
In reply to: Post attribution?I ended up adding the following to index.php in the post footer:
<?php $customField = get_post_custom_values("attribution"); if (isset($customField[0])) { echo "<a href=\"$customField[0]\">Attribution</a>"; } else { echo "No Attribution"; } ?>and adding a custom field called ‘attribution’. Works great!
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Getting a 404 Error when submitting a formI have the same issue… Any suggestions?