Forum Replies Created

Viewing 8 replies - 31 through 38 (of 38 total)
  • Thread Starter dabeecher

    (@dabeecher)

    Thanks @khungate,

    I will give this a test and let you know.

    Is there a way I can bulk subscribe all my users, technically if I updated the meta field in the database and waited would this achieve the same thing and would I see it within the MailChimp log?

    Thread Starter dabeecher

    (@dabeecher)

    Hi @khungate,

    They haven’t necessarily placed an order yet, I imported my users from a previous Website where they had signed up.

    Therefore I wanted to manually tick in users accounts.

    Is this not possible? Is that why it’s reverting back

    Thread Starter dabeecher

    (@dabeecher)

    Hi @khungate,

    This is still an issue for myself.

    Would I be able to provide you an admin login to my website to take a look? As its stopping me from pushing my users to MailChimp

    Thread Starter dabeecher

    (@dabeecher)

    Hi team,

    just wondered if there is any update on this? I really need to push my subscribers to MailChimp!

    Thread Starter dabeecher

    (@dabeecher)

    Hi Sandip,

    I have just used a hook to create the new order id

    # ===========  ADD PREFIX TO ORDER ID =========== #
    function change_woocommerce_order_number( $order_id ) {
        $prefix = 'DC22-';
        $new_order_id = $prefix . $order_id;
        return $new_order_id;
    }
    add_filter( 'woocommerce_order_number', 'change_woocommerce_order_number' );

    I don’t want to actually change the post_id, but in the REST API response, is there a way to modify “ID”.

    Basically the CRM I am pushing to can’t change the field they are looking at, so it has to be ID. So I want to modify the response of ID in the orders REST API response

    Thread Starter dabeecher

    (@dabeecher)

    Hi Jess,

    Thanks for the response above.

    The reason the price is set as 13.956 is because the cost price is 15.17 and then a customer received an 8% discount which then made the price 13.956 – but showed as 13.96 on the product page.

    So when that scenario happens, the subtotal looks incorrect at checkout (I fully understand the maths and get why its wrong) it obviously just looks abit weird

    Thread Starter dabeecher

    (@dabeecher)

    @wackyracer8 I just hooked upto the search query and amended it so I could do it with the full name…

    I’ve added my code below which worked for me

    function advanced_search_query($query) {
    
    	if($query->is_search()) {
    		
    		if (!empty($_GET['search_location'])):
    			$slug = str_replace(" ", "-", $_GET['search_location']);
    			$tax_query = array(
    				 array(
    				    'taxonomy'=>'wpbb_job_location',
    				    'field'=> 'slug' ,
    				    'terms'=>  $slug,
    				 ),
    			);
    
    			$query->set('tax_query',$tax_query);
    		endif;
    
    		return $query;
    	}
    }
    
    add_action('pre_get_posts', 'advanced_search_query', 1000);

    Is there any support to get this working in WC3.0?

    I have upgraded and having all sorts of problems with the plugin working on this version.

    Thanks

    David

Viewing 8 replies - 31 through 38 (of 38 total)