Title: maxcondor's Replies | WordPress.org

---

# maxcondor

  [  ](https://wordpress.org/support/users/maxcondor/)

 *   [Profile](https://wordpress.org/support/users/maxcondor/)
 *   [Topics Started](https://wordpress.org/support/users/maxcondor/topics/)
 *   [Replies Created](https://wordpress.org/support/users/maxcondor/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/maxcondor/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/maxcondor/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/maxcondor/engagements/)
 *   [Favorites](https://wordpress.org/support/users/maxcondor/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/maxcondor/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/maxcondor/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Custom Admin Interface] Admin Menu not visible](https://wordpress.org/support/topic/admin-menu-not-visible/)
 *  [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/admin-menu-not-visible/page/2/#post-17417458)
 * I installed the plugin on a new site and I also have the same problem. I tried
   to dial woocommerce but the problem persists!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Meta for WooCommerce] FB Product Sets](https://wordpress.org/support/topic/fb-product-sets-3/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years ago](https://wordpress.org/support/topic/fb-product-sets-3/#post-14582443)
 * Thank you.
    the mapping created with fbproduct set, create the sets on the facebook
   shop?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Elementor Style tab on Widget Panel Not Working](https://wordpress.org/support/topic/elementor-style-tab-on-widget-panel-not-working/)
 *  [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/elementor-style-tab-on-widget-panel-not-working/#post-14348011)
 * i upgraded elementor to 3.2.1 and i have the same problem. How did you solve?
   
   Thanks
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [order by date](https://wordpress.org/support/topic/order-by-date-12/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/order-by-date-12/#post-13534269)
 * thanks
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [order by date](https://wordpress.org/support/topic/order-by-date-12/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/order-by-date-12/#post-13534180)
 * I modified the code hoping to get it as a date-only sort but using posts_orderby.
   However, I do not get the desired result
 *     ```
       add_action('elementor/query/q_test_primopiano', function($query){
       $args = array(
       		'meta_query' => array(
       		'relation' => 'AND',
       		'field1' => array(
       			'key'     => 'ordinamento',
       			'compare' => 'EXISTS'
       		),
       		'field2' => array(
       			'key'     => 'visibile',
       			'value'   => '1',
       			'compare' => '='
       		),
       			'field3' => array(
       			'key'     => 'visibile_in_home',
       			'value'   => '1',
       			'compare' => '='
       		),
   
       	),
       );
       	$query->set('meta_query', $args);
       	add_filter('posts_orderby','modifica_ordine',$query);
       	function modifica_ordine($ordine_personalizzato) {
       		$ordine_personalizzato= "post_date DESC";
       	}
       });
       ```
   
    -  This reply was modified 5 years, 8 months ago by [maxcondor](https://wordpress.org/support/users/maxcondor/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [order by date](https://wordpress.org/support/topic/order-by-date-12/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/order-by-date-12/#post-13532646)
 * ok grazie, ci provo.
    Grazie
    -  This reply was modified 5 years, 8 months ago by [maxcondor](https://wordpress.org/support/users/maxcondor/).
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Multiple orderby on query](https://wordpress.org/support/topic/multiple-orderby-on-query-2/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/multiple-orderby-on-query-2/#post-13494050)
 * I rewrote the query.
    But it does not work, it doesn’t return any records to 
   me
 * add_action( ‘elementor/query/q_img-copertina-max’, function( $query ) {
    $meta_query
   = [ ‘relation’ => ‘AND’, [
 *  ‘key’ => ‘visibile’,
    ‘value’ => ‘1’, ‘compare’ => ‘=’, ] , [ ‘key’ => ‘vis_cop_cat’,‘
   value’ => ‘1’, ‘compare’ => ‘=’ ], ‘n_ordinamento’=> [ ‘key’ => ‘ordinamento’,‘
   compare’ => ‘EXISTS’ ], ‘n_date’=> [ ‘key’ => ‘post_date’, ‘compare’ => ‘EXISTS’]
 *  ];
 *  $query->set(‘meta_query’, $meta_query);
    $query->set( ‘orderby’, array( ‘n_ordinamento’
   => ‘DESC’, ‘n_date’ => ‘DESC’,
 *  ));
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Queries] Post by view count + elementor](https://wordpress.org/support/topic/post-by-view-count-elementor/)
 *  [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/post-by-view-count-elementor/#post-13439340)
 * > Hi Guys, What i do to get the post views is to install WP-PostViews plugin.
   > 
   > Add a field group with one field called Views using Advanced custom fields 
   > to posts. Set the the field to numeric and default value to 0.
   > Then go ahead and use that field anyway you want to order your posts since 
   > you have a numeric value returned.
 * Can you be more precise? how do you increase the custom field with new visits?
   
   thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Queries] ACF related by Post Object field](https://wordpress.org/support/topic/acf-related-by-post-object-field/)
 *  [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/acf-related-by-post-object-field/#post-13415037)
 * anyone help?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Fatal error WP_Query](https://wordpress.org/support/topic/fatal-error-wp_query/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-wp_query/#post-13383490)
 * Ok
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Fatal error WP_Query](https://wordpress.org/support/topic/fatal-error-wp_query/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-wp_query/#post-13377165)
 * Perfect!
    Thanks!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Fatal error WP_Query](https://wordpress.org/support/topic/fatal-error-wp_query/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-wp_query/#post-13371835)
 * ‘name’ => ‘home’,
 * in this way the query will be executed only on the “home” page. is it correct?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Fatal error WP_Query](https://wordpress.org/support/topic/fatal-error-wp_query/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-wp_query/#post-13367900)
 * Hello
    I inserted the code using the Code Snippets plugin. the site crashes. 
   I created a child theme of Astra and placed the code in the function.php file.
   It works! The problem is that the query affects all pages on the site including
   the back office. Is there any way to query for a single page only?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Phoenix Media Rename] edit post and rename files](https://wordpress.org/support/topic/edit-post-and-rename-files/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/edit-post-and-rename-files/#post-12933419)
 * can’t I edit the file name from the post editor?
    Am I forced to open Media Library?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Multiple queries](https://wordpress.org/support/topic/multiple-queries-3/)
 *  Thread Starter [maxcondor](https://wordpress.org/support/users/maxcondor/)
 * (@maxcondor)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/multiple-queries-3/#post-12878837)
 * Perfect thanks

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/users/maxcondor/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/maxcondor/replies/page/2/?output_format=md)