pasada
Forum Replies Created
-
I’m also getting this error when cloning from a production site (e.g. https://www.example.com) to a development/staging site (e.g. https://dev.example.com). The production site is fine, but the development site (clone) throws the error.
Forum: Plugins
In reply to: [CDN Enabler] Rewrite URLS in my custom function?Glad everything worked out.
Forum: Plugins
In reply to: [CDN Enabler] Rewrite URLS in my custom function?@slr1979 You might consider str_replace to modify the image URL before sending to your script:
$cdnurl = str_replace( '//www.', '//cdn.', $originurl );
This example simply replaces https://www.anysite.com with cdn.anysite.com. You can use preg_replace for more complex replacements, but be aware that it has higher performance overhead.
Hope this helps.
Holy cow, Daniel! I messed up. Should have posted this to the ConvertKit plugin. At least I got the right contrib. ??
Posted an issue on the correct GitHub repo, so we could pick up the conversation there, if that works for you.
- This reply was modified 6 years, 5 months ago by pasada.
Forum: Plugins
In reply to: [WPComplete] Undefined index on post/page publishTested with both PHP 7.1 and 5.6.
Forum: Plugins
In reply to: [The Events Calendar] Last Update Causes Issues@southernb You would need to apply the change to the minified version of the file, which is located here:
/wp-content/plugins/the-events-calendar/common/vendor/tribe-select2/select2.min.js
Forum: Plugins
In reply to: [The Events Calendar] Last Update Causes IssuesUpdate: Isolated the issue to line 1836 in the non-minified select2.js (/plugins/the-events-calendar/common/vendor/tribe-select2/select2.js):
if ( select ) { // these options are not allowed when attached to a select because they are picked up off the element itself $.each( [ "id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags" ], function () { if ( this in opts ) { throw new Error( "Option '" + this + "' is not allowed for Select2 when attached to a <select> element." ); } } ); }
Removed “ajax” from the list of options that are not allowed and the issue is resolved.
- This reply was modified 7 years ago by pasada.
Forum: Plugins
In reply to: [The Events Calendar] Last Update Causes IssuesSimilar issue while editing WooCommerce product pages. Browser console shows the following error:
Uncaught Error: Option 'ajax' is not allowed for Select2 when attached to a <select> element.
which references the following script:
Forum: Plugins
In reply to: [Scriptless Social Sharing] Disable on Individual Post/Page@haije I can confirm that the feature is back in the most recent update.
Forum: Plugins
In reply to: [Genesis Responsive Slider] PHP warning about unquoted constantThis appears to be an issue with an incorrectly named constant in /wp-content/plugins/genesis-responsive-slider/admin.php on line 350. The two instances of
GENESIS_SLIDER_SETTINGS_FIELD
should be namedGENESIS_RESPONSIVE_SLIDER_SETTINGS_FIELD
.Forum: Plugins
In reply to: [Scriptless Social Sharing] Disable on Individual Post/PageThanks for the speedy response, Robin. I’ve implemented the second option (commented out the
return;
) and all is good in the universe. Such a wonderful plugin.I can confirm that /plugins/give/includes/admin/class-export-donors.php does not exist.
Confirmed by another donor. What could be causing this?
Perfect. Awesome support, as always.
OK, so I manually added up the transaction amounts and they match the report, so we know that number is correct (currently $5,475). But the goal progress on the donate page only shows $5,339. So it seems your second theory is correct.
Here’s the weird part: I can’t reconcile the variant between the two totals ($136). The two deleted transactions totaled $110, so you would think that would be the difference. All donations so far are divisible by 5 or 10, so how the heck do we get a number like 5,339? Weird.