Allprowebworks
Forum Replies Created
-
Message Settings: https://imgur.com/a/YlwR1FC
View Log: https://imgur.com/a/Wjt7es8Forum: Plugins
In reply to: [Affiliates Manager] Notification bug fixThank you.
I will mark as resolved once I confirm it has been fixed in the next release.
Forum: Plugins
In reply to: [Affiliates Manager] Export column hookI appreciate it.
I will mark as resolved after I confirm that it is included in the next release.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CSS conflict with Gravity FormsThe css conflicts are caused by jQuery UI classes which aren’t prefixed. It appears to be the same issue that was reported.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Youtube shortened URLsNo worries.
I prefer not to unsub from topics I create in the case I can assist the developer or other users in clarifying or testing solutions.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Youtube shortened URLsWhy is this not a different topic? Is this a conflict with “Youtube shortened URLs” and the current version?
If not, don’t hijack a resolved thread! I keep on getting notifications that appear to be unrelated to the topic I created.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Youtube shortened URLsHow is this related to the topic, “Youtube shortened URLs”?
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Youtube shortened URLsJust to clarify, you do not intend to adjust the code to allow for Youtube shortened URLs? Wouldn’t it be a simple matter of tweaking the regexp?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Custom excerpts failureCan you give an estimate of when this will be patched?
I’ve made the appropriate modifications to events-manager/classes/em-event.php (5.5.3.1).
I believe the current behavior is a bug. Please consider implementing these changes in the next release.
Forum: Plugins
In reply to: [Admin Columns] Pods checkbox field filteringI appreciate your prompt reply and am glad you pressed the issue.
I will mark this thread resolved once I can confirm the fix in the next Admin Columns Pro version.
Forum: Plugins
In reply to: [Admin Columns] Pods checkbox field filteringWhere can I monitor the status of this issue?
Having purchased the “unlimited” license with the sole intention to use this plugin with Pods (as both plugins claim compatibility), I would like to know I will be able to use it without editing core files.
This thread has been marked resolved – to date, it has not.
Forum: Plugins
In reply to: [Admin Columns] Pods checkbox field filteringThe problem is in cac-addon-pro/classes/filtering/classes/post.php line 170:
if ( ! $value ) continue;
If $value = “0”, it will skip the filter request column loop. To fix:
if ( strlen( $value ) < 1 ) continue;
Used pods_api_get_table_info_default_post_status filter.
Thank you for the reply. See pull request.