axa222
Forum Replies Created
-
Forum: Plugins
In reply to: [Attributes for Blocks] Global settings?Is it possible to add these attributes to the IMG tags – your suggested code adds attributes to FIGURE tags.
Thank you!
- This reply was modified 3 years, 6 months ago by axa222.
Forum: Plugins
In reply to: [Attributes for Blocks] Global settings?Got it working! Thanks!!!!
Forum: Plugins
In reply to: [Attributes for Blocks] Global settings?Thank you for answering so fast!
Please, forgive me but I don’t understand where exactly should your code go.
I mean, should it be added to one of your existing plugin files or to one of the core WP files?
Thank you!Forum: Plugins
In reply to: [Front End Users] Forgot Password resets passwords but users can't loginSorry, I already replaced your plugin with another one
Forum: Plugins
In reply to: [Jigoshop] SKU number is empty for VariationsIt’s a small typo – I fixed it myself for now since I don’t have time to wait.
file: jigoshop_product_variation.class.php
line: 76$sku = get_post_meta($this->variation_id, ‘_sku’, true);
should be
$sku = get_post_meta($this->variation_id, ‘sku’, true);
(in postmeta table meta_key values are ‘sku’ and not ‘_sku’)
Forum: Plugins
In reply to: [Jigoshop] SKU number is empty for VariationsThank you, Olaf!
Do you have an estimated date for the next release?
I really need to get my website going.
Christmas is getting too close…At least, point me where I will be able to find the code for displaying SKU – I’m pretty good with PHP.
Thank you.
Forum: Plugins
In reply to: [Jigoshop] SKU number is empty for VariationsI also opened MySql table wp_postmeta and found out that there can be text values for SKU in the meta_value field.
Tried that as well…
Still nothing is showing up for Variations.