Sitesao Support
  • Home
  • Themes
  • Plugins
  • Support

Support Forums

Home/Forums/
  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 3 years, 9 months ago etison
    Participant
    Post count: 13

    Hi,

    Ok, that’s clear, thank you for your answer.

    I found this post: stackoverflow.com

    With this code example :

    $query_args = array(
        'post_type' => 'product', // The post type we want to query, in our case 'product'.
        'orderby' => 'title',     // Return the posts in an alphabetical order.
        'order' => 'ASC',         // Return the posts in an ascending order.
        'posts_per_page' => -1,   // How many post we want to return per page, -1 stands for no limit.
        'tax_query' => array(     // Taxonomy query
            array(
                'taxonomy' => 'marca',  // The taxonomy we want to query, in our case 'marca'.
                'operator' => 'EXISTS'  // Return the post if it has the selected taxonomy with terms set, in our case 'marca'.
            )
        )
    );
    
    $query = new WP_Query( $query_args );
    if( $query->have_posts() ) {
        while ( $query->have_posts() ) {
            $query->the_post();
            echo the_title();
        }
    }

    Any way to make it work with the DHWC’s taxonomy ?

    Thank you for your help.

    Best regards.


    in reply to: How to sort products by Brands
    3 years, 9 months ago etison
    Participant
    Post count: 13

    Hi,

    I confirm you that it’now working !
    Once again, thank you very much for your help & support.

    Kind regards,


    in reply to: How to translate ‘BRAND’ word on Front site
    3 years, 10 months ago etison
    Participant
    Post count: 13

    Hi,

    Thank you for you help.
    Print screen attached to this message (with DHWC ajax Plugin Demo Site).

    Regards,

    Attachments:
    You must be logged in to view attached files.

    in reply to: How to translate ‘BRAND’ word on Front site
    3 years, 10 months ago etison
    Participant
    Post count: 13

    Hi,

    It’s working fine now with last updated version.

    Thank you for your fast help & support.

    Kind regards,


    in reply to: DHWC Ajax ACF Filter : ACF list bug
    3 years, 10 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF Filter : ACF list bug
    4 years, 8 months ago etison
    Participant
    Post count: 13

    Hi,

    I downloaded and tested the lastest version of the module (v1.2.4).
    I confirm that it’s working fine now !

    Thank you very much for your reactivity & support !
    Thank you for developing this nice extension !

    Best regards,


    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13

    I found the solution !
    It’s a conflict with another plugin.

    Thank you.


    in reply to: DHWC Ajax ACF multi select not working
    4 years, 8 months ago etison
    Participant
    Post count: 13
    This reply has been marked as private.

    in reply to: DHWC Ajax ACF multi select not working
Viewing 13 posts - 1 through 13 (of 13 total)
© Copyright Sitesao.com - Support Policy