spencerjw
Forum Replies Created
-
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Next button does not workMine didn’t work either but I did the same thing and just upped the number of photos per page.
Forum: Plugins
In reply to: [Shashin] My Shashin gallery won't do anything on my pageResolved.
Forum: Plugins
In reply to: [Shashin] [Plugin: Shashin] Next button not workingIn the same boat, my Next button does nothing as well.
Forum: Plugins
In reply to: [Shashin] My Shashin gallery won't do anything on my pagePlease disregard. I guess my theme assumes pages like “Gallery” and Portfolio” are for it’s use only. I created a new page called photos and now it works fine…
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7Be sure you’re using the right code for thr email part because the * means it’s a required field in the form and shouldn’t be used in the email part. Watch the code generator part and be sure to use the code provided for the email specifically. Also, do not use the table code in the email part as I’m sure most of that would get stripped out.
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7It’s been quite a while since I was working on this so I’m not entirely sure what I did to fix it. But, using the Firefox plugin called Firebug you should be able to find out exactly what CSS class is causing your issue and from there you should be able to edit the right part.
If I remember correctly I think my issue was the theme had default styles for the TD tag but since the theme didn’t use a TD anywhere it was running over into my custom tables for the Contact Form. I found those CSS parts for the TD and edited them directly and that fixed it.
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7Sure thing but the site is not yet live so email me at spencerjw at gmail dot com and I’d be more than happy to send you the URL (just don’t want it plastered all over the WP forums).
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7I just used simple table tags for organization via tr’s and td’s.
<table> <tr> <td width="250" align="right">First Name:</td> <td>[text* first-name]</td> </tr> <tr> <td align="right">Last Name:</td> <td>[text* last-name]</td> </tr> <tr> <td align="right">Nickname:</td> <td>[text* nickname]</td> </tr> <tr> <td align="right">Email address:</td> <td>[email* email-address]</td> </tr> <tr> <td align="right">Phone number:</td> <td>[text* phone-number]</td> </tr> <tr> <td valign="top" align="right">Nights available:</td> <td>[textarea* nights-avail 40x5]</td> </tr> <tr> <td align="right">Age</td> <td>[radio age "21+" "Under 21"]</td> </tr> <tr> <td align="right">Do you have a digital camera?</td> <td>[radio dig-camera "Yes" "No"]</td> </tr> <tr> <td align="right">Do you have high-speed Internet?</td> <td>[radio highspeed-internet "Yes" "No"]</td> </tr> <tr> <td align="right">How did you hear about us?</td> <td>[text* hear-about-us]</td> </tr> <tr> <td align="right">Please list two employment references (name, contact info, what you did for them):</td> <td>[textarea* references 40x5]</td> </tr> <tr> <td align="right">Tell us about the funniest thing you've seen or heard this week:</td> <td>[textarea* funny-this-week 40x5]</td> </tr> <tr> <td align="right">Random Code:</td> <td>[captchac captcha_MC size:m]</td> </tr> <tr> <td align="right">Enter Random Code:</td> <td>[captchar captcha_MC 8/4]</td> <tr> <td colspan="2">[submit "Send"]</td> </tr> </table>
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7Ok, please completely disregard this entire thread. My theme CSS was overwriting all my settings for Contact Form 7, all is good with the world once again.
Forum: Plugins
In reply to: [Contact Form 7] Using TABLE, TR and TD Tags with Contact Form 7Ok, please disregard the whole alignment issue, it was my theme overwriting my code, that is now fixed.
However, I am still having the issues with the textarea row/column definitions being ignored. Can that be theme driven too? I can’t imagine it would be.
all you really need to overwrite is wp-settings.php
Thank you, after reading everything from above this was the only solution I needed.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] submission successful but no emailMine is still not working. I tried changing addresses to send to but nothing. It has worked flawlessly for the last few months since I installed it and just about a week ago it totally stopped working.
I tried sending to a gmail account as well as an account at the domain of my website (which Google hosts the email for) and still nothing. No errors either.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Movie Not LoadedWhat path was incorrect? I have this exact same issue with mine and can’t figure out what’s wrong…
Forum: Themes and Templates
In reply to: Editing Twitter for WordPress CSS classesI would assume those are styles he has coded into the widget that you just need to add to your styles.css file in your theme. Add those to the bottom of the style sheet and then edit. I would guess the widget will look for them there.
I can’t test this myself due to my own issue of not being able to get the Widget to even appear in my Widget selection area, I’ve got no way to add it to my sidebar.
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Thank You PageThis seems to be an ongoing issue. I have this in my Additional Settings field:
on_sent_ok: “location.replace(‘https://www.MyDomain.com/thank-you/’);”
Where MyDomain is obviously switched out. This however is not working, all I get is the standard Green Box with the text in it saying my form has been submitted properly and it is not redirecting to my Thank You page at all.
I am on the latest 2.8.5 and have the latest version of the Contact Form 7 plugin.
I was also not able to get the hack to work using the edit directly to the .js file either.