joleksow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Cannot call overloaded function for non-objectI’ve run into this same issue a couple of times now on a client’s site hosted using GoDaddy’s managed WordPress solution. Reading through other people’s experiences with this (see: https://wordpress.stackexchange.com/questions/44016/php-fatal-error-cannot-call-overloaded-function-for-non-object-in-wp-includes-c), it seems like it might be related to the use of PHP’s APC for caching.
The latest time this happened, I was able to temporarily resolve the issue by flushing the GoDaddy cache. However, GoDaddy support has been consistently unhelpful and I anticipate the issue will happen again.
Seconding this.
Thanks for the followup @danieliser. Due to the tight timeline we were working under and the limited usage of popups at this point in the project, we ended up going with a custom modal instead of using popupmaker.
The AJAX response does contain the updated HTML for the form with errors, and I don’t see any other errors in the console. It looks like gravity forms is just failing to overwrite the existing form with the AJAX response.
Thanks for your help on this so far, but do you have any other ideas?
Unfortunately it’s in a local dev environment, so I don’t have a link to share. Anything I could do myself to provide more information?
Forum: Plugins
In reply to: [DevBuddy Twitter Feed] Change 'favourite' link text to 'favorite'Thanks for the quick reply! Would the advice from that thread apply if using a shortcode to generate the feed, or just a template tag?
Looking forward to the internationalized version, as it seems like that would be a lot easier.
Forum: Plugins
In reply to: [YOP Poll] "Currently active" when multiple polls are activeThanks for the response! So if I have a poll that opens on Jan 1 and another that opens on Jan 5, and both are active, the “Currently active poll” widget will definitely display the one that opens on Jan 5?
Regarding the code update you suggest, I’m concerned that the change would be overwritten when upgrading to a new version. Do you have any plans to add filters to the plugin that would allow for customization through my own functions.php, or adding an option to the widget for text to display if there are no currently active polls?
Forum: Plugins
In reply to: [Simple Links] Issue with simple-links-default-target filterBoy you’re fast. Thanks so much!
Forum: Plugins
In reply to: [Simple Links] 2.93 child categories controlExactly what I was hoping for! Thanks so much!
Forum: Plugins
In reply to: [Download Manager] TinyMCE add-on button issueHi Shaon,
For the record, the TinyMCE plugin works fine when I replace the following line:
$url = trim(get_bloginfo(‘url’), “/”) . “/wp-content/plugins/wpdm-tinymce-button/editor_plugin.js”;
with this:
$url = trim(plugins_url('editor_plugin.js', __FILE__));
When do you think you will be able to update the plugin? I’m using this in a client’s site that is launching soon and would really like to be able to include the official fixed plugin instead of a version I’ve modified myself.
Thanks!
JohnForum: Plugins
In reply to: [Simple Links] Shortcode category using slug in addition to name and id?Thanks! Sorry I didn’t see that other post. I really wish www.ads-software.com allowed you to search individual plugin support forums.
Forum: Plugins
In reply to: [Simple Links] Display published date using shortcode?Hi Mat,
Thanks for this tip! However, it seems like the date that’s being retrieved from get_the_date is the date of the page the links are appearing on and not the links themselves.
I got this working by modifying the code you provided to look more like this:
add_filter( 'simple_links_link_output', 'sl_add_date' 10, 3); function sl_add_date( $output, $meta, $link ){ $sl_date = mysql2date ('F j, Y', $link->post_date); return str_replace( '</a>', ' ' . $sl_date . '</a>', $output ); }
This is working great, but if you have other ideas for how to do this more elegantly I would be all ears.
Thanks!
JohnForum: Plugins
In reply to: [Simple Links] Default to link target = _blank?This is great, thank you so much!
I didn’t find this filter when I was looking through https://matlipe.com/simple-links-docs/simple-links-developer-docs/. Is there somewhere else that has a more comprehensive list of filters, or should I just search through the source code for “apply_filters” and see what comes up?
I don’t believe I took any other steps, but I could be mistaken.
The way we have our test servers set up doesn’t allow us to use the Update link for updating plugins, which is why I followed the steps that I did.
Thanks,
JohnForum: Plugins
In reply to: [Download Manager] How to make tables responsive like in exampleThat’s perfectly fine. I was actually planning on purchasing the pro version if it would definitely support the responsive table. Is there a different setting that needs to be enabled in order for the tables to be responsive? Also, is it possible to customize which fields/columns are displayed in the table?
Thanks for the quick response!