protostack
Forum Replies Created
-
Forum: Plugins
In reply to: [GDPR] Fatal errorI can’t see your screenshot but I’m getting the same behaviour. I think disabling the telemetry would be a very good idea.
the error I’m seeing in the log is “Call to undefined function is_user_logged_in() post.php:2250″. the stack trace shows.
#0 /wp-includes/post.php(6067): _count_posts_cache_key(‘telemetry’, ‘readable’)
#1 /wp-includes/class-wp-hook.php(286): _transition_post_status(‘publish’, ‘new’, Object(WP_Post))
#2 /wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array)
#3 /web/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
#4 /web/wp-includes/post.php(4095): do_action(‘transition_post…’, ‘publish’, ‘new’, Object(WP_Post))
#5 /wp-includes/post.php(3555): wp_transition_post_status(‘publish’, ‘new’, Object(WP_Post))
#6 /wp-content/plugins/gdpr/admin/class-gdpr-telemetry.php(151): wp_insert_post(Array)hope that helps track it down
Forum: Plugins
In reply to: [WC Fields Factory] WooCommerce images not showing after latest updateI’m getting the same issue.
(index):392 Uncaught TypeError: $ is not a function
Error is occurring in this block<script> var $ = jQuery;
$(document).ready(function(){
// Error occurs on the next line
$(document).on(“change”, “[data-has_field_rules=yes]”, function(){
});
});
</script>I believe you want
<script> var $ = jQuery;
$(document).ready(function(){
var $ = jQuery;
$(document).on(“change”, “[data-has_field_rules=yes]”, function(){
});
});
</script>Forum: Plugins
In reply to: [WC Fields Factory] Displaying Group TitlesI ended up using a label with CSS. All good and thanks for a great plugin.
Forum: Plugins
In reply to: [WP-Syntax] Alternating background height problems on ChromeIt seems to be OK when the browser zoom is 90%, 110% and 125%
at 150% and 175% the problem is less noticeable but still there
at 80% and 100% the problem is very noticeableForum: Plugins
In reply to: [Plugin: WooCommerce] Merge products to variationsDid you end up finding a solution?