cory huff
Forum Replies Created
-
No. The top image is a featured image, the bottom image I added in the event description text editor. Neither image is showing up on the event summary page. http://jwsegler.com/events-2/
That article just talks about resizing and caching images. My problem is that the image doesn’t show up at all.
Forum: Plugins
In reply to: [Audio Player] File Not Found errorSeriously? Nothing?
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorI rebuilt the site from the ground up on GoDaddy’s servers.
Since then I’ve come across a number of issues when migrating to GoDaddy servers from other hosts. I’ve started recommending clients switch from GoDaddy to other hosting platforms. GoDaddy has some strange things going on that aren’t compatible with code built on other servers.
Forum: Fixing WordPress
In reply to: Creating three columns of content on full width pageOf course. That makes perfect sense.
*slaps forehead*
Forum: Fixing WordPress
In reply to: Creating three columns of content on full width pageThe themes are different, but the html I used should function the same, shouldn’t it?
<table style="height: 250px; width: 250px; margin: 1px auto;" border="0" cellspacing="10" cellpadding="10" align="center"> <tbody> <tr> <td style="text-align: center;"><a href="http://artempowers.me"><img class="aligncenter size-full wp-image-3012" title="art_empowers_me" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/art_empowers_me.png" width="243" height="169" /></a></td> <td style="text-align: center;"><a href="http://theabundantartist.com/done-for-you-artist-websites/"><img class="aligncenter size-full wp-image-3014" title="artist_websites" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/artist_websites.png" width="243" height="169" /></a></td> <td><a href="http://theabundantartist.com/courses/"><img class="aligncenter size-full wp-image-3017" title="coaching" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/coaching.png" width="243" height="169" /></a></td> </tr> <tr> <td style="text-align: center;">A Members-Only Site for Artists Who Want to Learn to Sell Their Art Online</td> <td style="text-align: center;">Your Personal Artist Website and Marketing Plan</td> <td style="text-align: center;">Individual, Targeted Help for Artists With A Specific Need</td> </tr> <tr align="center" valign="middle"> <td style="text-align: center;"><a href="http://artempowers.me"><img class="aligncenter size-full wp-image-3021" title="learn_more_btn" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/learn_more_btn.png" width="127" height="37" /></a></td> <td style="text-align: center;"><a href="http://theabundantartist.com/done-for-you-artist-websites"><img title="learn_more_btn" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/learn_more_btn.png" width="127" height="37" /></a></td> <td><a href="http://theabundantartist.com/courses/"><img class="aligncenter" title="learn_more_btn" alt="" src="http://theabundantartist.com/wp-content/uploads/2012/01/learn_more_btn.png" width="127" height="37" /></a></td> </tr> </tbody> </table>[Code fixed by moderator]
Same stuff on both pages, they look totally different.
Forum: Fixing WordPress
In reply to: Creating three columns of content on full width pageSorry. Try it now. I was playing around with page templates. I’ve reverted back to the issue that I originally raised.
I’m trying to replicate the look on this page: http://theabundantartist.com. Using the same code, but getting very different results.
Forum: Themes and Templates
In reply to: Child theme responding strangelyJust turned caching off. Same problem.
If I look at the source code for the page, it looks like its calling the parent theme (Chameleon) instead of the child (Chameleon-child).
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorGreat. Thanks.
They’ve been rather unresponsive, but I appreciate outside validation that it’s a theme problem.
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorI deleted .htaccess and web.config. Still same problem.
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorbtw, thanks for your help.
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorRight, I know it works with the default theme/without the page templates. I’m trying to figure out how to make it work with the theme and design I’ve spent tons of time on.
We did the design and work on a Windows server, then migrated to Linux, and that’s when this problem started.
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorDone. MelissaSmithart.com
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorJust did it again. Same issue.
Forum: Fixing WordPress
In reply to: Portfolio page templates causing 500 errorI did that already. Nothing changed.
I also tried changing the web.config file to the following, per a suggestion from a WordPress forum post. That didn’t help either.
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer><rewrite>
<rules>
<rule name=”wordpress” patternSyntax=”Wildcard”>
<match url=”*”/>
<conditions>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true”/>
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true”/>
</conditions>
<action type=”Rewrite” url=”index.php”/>
</rule></rules>
</rewrite>
</system.webServer>
</configuration>