dsbacon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pretty permalinks break home page.If anyone has any ideas on this I could really use the input.
Forum: Fixing WordPress
In reply to: Site running slow and some links not working at all…JonI, sorry about that. The problem with that page is that the feed comes from an IDX service that allows us to imbed information directly into our site. I can make the images smaller – guess that will help but it wont solve the lack of respose earlier. Must be occasional server issues? Thank you for checking it for me…
Forum: Fixing WordPress
In reply to: Site running slow and some links not working at all…Thanks Jon, I’ve seen this problem off and on. Its loading for me now too, but often it drags on and I get incomplete requests. It was particularly bad when I posted earlier. Maybe its temporary server issues with the host?
Yes, thats a massive file, but one of the three most popular on my site. Ive been thinking about how to restructure that…
Forum: Fixing WordPress
In reply to: More tag stopped working…Thanks for the help! It was an update to Thubmnail for Excerpts that broke it. I’ll try disabling each plugin next time before I post…
Forum: Fixing WordPress
In reply to: More tag stopped working…Anyone?
Forum: Fixing WordPress
In reply to: More tag stopped working…Update: If I completely remove the More tag from a post, my post is still shortened and has “…” at the end. So suddenly something is controlling, or automatically shortening, the posts on my index page. What could do that? I checked everything in Settings, etc.
Forum: Themes and Templates
In reply to: Editing Twitter for WordPress CSS classesSolution: I looked for where the styles are set for hours but never found them. I did find a workaround however:
In twitter.php, find the line:
if ($list) echo '<li class="twitter-item">';And replace it with the follwing to format the entries:
if ($list) echo '<li class="twitter-item" style="padding:4px 0px;">';Forum: Plugins
In reply to: I broke twitter.php, and it broke my siteForum: Themes and Templates
In reply to: Change width in F2 theme for a single pageThanks henkholland! I went down that road but was not able to make it work. The theme developer generously sent me a solution. It turned out to be quite easy. Here it is for anyone else who may stumble across this post.
First remove the sidebar call for the particular page at the bottom of page.php, as detailed in this post: http://wordpress.org/support/topic/168199?replies=5.
After that, make the following change to functions.php:
On line 438, you’ll find code
if($sidebar_r == ‘off’)
replace it with
if($sidebar_r == ‘off’ || is_page(57))
Similarly replace line 452 with
if($sidebar_l == ‘off’ || is_page(57))
That’s it!
Forum: Themes and Templates
In reply to: Change width in F2 theme for a single pageThat was strange, the link was blanked out. I’ll try again…
Forum: Themes and Templates
In reply to: Change width in F2 theme for a single page