dangrimes
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Tons of PHP warning in Log FileGood morning! This was my ticket (Not sure if i’m logged into the same account or not).
I sent them a private ticket. They informed me they couldn’t perform the test because it was on a staging site I made that had the paypal plugin deactivated so this must have not been a problem with the plugin.
I replied back i just had it deactivated at that time because i was testing something on the site. I re-activated the plugin and then replied back to them but never heard back. I got so busy I realize now that I never checked on that ticket again since then and looks like (from the developer response) it was deleted).
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] PHP warnings in error log for pluginThank you @krahedv !! I changed the line out in that file. Appreciate it! Should I ping the developer in a new thread or do you think they will se your comment here?
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Fatal error in latest versionSame here!
This is what we are seeing >
Deprecated: Creation of dynamic property Activecampaign_For_Woocommerce_User_Registered_Event::$admin is deprecated in /chroot/home/a9622fd3/site.com/html/wp-content/plugins/activecampaign-for-woocommerce/includes/events/class-activecampaign-for-woocommerce-user-registered-event.php on line 83
Happens when trying to edit orders on the backend and getting critical errors (Ex: changing an order from processing to on hold)
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Tons of PHP warning in Log FilePerfect, just sent a ticket in, thank you!
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Tons of PHP warning in Log FileGood morning! Thank you for the reply.
Here you go!
https://privatebin.syde.com/?53389700231481b6#6pjyYv89XKmAimMkacmJojwR9r75cxAAYDVGD4MadLyg
Hi, Yes we are using Version 11.0.55. This is while the Gutenburg editor is open. The pages are built using Beaver Builder.
Thank you!
This worked! Thank you so much for your help and quick response.
- This reply was modified 1 year ago by dangrimes.
Hi, Thank you for your response.
The tables are on these pages:
https://andelaproducts.com/resources/
https://andelaproducts.com/about-us/I am seeing this issue sitewide on every page however.
Forum: Plugins
In reply to: [Stream] Exporting recordsI wanted to give a update to this question. Is there a way to automatically export the records? I found the option to export as CSV but we would like to export them automatically. I tried using WP ALL EXPORT but i don’t see an option for stream in there. Thanks.
This worked perfectly, thank you so much for your help!
Hi, I tried to inline style the images but had no results. Can you give an example of what you mean by “split up your text into multiple items and adding the image/logo as it’s own item and then split each of the sponser groups up into separate items.” I am not sure what is meant by this.
Thank you!
Forum: Plugins
In reply to: [Download Monitor] Change Default Upload PathI know this is marked as resolved but in case anyone finds this going forward you can change the upload location using the ‘upload_dir’ filter.
The following function is modified from the method used in the plugin to set the directory.
The value for
$new_upload_directory
sets the folder, if you want to use the WordPress default set this to an empty string.function override_dl_upload_dir( $pathdata ) { $new_upload_directory = '/new_upload_directory'; if ( isset( $_POST['type'] ) && 'dlm_download' === $_POST['type'] ) { //if no subdirectory set add one if ( empty( $pathdata['subdir'] ) ) { $pathdata['path'] = $pathdata['path'] . $new_upload_directory; $pathdata['url'] = $pathdata['url'] . $new_upload_directory; $pathdata['subdir'] = $new_upload_directory; } else { //if subdirectory is set, replace '/dlm_uploads' $new_subdir = $new_upload_directory . str_replace('/dlm_uploads', '', $pathdata['subdir'] ); $pathdata['path'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['path'] ); $pathdata['url'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['url'] ); $pathdata['subdir'] = str_replace( $pathdata['subdir'], $new_subdir, $pathdata['subdir'] ); } } return $pathdata; } add_filter('upload_dir', 'override_dl_upload_dir', 99);
Forum: Plugins
In reply to: [WP Store Locator] Phone Number Not DisplayingI tried clearing the transients with no change.
What are the transient names?
I can go through and check if they are set.Thank you
Forum: Plugins
In reply to: [WP Store Locator] Phone Number Not DisplayingThank you for the response, I tried using a different browser, a private window and a different computer that had never visited the site before and in all 3 I had the same result.
Contemporary Concepts near Pittsburg Pennsylvania and Made In America Store near Niagara Falls New York are 2 examples that are not working. If you click their icons without doing a search the pop up does not contain a phone number.
If you search then the phone number does appear.
Thank you
- This reply was modified 8 years, 3 months ago by dangrimes. Reason: fixed images
Forum: Plugins
In reply to: [WP SEO Structured Data Schema] url missing?I too had this issue and I was able to find something that worked for me.
On the settings page if you check the box “Enable Site link Search Box” you will now see a Text input to enter your “Website Url”
Once you have entered your URL you can uncheck the “Enable Site link Search Box” if you would like and then Save your settings.
Even though it is not visible it should save the URL you enter.
After doing this I was able to validate my data, hopefully this helps you as well