Pablo Pacheco

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 97 total)
  • Author
    Posts
  • in reply to: Questions #99040

    Anytime ๐Ÿ˜‰
    Yes, but you’d have to do that programmatically. The perfect scenario would be creating a plugin or a child theme for this.

    You could test it adding a piece of code on your functions.php.

    It will work, but if you update the theme the changes will be lost

    in reply to: Questions #99038

    Hello,

    Thanks! Sorry for the delay.
    This option is located on Appearance > Theme options > Top header option

    Can you please explain the posts part again?

    Anytime ๐Ÿ˜‰

    Hi,
    Sorry for the delay,

    Is this still happening for you?
    I’ve made some tests and it’s working fine here.

    If it’s still happening, can you please send me your site URL?

    Hello,

    Sorry for the long delay.
    To add a product with custom price programmatically you would have to do something like this:

    // Sets product price
    add_action( 'woocommerce_before_calculate_totals', function($cart_obj){
    	if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
    		return;
    	}
    
    	foreach ( $cart_obj->get_cart() as $key => $value ) {
    		if ( $value['product_id'] == 6356 ) {
    			$value['data']->set_price( 99 );
    		}
    	}
    }, 10, 1 );
    
    // Adds product to cart
    add_action( 'wp', function () {
    	if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
    		return;
    	}
    	
    	$product_id = 6356;
    
    	foreach ( WC()->cart->get_cart() as $key => $val ) {
    		$_product = $val['data'];
    		if ( $product_id == $_product->get_id() ) {
    			return true;
    		}
    	}
    
    	WC()->cart->add_to_cart( $product_id );
    } );
    in reply to: Problem with the plugin #99181

    Hi Stefan,

    Can you please update to the most recent version (1.1.8)?

    in reply to: Convert any typed character to its uppercase version? #99323

    Hi,
    Sorry for the delay.

    After reading your message, I just included a new option called “Uppercase” on version 1.1.3.
    If you have any questions, please let me know ๐Ÿ˜‰

    in reply to: How do I see the information that the customer entered? #99320

    Hi, I will try to help you using the email then.
    Can you please create a WordPress user for me using [email protected]?

    in reply to: How do I see the information that the customer entered? #99318

    Hello,

    You can see what your customers entered in the fields accessing:
    – The order page on dashboard. The info is on “item” metabox
    – The email you receive when a customer buys some product. The info is next to the product’s title

    If you can’t see it, maybe your customers didn’t fill the fields. Or maybe you are not using the most recent version of the plugin.

    If you create a WordPress user for me ([email protected]) I can try to take a look at this issue, if itโ€™s still happening.
    See you

    in reply to: How to Choose Images for Gallery Display with Plugin? #98314

    Hi!
    I’m glad to hear it!

    Hi,

    We havenโ€™t tested it, but theoretically it will work, because all the data related to product categories and variation swatches is stored as any other regular term meta field, and according to this page, WPAllImport can automatically detect this.
    http://www.wpallimport.com/documentation/taxonomies/import-taxonomy-meta/

    Let me know if you have more questions, see you

    in reply to: Place the price field on Cart page? #99475

    Hi,
    Sorry for the delay.

    Thanks ๐Ÿ™‚
    Unfortunately that’s not possible for now.
    But that’s a good idea. We will add this on our to-do list

    in reply to: Problem with CSS #99473

    Hello,

    Sorry for the delay.
    I’m glad you are enjoying it ๐Ÿ™‚

    Can you please follow these 2 steps?

    1 – Please change your frontend template to this:

    %frontend_label% %open_price_input% %currency_symbol%

    2 – On Appearance > Customize > Additional CSS, please put this

    .popfwc-price-and-symbol{
        display: block;
        margin-bottom: 15px;
        margin-top: 6px;
    }

    Let me know if it suits you ๐Ÿ˜‰

    in reply to: Question #99172

    Hello again,

    I’m happy to inform we just updated a new version (1.1.7) which allows you to hide empty categories.

    You just have to enable the option called “Hide menu items” on plugin’s settings.

    After that you have to save the menu.

    Please tell me if you liked the solution ๐Ÿ˜‰
    See you

    in reply to: Question #99170

    Hi,

    Can you please send us your site URL?

Viewing 15 posts - 46 through 60 (of 97 total)