d3rck
Forum Replies Created
-
Forum: Your WordPress
In reply to: Please review thisSite looks good. Why not make a favicon for your blog to make it look more professional? Just a suggestion though…
Forum: Plugins
In reply to: [Link Library] Edit color on links?I’m not sure if you already figured this out but you can use css to text color your links.
Forum: Plugins
In reply to: [Link Library] Date and time?!I’m not a coder but I don’t think it’s a problem with the plugin anymore. Link Manager is a core wordpress feature (pardon my terms.). I think you’ll get answers if we ask wordpress support people about this issue.
Forum: Plugins
In reply to: [Link Library] Date and time?!Not an expert but have you tried going to your link manager and editing a link? There should be a “tick box” that would let you change the “updated date”.
Forum: Plugins
In reply to: [Link Library] Arrange links based on rating or # of hits?Anybody knows a hack for this? TIA
I’m also using Expound on my site. Just as Vinn95 said, your code doesn’t have opening and closing tag…. it should look like (In the Functions.php):
<?php /* Edits goes Below */ add_filter( 'expound_credits_text', 'my_credits_text' ); function my_credits_text( $text ) { return 'My custom footer text.'; } ?>Forum: Themes and Templates
In reply to: [Graphene] [Theme: Graphene] Links in the copyright sectionOk. I got this from the Support forums.
function graphene_remove_credit(){ global $graphene_settings; $graphene_settings['disable_credit'] = true; } add_action( 'template_redirect', 'graphene_remove_credit' );Post that in your child themes functions.php and it will the the “right side” of the copyright-footer section with the exception to the “Go to Top” link.
Forum: Themes and Templates
In reply to: [Graphene] Show posts as thumbnailsOk. If anyone is still looking. I switched the homepage to use a static homepage and did a css in the homepage panes.
Please close this. I have already found a solution by trying a different plugin. Thank you.