amandathewebdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Compact WP Audio Player] Stop playing song when another song is playedOk thanks for the info
Forum: Plugins
In reply to: [MP3-jPlayer] Not responsive?I figured it out. I had to let the text wrap.
span.wrap_inline_mp3j { white-space: normal !important; }Then I had to set the line-height because the play button was overlapping the text.
span.T_mp3j { line-height: 30px; }Forum: Plugins
In reply to: [Compact WP Audio Player] Stop playing song when another song is playedI’d like no more than one song to play at a time. If I hit play on one song, and it’s playing, then I hit play on a second song, I’d like that first song to pause automatically, so there is never more than one song playing at once.
Is that functionality built in to the plugin?
When I view the order, it shows up under: Customer Provided Note, but when I view the PDF it’s not there.
Mike, thanks, that was it! Under WooCommerce > Settings > Accounts, I didn’t have my account page set.
Forum: Plugins
In reply to: [WooCommerce] BCC someone in settings > emailIt works! Only thing is this adds the set BCC email to every single email that WP sends. No way to discriminate. But luckily that is fine for what I need.
Forum: Plugins
In reply to: [BCC Everything] Does it work with WooCommerce emails?I just bit the bullet and tried this. It worked for WooCommerce. The catch is, when you set a BCC email, it’s BCC’d on EVERYTHING. Thus the plugin name lol, but not what I expected. So it’s not only BCC’d on WooCommerce orders, but on everything that sends an email. Luckily for me that works for what I need.
Forum: Plugins
In reply to: [WooCommerce] BCC someone in settings > emailOk thanks, I’ll give it a go
Forum: Plugins
In reply to: [WooCommerce] On Checkout, make a field on billing info form requiredAwesome! If anyone wants to know what I did specifically, I added this in functions.php
// Make Company name required in checkout add_filter( 'woocommerce_default_address_fields' , 'custom_override_default_address_fields' ); // Our hooked in function - $address_fields is passed via the filter! function custom_override_default_address_fields( $address_fields ) { $address_fields['company']['required'] = true; return $address_fields; }Forum: Plugins
In reply to: [WooCommerce] BCC someone in settings > emailThe BCC Everything plugin dev has not answered whether or not the plugin works on WooCommerce.
Forum: Plugins
In reply to: [BCC Everything] Does it work with WooCommerce emails?Looks like the plugin developer does not answer support threads … I won’t be downloading without an answer.
This does redirect to the homepage.
Forum: Themes and Templates
In reply to: Help! When user signs up to my site, nothing is on the screen!Follow thread on: https://ww.wp.xz.cn/support/topic/help-when-my-customers-make-an-account-they-get-a-blank-screen?replies=5#post-8396455
For updates.
Hi Mike, it’s when they sign up. The set their password, then it directs them to a login screen. Once they login, it directs them to /wp-admin/profile. It seems like an automated process. If not, how could I find what is sending them there?
It’s the textbox when you’re in checkout, usually under Order Notes, or a similar name.