whitehallsd
Forum Replies Created
-
damoncloudflare:
1. Having issues for both smush.it and bulk smush.it
2. W3TC
3. WordPress 3.3.1
I have also recently moved our site to a new host which could be giving me problems. I have temporally disabled cloudflare and will post back here a bit later.
I’m getting the same error. Smush.it error: Could not get the image while processing https://whitehallsd.k12.wi.us/wp-content/uploads2012/01/sunset2.jpg (/home4/whitehb8/public_html/whitehallsdk12wi/wp-content/uploads/2012/01/sunset2.jpg)
I noticed that the slash is missing between uploads and 2012. Why would that be?
Bumping this post. YouTube Simplegallery is perfect for what I need. I just need to turn off the related videos. I added ?rel=0 to the end of the url and my thumbnail disappears and related videos are still there. Any help!!!
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Must be logged in to post a commentNevermind, I just changed the code in comments.php to link to my themed login page.
I found a work around if you would like to print my month or year. Install the “WordPress Category Archive” and use that url to generate your newspaper using the enter url option at the bottom of make newspaper settings.
Forum: Plugins
In reply to: [Connections Business Directory] [Plugin: Connections] Address FormatOk, so I found the code. Not exactly sure what I need to change to get the city, state zip on same line. Any help would be great! Thanks!
public function getAddressBlock() { if ($this->getAddresses()) { foreach ($this->getAddresses() as $address) { $out .= '<div class="adr" style="margin-bottom: 10px;">' . "\n"; if ($address->name != NULL || $address->type != NULL) $out .= '<span class="address_name"><strong>' . $address->name . '</strong></span><br />' . "\n"; //The OR is for compatiblity for 0.2.24 and under if ($address->line_one != NULL) $out .= '<div class="street-address">' . $address->line_one . '</div>' . "\n"; if ($address->line_two != NULL) $out .= '<div class="extended-address">' . $address->line_two . '</div>' . "\n"; if ($address->city != NULL) $out .= '<span class="locality">' . $address->city . '</span> ' . "\n"; if ($address->state != NULL) $out .= '<span class="region">' . $address->state . '</span> ' . "\n"; if ($address->zipcode != NULL) $out .= '<span class="postal-code">' . $address->zipcode . '</span><br />' . "\n"; if ($address->country != NULL) $out .= '<span class="country-name">' . $address->country . '</span>' . "\n"; $out .= $this->gethCardAdrType($address->type); $out .= '</div>' . "\n\n"; } } return $out; }
Did you ever find an answer to your question? I’m looking for the same thing. I would like to print by category and month.