David Ruszkowski
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-EMail] Getting Error on Image VerificationYes I disabled the caching plugin, same result.
What is strange is that it had worked for quite a long time previously. I’m trying to figure out what might have changed. I tried uploading a fresh version of the plugin, still nothing.
Thanks,
DaveForum: Plugins
In reply to: [WP-EMail] Getting Error on Image VerificationThe URL where the form is is located here: https://www.bostonprayersummit.org/?roundabouts=impact-the-boston-area&email=1
It previously worked but doesn’t now it won’t. I tried diabling any other plugins, I tried using a default theme, still not working. I have a caching plugin installed, I cleared the cache, nothing.
I was able to send email when the image verification was turned off.
Any info you could offer would be great.
Thanks.
Forum: Plugins
In reply to: [Simple Responsive Slider] How to make width=100% & height=autoYup that did it, I left out completely ‘height:500px !important’ without it is seems to be adjusting the height automatically. Thanks so much!
Forum: Plugins
In reply to: [Custom Fields Creator] Get Attachment URL – Using it outside the loop?I guess when I can’t get something to work I should post it here, because usually a couple minutes after that I figure it out…
I added the global query stuff, but had to change $post->ID in my original code to $postid. The one that worked looks like this.
<!-- Custom Links for Events Page --> <div class="event-file-downloads"> <?php global $wp_query; $postid = $wp_query->post->ID; $pdfdownloadlink = get_post_meta($postid, 'pdfdownloadlink', true); foreach($pdfdownloadlink as $pdfdownloadlink) { $file_attributes = wp_get_attachment_url( $pdfdownloadlink['file-upload'] ); echo '<strong>File Downloads: </strong>'; echo '<a href="' . $file_attributes . '" >'; echo '[ '; echo $pdfdownloadlink['file-link-name']; echo ' ] '; echo '</a>'; } ?> </div> <!-- End Custom Links for Events Page -->
Forum: Plugins
In reply to: [Custom Fields Creator] Attachment URL for a PDF LinkNevermind I figured this out, I got rid of the [0] after $file_attributes. Seems to work good now.
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Tweet Post Title?Did you ever find anything about this? I am interested in this also.