Forum Replies Created

Viewing 12 posts - 31 through 42 (of 42 total)
  • Posted in:
  • cdsouza
    Member
    Post count: 44

    Was this resolved? I’m having the same issue. I don’t mind manually translating them, but can’t find where to do that.

    Thanks.

    in reply to: Translated Product Page doesn't work #47014
    cdsouza
    Member
    Post count: 44

    I reset the permalinks and that seems to have resolved everything.

    in reply to: Hide categories on the product page under product title #46982
    cdsouza
    Member
    Post count: 44

    Hi,

    I tried putting this in the theme’s general settings, but nothing happens 🙁 Any ideas?

    cdsouza
    Member
    Post count: 44

    I looked on the Woo support pages and found this code, but I think it seems to conflict with the theme’s code. Can you please take a look? Its supposed to go into functions.php:

    add_action( ‘pre_get_posts’, ‘custom_pre_get_posts_query’ );

    function custom_pre_get_posts_query( $q ) {

    if ( ! $q->is_main_query() ) return;
    if ( ! $q->is_post_type_archive() ) return;

    if ( ! is_admin() && is_shop() ) {

    $q->set( ‘tax_query’, array(array(
    ‘taxonomy’ => ‘product_cat’,
    ‘field’ => ‘slug’,
    ‘terms’ => array( ‘knives’ ), // Don’t display products in the knives category on the shop page
    ‘operator’ => ‘NOT IN’
    )));

    }

    remove_action( ‘pre_get_posts’, ‘custom_pre_get_posts_query’ );

    }

    in reply to: WooCommerce integration category help please #46979
    cdsouza
    Member
    Post count: 44

    Hi,

    So, I’ve accomplished the first page by using swift page building and using mini products to show the wholesale category.

    Can you please help with item 2? I want to hide the wholesale category from the SHOP page. I tried using the following codeI found online, but its not working:

    add_action( ‘pre_get_posts’, ‘custom_pre_get_posts_query’ );

    function custom_pre_get_posts_query( $q ) {

    if ( ! $q->is_main_query() ) return;
    if ( ! $q->is_post_type_archive() ) return;

    if ( ! is_admin() && is_shop() ) {

    $q->set( ‘tax_query’, array(array(
    ‘taxonomy’ => ‘product_cat’,
    ‘field’ => ‘slug’,
    ‘terms’ => array( ‘knives’ ), // Don’t display products in the knives category on the shop page
    ‘operator’ => ‘NOT IN’
    )));

    }

    remove_action( ‘pre_get_posts’, ‘custom_pre_get_posts_query’ );

    }

    in reply to: WPML original and translated language name #46941
    cdsouza
    Member
    Post count: 44

    Was this solved because I’m having the same issue. Can you please post the solution?

    in reply to: Language switcher #46940
    cdsouza
    Member
    Post count: 44

    Hi,

    I’m having the same issue. I’ve set the languages in WPML, and selected for it to be English/Français instead of English/French, but the built-in switcher for the Neighbourhood theme still shows English/French. Do you know how to change it to show “Français” instead?

    Thanks!

    in reply to: Slider and Menu question #45634
    cdsouza
    Member
    Post count: 44

    I did some padding changes and it seems to have fixed it.

    in reply to: Removing white space between top and bottom #45607
    cdsouza
    Member
    Post count: 44

    I have the same issue but with a space on the top of the slider. I tried putting the code you provided but it didn’t do anything. Do you have another code snippet I could use?

    in reply to: Slider and Menu question #45601
    cdsouza
    Member
    Post count: 44

    Please disregard the enewsletter question. Now just trying to figure out how to get my slider to move up against the menu…

    I’ve set the position to centre/centre and there’s no padding.

    in reply to: Where is the newsletter signup in demo footer? #44842
    cdsouza
    Member
    Post count: 44

    Mine turned out perfectly. Thank you sooooo much for posting that. You saved me countless hours.

    in reply to: Homepage Slider & Shop #43680
    cdsouza
    Member
    Post count: 44

    Hi,

    I’ve imported the dummy slider and it doesn’t show on the homepage.

    I have the Nieghbourhood theme and would like it on the homepage. It says:

    For show only on homepage use: <?php putRevSlider(“homeslider”,”homepage”) ?>

    I’m not sure what file to insert this code into or where in a file to insert it.

    Any help would be greatly appreciated.

    Thanks!

    -Caryl

Viewing 12 posts - 31 through 42 (of 42 total)