Problem in MySql query on WordPress [closed]

I think the problem is here {$wpdb->prefix}prflxtrflds_user_field_data It seems your {$wpdb->prefix} value is prflxtrflds So you can directly use : global $wpdb; $results = $wpdb->get_results( “SELECT user_id FROM {$wpdb->prefix}user_field_data WHERE id = 37” );`

How to increase comment length?

Solved the issue. Thank you @birgire for giving me a hint. First I edited MySQL wp_comments table by changing comment_content rows «Type» from TEXT to MEDIUMTEXT and restarted MySQL. Then created filter in functions.php: add_filter( ‘wp_get_comment_fields_max_lengths’, ‘my_length’ ); function my_length ( $lengths ) { global $wpdb; $lengths = array( ‘comment_author’ => 245, ‘comment_author_email’ => 100, … Read more

Product Variation Auto Select when only one 1 and mark the option [closed]

First, you need to ensure that your count($args[‘options’] is actually 1. Check the following example: You can see that when I print_r($args[‘options’]), I got 4 elements, so count($args[‘options’] here is 4. But if you look at the dropdown beneath it, you see that it only has 1 option. Why? Because variations (and their attributes) that … Read more

WP-CLI command to update plugins and core fails in crontab?

Understanding this answer requires preliminary knowledge in a system administration and Linux issue named “Environment variables”. Acquiring this knowledge could be done with a didactic Linux book, course, or tutor. If one explanation was bad, seek another. The problem and the solution: It seems to happen due to a partial utilization of the PATH environment … Read more

How to remove “Category:” title prefix in Twenty Sixteen theme?

That title is coming from archive.php file of TwentySixteen theme. You can find a <header> code section in that file. What you can do, simply copy the archive.php file as category.php and then remove the following code section from category.php file: <header class=”page-header”> <?php the_archive_title( ‘<h1 class=”page-title”>’, ‘</h1>’ ); the_archive_description( ‘<div class=”taxonomy-description”>’, ‘</div>’ ); ?> … Read more

Warning “Attempt to read property ‘feeds’ on null” using post update function

You’re calling $this->update_product(); too early, I guess just after you’ve constructed the object? It is then calling wp_update_post before everything else has finished loading, in this case the $wp_rewrite global which isn’t available until the setup_theme event. You should probably call update_product() from the init hook instead: add_action( ‘init’, [ $this, ‘update_product’ ] );