Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Listing only specific pages in main menuYou’re welcome!
Forum: Fixing WordPress
In reply to: How to add a widget – photo – to one page onlyYes, it is possible … but it will likely include theme specific edits to accomplish what you want done.
Forum: Fixing WordPress
In reply to: Listing only specific pages in main menu<?php wp_list_pages('title_li=&depth=1&include=3,5,9'); ?>That should do the trick …
Forum: Plugins
In reply to: Plug In: Sociable – how do I get rid of the arrows?Hmmm …
Well you can try to be more specific with:
div#r_sidebar li#social-media-page ul li { background: none; }Forum: Plugins
In reply to: Plug In: Sociable – how do I get rid of the arrows?Right now this is controlling those “arrows”:
#r_sidebar ul li { background:url("images/bullet.gif") no-repeat scroll 0 11px transparent; display:block; margin:0; padding:4px 0 4px 10px; }You can try adding to the end of your style.css file:
.smpWidget ul li { background: none; }Forum: Fixing WordPress
In reply to: Weird get_permalink() problemIf this is just for your personal use with your current theme, I would suggest some possible (untested) ideas:
- Add a variable into the loop used in single.php, page.php, etc. to capture the permalink, such as
$static_link = the_permalink() - Edit your “widget” to return the blog URL if on the home or front page, else use the $static_link as the redirect URL
Forum: Fixing WordPress
In reply to: I have created a website, can I switch the host?If you are just designing the theme, layout, etc. then it is a relatively easy thing to “move” the web site to another host. If you are populating the site with content prior to moving it, it can become much more complicated but still possible.
First off … I would review your theme, unless of course you want unrelated links in your footer?!
The issue you are seeing is also likely theme dependent, if you are able to find a “clean” version of the theme (as in directly from the author, or from the WordPress repository) you may be able to better edit it.
Forum: Fixing WordPress
In reply to: Show picture of myself (author) in discussionsWithout at least a link to your web site, and/or what theme you are currently using it is very difficult to offer any tips for this issue.
Forum: Fixing WordPress
In reply to: I want the time I posted something to show upLook at these functions:
http://codex.wordpress.org/Template_Tags/the_time
http://codex.wordpress.org/Template_Tags/the_modified_time… see about adding one of them to the appropriate template files in your theme.
Forum: Fixing WordPress
In reply to: Weird get_permalink() problemget_permalink()must be used in the loop … is your login widget part of the loop?PS: I tested this with my BNS Login plugin and it gives a similar “error” to what you are describing if I change the code to your example.
Forum: Plugins
In reply to: Removing the author/date line.This should be easy to do with CSS but it will also be theme specific … without a link to your site and your current active theme I can offer little more.
Forum: Themes and Templates
In reply to: Displaying Author nameYou will likely need to edit your theme files: index.php and single.php to add the following function:
the_author()where you want it to display.See this page for more details: http://codex.wordpress.org/Template_Tags/the_author
Forum: Fixing WordPress
In reply to: Listing only specific pages in main menuJust use the
includeparameter ofwp_list_pages()to specify which pages you want to show.If you need help identifying the pages, try this post for more information: http://wpfirstaid.com/2009/12/find-wordpress-id/
Forum: Plugins
In reply to: Which WP Filter Does this …?I would suggest looking at
the_excerpt()function, although it is possible your theme may have a custom excerpt function that it is using. - Add a variable into the loop used in single.php, page.php, etc. to capture the permalink, such as