jayowl
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsify WP] Image Widget in Internet Explorer Not WorkingFixed it. Sorry, the child twentysixteen theme I created wasn’t using wp_footer which calls the wp_enqueue_media(). That was it.
Thanks!
Forum: Plugins
In reply to: [Responsify WP] Image Widget in Internet Explorer Not WorkingIts not coming into this statement.
$this->imagesis returning null and cannot seem to trace why its not entering here but is inprotected function srcset_attributes()
protected function create_markup()
{
$img_attributes = $this->create_attributes($this->settings['attributes']);
$markup = '<img ';
if ( count($this->images) == 1 ) :
$markup .= 'src="'.$this->images[0]['src'].'"';
else:
$markup .= 'srcset="'.$this->srcset_attribute().'" ';
endif;
$markup .= $img_attributes;
$markup .= '>';
return $markup;
}
}
Forum: Plugins
In reply to: [Responsify WP] Responsify Widget AreaResponsive Column Widgets plugin** Sorry correction. I just implanted the Responsive Widget Short code in the content with RWP widgets inside and it works like a charm.
Forum: Plugins
In reply to: [Responsify WP] Responsify Widget AreaOkay so the widgetized area didn’t work but..
I used the Responsify Widget area with your RWP widget and it srcset was working!!
Thanks!
Forum: Plugins
In reply to: [Responsify WP] Responsify Widget AreaThanks for the fast response!
I’m going to try and widgetize the content area, using a custom template and I’ll tell ya if this works.
Forum: Plugins
In reply to: [WP Custom Widget area] Remove Before/After TagsFor example img src=”[cwa id=’userfriendlypic’]”
==
//localhost/wp-content/uploads/2016/image.jpg></div>”I want to remove that <div> tag at the end.