Bill Dennen
Forum Replies Created
-
Forum: Plugins
In reply to: [amr ical events lists] Custom fields in iCal feedsanmari, thanks so much for making changes and offering this add-on. I’ll take a look.
Forum: Plugins
In reply to: [Blog Copier] Media Library PicturesI’m seeing the same problem. Posts come over fine, but attachments (media files) do not. In fact, it seems to copy media files from wp-content/uploads and not wp-content/blogs.dir/##/files
thanks nayajean!
it’s in /wp-content/plugins/jetpack/modules/custom-css/custom-css.php !
Edit this file and look for the line:
static function editor_max_image_size( $dims, $size, $context ) {
and change it to
static function editor_max_image_size( $dims, $size, $context='' ) {
This should be considered a temporary fix, though. Upgrades to Jetpack will over-write this file. Hopefully upgrades to Jetpack will also fix this bug! ??
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Custom service list?I agree with dvuksanovich. I don’t care about the dropdown either. I’d like to configure what people actually see.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Custom service list?Same problem here!
Forum: Plugins
In reply to: [amr ical events lists] Custom fields in iCal feedsThanks. Could an add-on allow for custom mappings?
In this case, the key would be:
X-TRUMBA-CUSTOMFIELD;NAME=”Contact Name”;ID=28380;TYPE=SingleLineand the value would be:
Contactperson NameThe problem is, with trumba specifically, these custom fields come over with a custom ID (the “ID=28380” part). So, it would be hard for you to add code specifically for this. Does that make sense?
Also, FYI, Trumba is an online calendar: https://www.trumba.com/
Forum: Plugins
In reply to: [WP Super Cache] Possible to cache custom HTTP header?did you ever find a solution for this one?
thanks.
Forum: Plugins
In reply to: [Twitter Widget Pro] Adding HTML to the dat format(Obviously, I meant “date format!”)
did you hack the plugin to do this?
In a previous version, I used code similar to this:
get_the_image('echo=0');
or
get_the_image('echo=false');
Now with the update, this echos the images incorrectly.
I think this is because echo is actually set to a string — “0” or “false”, depending on syntax. The way $echo is checked in the code now, it must be set to a boolean (false).
The correct syntax would seem to be:
get_the_image(array('echo' => false ));
You might want to try:
get_the_image(array('echo' => false ));
that is, no quotes around false.
Just wanted to say that I am seeing similar behavior.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] error after updateThank you, trepmal.
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] error after updateSame problem here.