robertdiaz
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Google SS Live Data export returns '0' in Google SheetsThat was it — it’s working lovely now!!
Thanks again Michael!
Forum: Plugins
In reply to: [Contact Form DB] Google SS Live Data export returns '0' in Google SheetsNo luck, it’s giving me this error: ReferenceError: “user” is not defined.
Forum: Plugins
In reply to: [Contact Form DB] Google SS Live Data export returns '0' in Google SheetsThanks Michael, following these steps did the trick!!
Do you know if there is a way to modify the script to use the encrypted version of the username/password (provided in the Shortcode section of the plugin)?
The odd thing is that my site initially used a math equation verifier on the log in page. I don’t remember removing it, so I’m curious if one of the previous WP upgrades made changes to wp-login.
In any case, thanks again π
Forum: Plugins
In reply to: [Resume Submissions & Job Postings] [rsjpSubmit] not workingbigbankclub — are you able to receive resume form submissions via e-mail? That seems to be the only part of the plugin that doesn’t work for me. Let me know if you have any luck there.
I can still see resume submissions by logging in to the admin area and clicking ‘Resumes > Resume Submissions’, but it is much more convenient to be able to get an e-mail alerting me to the submission. Strangely, I can receive the confirmation e-mail as if I was submitting the resume/form.
I am curious if it has to do with an incompatibility of some sort with a WordPress update made at some point after the last update to this plugin.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Fatal Error on activationYou’re right — I actually had a second one. Once I deactivated it, I was able to successfully activate your plugin.
Thanks again!!
Best,
RobertForum: Plugins
In reply to: [WP Quadratum] Adding Check-in Venue Icon Address to Check-inThe first option you mentioned is closest to what I had in mind. I suppose adding a plug-in filter of just the street address would suffice. Having the venue type icon next to the venue name might be a little redundant, given that it already appears on the map.
Thanks!
Forum: Plugins
In reply to: [WP Quadratum] Adding Check-in Venue Icon Address to Check-inI zipped up the 2 files and uploaded it to a folder on my server. Here’s the shortened link: http://goo.gl/fFvw1
As you’ll see, it’s based on this:
http://code.google.com/p/foursquare-phpFor your reference, the developer created a write-up on his blog here:
http://elie.im/blog/web/display-your-latest-foursquare-checkins-on-your-blog-using-foursquare-api-v2-and-php/Forum: Plugins
In reply to: [WP Quadratum] Adding Check-in Venue Icon Address to Check-inHi, it’s really just the icon and street address, mostly to match what I am currently using. I can forward you the custom setup that I’m using now if you want to have a look.
Thanks again,
Robert
Forum: Plugins
In reply to: [WP Quadratum] In case FourSquare is down…Thanks Gary, this is very good news. And thank you for confirming so quickly!
Best,
Robert
Forum: Plugins
In reply to: How to Stop Text Widgets from Adding “TextWidget” Class?I ran into this same exact issue just 2 days ago. I had a custom sidebar and modified the before/after parameters, but the contents of the text widget was still enclosed in a div tag with a class of “textwidget”.
I looked around and found the culprit: wp-includes/default-widgets.php (line 383):
<div class="textwidget"><?php echo $instance['filter'] ? wpautop($text) : $text; ?></div>Remove that opening and closing div tag and you should be all set. Edit as necessary, always make a backup, and remember that an auto-upgrade will probably overwrite that file.