nummernegen
Forum Replies Created
-
Forum: Plugins
In reply to: [Out of the Block: OpenStreetMap] ClusteringBriliant!
Fantastic job. Very glad with your brisk response.
Many thanks.Forum: Plugins
In reply to: [Navigation Block with Mega Menu] error array key ‘ID’hi
thanksafter the 2.0.6 (Mar 20 2024) update the error disappeared
all running smoothly nowForum: Plugins
In reply to: [Advanced Custom Stock Status] shortcode on category/shop pagethanks, yes you’re correct in this.
I’m aware of that feature.
The point is that I wanted the custom stock label right in front of the price field. In a block layout this is easily to accomplish as long as a shortcode picks up the value.
I emailed you directly the other day about this issue.
thanksForum: Plugins
In reply to: [WP Store Locator] get featured image urlhi @farroyob
that works well! Exactly what I had in mind.
The only code I had to change was: get_the_post_thumbnail_url instead of the_post_thumbnail_urlthe working version:
add_filter( 'wpsl_store_meta', 'custom_store_meta', 10, 2 ); function custom_store_meta( $store_meta, $store_id ) { $url = get_the_post_thumbnail_url( $store_id, 'medium' ); $store_meta['post_thumbnail_url'] = $url; return $store_meta; }best
Hello,
Is it also possible to add related products by sku?
Is there, or can I create, a meta field like: _crp_related_skus ?thanks