63N
Forum Replies Created
-
Forum: Plugins
In reply to: [Font Awesome] FontAwesome kit and data-search-pseudo-elementsApologies for the slow reply… I’ve just sent an email!
Forum: Plugins
In reply to: [Font Awesome] FontAwesome kit and data-search-pseudo-elementsThanks @mlwilkerson
Is there anything in the roadmap for using pseudo elements? (It’s pretty critical for a few of my projects!) Or do you recommend sticking with the web font option?
The kicker is we want to use the custom icon feature in FA6 when that drops.
Forum: Plugins
In reply to: [Font Awesome] FontAwesome kit and data-search-pseudo-elementsI’ve just run into this problem too…
So @mlwilkerson, is there a way to enable searching for pseudo elements in the kit settings?
Is this also related to special characters not being replaced?
- This reply was modified 4 years ago by 63N.
Forum: Plugins
In reply to: [WooCommerce] Add admin note when automatic emails are sentAnybody?
Forum: Plugins
In reply to: [WooCommerce Accordions] Accordion and moving tabs up the pageHey @benjaminblue would you mind sharing how you went about using jQuery UI?
For anyone else with this problem, it should be fixed in a future update of the plugin.
Forum: Plugins
In reply to: [WooCommerce] Add admin note when automatic emails are sentWould something along these lines work?
add_action( 'woocommerce_new_order', 'custom_add_order_note' ); function custom_add_order_note( $order_id ) { $order = wc_get_order( $order_id ); // The email heading for the order note $order_note = get_heading(); // Add the order note $order->add_order_note( $order_note ); }
- This reply was modified 4 years, 3 months ago by 63N.
I’ve registered on your support forums and requested support there.
Just tried that and am having the same problem.
I’ve tried emailing that address a couple of times and my email will not send. I get this error…
mx.zohomail.com gave this error: Mail rejected due to antispam policy
Can you not help here?
- This reply was modified 4 years, 3 months ago by 63N.
Forum: Plugins
In reply to: [Constant Contact + WooCommerce] Checkout opt-in not appearing?Sorry, scratch that. We had your forms plugin activated, but not the + WooCommerce one! Doh!
- This reply was modified 4 years, 3 months ago by 63N.
Forum: Plugins
In reply to: [Constant Contact + WooCommerce] Checkout opt-in not appearing?I’m also not seeing the checkbox on the checkout page using Storefront WooCommerce theme.
I can’t find anything in the settings to enable/disable it.
- This reply was modified 4 years, 3 months ago by 63N.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Move cookie notice to headWell the main reason I want to move it is because it covers the WooCommerce Storefront theme mobile footer menu, which is fixed to the bottom of the page… I can imagine there’s quite a few other people with the same problem. There must be a simple way to move it?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Move cookie notice to headI’m looking for a way to do it pragmatically, rather than CSS, I’d rather not have to use grid or flex box on the body tag unnecessarily if I can avoid it.
On line 105 of the eu-cookie-law.php (https://github.com/Automattic/jetpack/blob/master/modules/widgets/eu-cookie-law.php) it looks like the script is enqueued… I’m looking for a way to move this to the head, or before the page content – I was hoping something like this, but I can’t seem to get it to work;
function custom_cookie_notice() { wp_dequeue_script( 'eu-cookie-law-script' ); } add_action( 'wp_enqueue_scripts', 'custom_cookie_notice', 999 );
add_action( 'wp_head', 'eu-cookie-law-script' );
Forum: Plugins
In reply to: [Block Lab] Change the textarea p tagsThanks Ryan, I did have a look at those settings.
I realise it’s probably a pretty rare use case.
I could do a find and replace type thing programmatically, but is there a more elegant way, like using
block_value
?Something along the lines of how the multi-select works?
<?php foreach ( block_value( 'features' ) as $value ) : ?> <li><?php echo $value; ?></li> <?php endforeach; ?>