Edward Caissie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to delete ‘add reply’ function from titan templateYou can try editing this in your master.css file (around line 297):
.comments a { background:url("../images/icon-comments.png") no-repeat scroll 0 0.4em transparent; color:#B79F87; font-size:1.2em; padding:0 0 0 17px; display: none; }… by adding the ‘display:none;’ property the “Leave a Comment” link will no longer show.
Forum: Installing WordPress
In reply to: how does a non-tech update?You could look at posting here: http://jobs.wordpress.net/
The process should not be all that difficult, but for someone that has not done it themself before it could appear very daunting.
Forum: Fixing WordPress
In reply to: Change link in Header barThank you for choosing one of my themes 🙂
Forum: Fixing WordPress
In reply to: Change link in Header barThe theme itself will need to be edited to have the blog title link go somewhere other than the blog’s home page.
Look at line 39 the header.php file, it should look like this:
<div id="blog-title"><span><a href="<?php bloginfo( 'url' ) ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home"><?php bloginfo( 'name' ) ?></a></span></div>Change the part that reads
<a href="<?php bloginfo( 'url' ) ?>/"to this:<a href="http://www.topnotchbassbaits.com/"PS: Save your changes as the next theme update will over-write them.
Forum: Fixing WordPress
In reply to: Is there a plugin or solution for this ? (image included)It is possible to create a widget area above the posts; then use text widgets to place the content. CSS should be enough to style the content to look like what you are giving as an example afterward.
NB: Your current theme may have an impact on this idea.
Forum: Themes and Templates
In reply to: Multiple CSS rules for body & HTML tagsThat is quite the adaptation … make sure you have a complete back-up of all your changes. They will likely be over-written with the next WordPress core update(s).
Forum: Fixing WordPress
In reply to: Hiding Post Header InformationI’m glad you got it sorted …
I also noticed an item or two I would have addressed in addition to this issue when I was reviewing the source on your site, feel free to contact me if you need additional help.
Forum: Themes and Templates
In reply to: Multiple CSS rules for body & HTML tagsThat property can usually just be removed where it appears in your style.css, but that may create additional issues with your site.
A link to your blog and the active theme would help in providing more useful advice.
Forum: Fixing WordPress
In reply to: Hiding Post Header InformationMy first thought would be the theme designer created something along the lines of category or page “templates” for each of the Gallery sub-categories.
Here are some links for more reading:
http://codex.wordpress.org/Category_Templates
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_TemplatesYou may also be able to address the “post-meta” (the details in question) with CSS but, IMHO, the items are not uniquely identified very well in the theme.
Forum: Fixing WordPress
In reply to: Get name of Category a post belongs toThis article may be of use to you:
http://codex.wordpress.org/Function_Reference/get_the_categoryForum: Themes and Templates
In reply to: Back link on Single postThat’s great! You’re welcome.
Forum: Plugins
In reply to: Simple text pluginYou might consider creating widget areas in the “index” page then dropping “Text” widgets into each. Your friend could then simply change the text in the Admin section by changing the text in the appropriate widget.
Have a read through this article as well: http://codex.wordpress.org/Widgetizing_Themes
Forum: Fixing WordPress
In reply to: Get rid of border in horizontal listThe menu style appears to be coming from the nav.css file (see line 138)
If you use:
#nav-cat li { border-right:none; }At the end of that file you should accomplish removing the dotted borders between all of the menu items.
You can also look at:
#nav-cat li:last { border-right:none; }to remove the “last” border only.
Forum: Themes and Templates
In reply to: Back link on Single postIf you just want a simple back link you can use something like this JavaScript in the single.php template:
<a href="javascript: history.go(-1)">Back</a>Forum: Plugins
In reply to: [Plugin: The Events Calendar] Events List Sidebar WidgetJust some thoughts after a quick perusal …
This looks possible, but may require a “second copy” of the plugin to be installed. This second copy may need to have its “functions re-coded” to provide the second calendar functionality.
Essentially you would have one (Calendar-Plugin-1) as your “past events” and the second (Calendar-Plugin-2) as your “upcoming events”.