ryandrewniak
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Updating product info is not reflected in order itemsAlternatively, is there any way to bulk update the product information in multiple orders? (i.e. manually update the products on let’s say 5 orders in a single action)
Forum: Plugins
In reply to: [WooCommerce] Updating product info is not reflected in order itemsThe application rationale makes sense.
The tricky part is that my client is using WooCommerce to sell & organize registrations for training seminars. If a training event needs to be re-scheduled after it has been sold, it’s HIGHLY inefficient for the client to manually go through dozens of orders, and manually change them to reflect the updated seminar details.
In the end, we’re not talking about updating one-off orders (that’s not a problem). The issue arises when a large number of orders need to be updated collectively to reflect changes in a singular product (seminar).
I tried that and the user data attached to each note is not present. It does not work.
From what I can see, Yoast isn’t recognizing my custom taxonomies.
When I do an setting export from Yoast, I see the “hideeditbox” setting for my 2 custom post types, along with all of the other default WordPress content options. However, the “hideeditbox” settings for my 2 custom taxonomies aren’t showing up.
I do see the options noindex, title, and metadesc options for my 2 custom taxonomies, but for some befuddling reason, the “hideeditbox” setting is nowhere to be seen.
When I’m in the admin panel, and I toggle the switch for the Yoast SEO Meta Box to Show, nothing gets saved.
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0Alright, try going here, and following the steps under Joining the WordPress team on Slack heading:
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0All good @tmacgregor. We all gotta start somewhere. Slack is an IM system.
From the looks of your WordPress forum account, you have a WordPress channel Slack account already set up.
If you go here:
You should be either prompted to log in (it’ll probably be your same credentials as your WordPress forum account), or you’ll be taken directly into the Slack channel. From there, you can click on Direct Messages on the left sidebar, and search for me @ryandrewniak.
- This reply was modified 7 years, 5 months ago by ryandrewniak.
- This reply was modified 7 years, 5 months ago by ryandrewniak.
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0hmmm…possibly a JS conflict somewhere. @tmacgregor do you wanna try running through some diagnostics with me via Slack?
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0I was also seeing that my multi-select fields implemented by ACF PRO weren’t styled. That’s when I noticed that I had an outstanding update for ACF Pro.
After running the update, that fixed my visual editor and select field issues.
@tmacgregor, are you running any additional editor-like plugins like ACF?
- This reply was modified 7 years, 5 months ago by ryandrewniak. Reason: Got a user name wrong
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0I just got the same results as @tmacgregor. Here’s a screenshot of the JS error from my dev tools that appears when clicking the visual tab on the TinyMCE editor:
Forum: Plugins
In reply to: [Classic Editor] Does not work anymore since v 1.0I understand that thought process of the new plugin update targeting the WordPress v5 code, but considering the scale of this change, it’s a logical flaw with the plugin rollout.
It is STRONGLY advised for everyone to test the WordPress v5 transition on a staging/development environment prior to pushing it live, which is one of the primary reasons why this plugin was released as early as it was and not along side the core code rollout.
Logic (at least my logic) states that it should target both the WordPress v5 core editor AND the Gutenberg plugin, permitting that the cause of the issues is indeed with the selective targeting of the plugin overrides.
Forum: Plugins
In reply to: [Contact Form Submissions] Hook for 3rd party form submissionI gave it a go, and I can’t seem to get it to work.
I have the form submission making an AJAX call to a method in my functions.php file (successfully making the call to that function). Everything seems to be functioning, until I make the call to the $contact_form_submissions object. This is what my method in my functions.php file looks like:
function save_simple_pay_dbsubmission() { global $contact_form_submissions; // Get current timestamp for database submission $d = new DateTime('', new DateTimeZone('America/Edmonton')); $timestamp = $d->format('Y-m-d [G:i:s]'); $submission = array( 'form_id' => 0, 'body' => '', 'sender' => '', 'subject' => $sess['product-desc'], 'recipient' => '', 'additional_headers' => '', 'attachments' => array(), 'fields' => array( 'bill-first-name' => $sess['bill_first_name'], 'bill-last-name' => $sess['bill_last_name'], 'email' => $sess['email'], 'bill-phone' => $sess['bill_phone'], 'bill-address' => $sess['bill_address_one'], 'bill-city' => $sess['bill_city'], 'bill-province' => $sess['bill_state_or_province'], 'bill-country' => $sess['bill_country'], 'bill-postal-code' => $sess['bill_postal_code'], 'product-description' => $sess['product-desc'], 'product-single-price' => $sess["price1"], 'product-quantity' => $sess['quantity1'], 'subtotal' => $sess['subtotal1'], 'charge-total' => $sess['charge_total'], 'timestamp' => $timestamp ) ); $db_submission = $contact_form_submissions->save($submission); return 'SUCCESSFUL DATABASE SUBMISSION'; }Like I said, I’m able to make the AJAX call to that function. If I comment out the $db_submission variable, I can get the successful return (I’ve been able to log it to the console).
Is there something that you can see that is inherently wrong with this plan or my code?
Forum: Plugins
In reply to: [Contact Form Submissions] Hook for 3rd party form submissionSweet! I’ll give it a shot and let you know if I can get it to work.
Well done on an impressive and seamless plugin, my friend, and thank you for the quick turn-around on this fix.
I found an issue on one site which I updated this morning with the latest version of this plugin. On form validation, it seems to return the following PHP error:
Fatal error: Call to undefined function cf7msm_get() in *PATH TO ROOT OF SITE* /wp-content/plugins/cf7-conditional-fields/cf7cf.php on line 181I’m not sure about the fix for the problem, but it’s a step closer. I still have one site that is running the previous version of this plugin, and it seems to work just fine, so as an alternative/temporary work-around, I’m just going to try reverting to that previous verison (v1.1).
Forum: Plugins
In reply to: [Contact Form 7] Customizing HTML email outputNevermind, I figured it out, using the
wpcf7_mail_html_headerandwpcf7_mail_html_footerfilters as documented here: