rhedman
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Twitter Bootstrap for WordPress] All javascript is included in HEADHi Paul
No I do not have any other plugins, this is clean WP installation and there are no js included in the bottom of the DOM.
Forum: Plugins
In reply to: [Autoptimize] Can't get the plugin to do anything at all?Never mind, just realized it was a rights issue on the wp-content folder 🙂
Forum: Plugins
In reply to: [WooCommerce] Fetch related product image in product category loopOk, but I have no idea how to do that with related products? The post thumbnail fetches the thumb from the active post, not related posts.
I’m confused 🙁Forum: Plugins
In reply to: [WooCommerce] Get different images sizes for $image_linkWohoo! I’ve solved it.
$image_link = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ‘large’);
$hiresimage_image_link = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ‘full’);Get’s me an array and the first item in the array is the image url so I just use
$hiresimage_image_link[0]
$image_link[0]
Viewing 6 replies - 1 through 6 (of 6 total)