imfromio
Forum Replies Created
-
Forum: Plugins
In reply to: [Cache Enabler] Hide Admin Bar FunctionsYes, I came here to find a fix for this too. Plus 1 for this request.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Cannot Edit Posts with Duplicate Posts ActivatedA “Critical error…” message may actually be more helpful since you may be able to see the error(s) in your server error logs or wp_debug logs.
I’m just getting a 502 error, so I’m not seeing any errors in my logs.
I did more testing and found that on my site there seems to be a conflict with these 3 plugins: Yoast Duplicate Post, Pods, and Essential Grid. If those are the only 3 plugins active, I see the error. If I disable any one of those 3, I do not get the error. Strange, but hopefully helpful to the plugin author.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Cannot Edit Posts with Duplicate Posts ActivatedJust found the same issue on my site. It runs on the Hello Elementor theme and uses the Elemntor page builder. After disabling all plugins and re-enabling them on-by-one, The Yoast Duplicate Posts plugin was the one casuing the issue.
When I try to edit a page, the page times out with a 502 error. When I disable this plugin, I can edit pages just fine.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] popupI had a similar problem. I’m using bootstrap modals and they broke after updating this plugin. The plugin loads a jQuery Modal CSS on the frontend, which interferes with the bootstrap modal CSS. I disabled the plugin and the modals are woking again.
Can NextScripts disable their jQuery Modal CSS from loading on the frontend?
- This reply was modified 3 years ago by imfromio. Reason: typos
Thanks for your reply. I do not think this is a SMTP issue since the forms get submitted properly when using Chrome or Firefox. The issue only occurs when using Safari. you can test this by following the link I attached.
The page link has been changed above.
- This reply was modified 3 years, 7 months ago by imfromio.
Hello Gioni,
I also have been seeing a lot of PHP notices regarding undefined indexes in cerber-load.php on lines 1971 and 1976. My errors logs were generating these notices multiple times per second.To fix it I simply replaced:
if ( $opt['authonlyacl']
with:
if ( isset( $opt['authonlyacl'] )
on line 1971.
And:
if ( $opt['authonly']
with:
if ( isset( $opt['authonly'] )
on line 1976.It would be great to have this patch added to the plugin for the next release. Thanks!
- This reply was modified 5 years, 3 months ago by imfromio. Reason: added code tags
I has the same issue – trying to update Jetpack’s settings from wp-admin was causing an error message: “Error updating settings. FetchNetworError”
For me, it was an SSL issue. Chrome inspector said Jetpack was trying to load content over http. I installed Really Simple SSL plugin an the problem ws resolved.
- This reply was modified 6 years, 4 months ago by imfromio.
Forum: Fixing WordPress
In reply to: website hackedOne of my sites was recently hacked – twice. The first time I restored the site files from a backup, changed passwords, scanned with WordFence and all looked fine. But when the same hack happened again a week later I noticed the blog_charset was set to UTF-7 in wp_options table. Could this be the backdoor that was left open? I changed it back to UTF-8 and am keeping my fingers crossed.
Forum: Plugins
In reply to: [Easy Video Gallery Responsive HTML5] Gallery filter brokenSince this is working for me, I’ll mark this as resolved.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Is it possible to pause and resume quiz?I have been searching all over for the same functionality. I’ve found a handful of similar requests for it, but no replies. Looks like we’re on our own on this one.
Not very helpful, I know, but I wanted to reply so I could be notified if anybody came along with some help on this.
Forum: Hacks
In reply to: pre_get_posts doesn't work with pretty permalinks anymoreThe patch worked for me as well. Fantastic response – thanks!
Forum: Hacks
In reply to: pre_get_posts doesn't work with pretty permalinks anymoreThanks Otto but that did not solve my problem either. Still not see any posts on the catgeory 263 page. I will look into my permalinks and see if that may have something to do with it.
Forum: Hacks
In reply to: pre_get_posts doesn't work with pretty permalinks anymoreI am having a similar problem after the upgrade to 3.8. I have a certain category of posts (id=263) that I keep separate from the others. In my functions.php file I have this code:
function tcm_pre_get_posts( $query ) { if ( is_admin() || is_author() || is_search() || ! $query->is_main_query() ) return; if ( !is_category( 263 ) ) { $query->set( 'cat', -263 ); return; } else { $query->set( 'meta_key', '_thumbnail_id' ); $query->set( 'orderby', 'meta_value' ); $query->set( 'orderby', 'date' ); return; } } add_action( 'pre_get_posts', 'tcm_pre_get_posts');
The code still works to keep id=263 items out of the main posts page, but the page that is supposed to show id=263 posts no longer returns any posts. This code worked fine before the update to WP 3.8. Has something been updated with the pre_get_posts function?
Forum: Plugins
In reply to: [Easy Modal] Easy modal plugin is breaking my wysiwyg editorI have a similar problem. The wysiwyg editor works okay in Text mode but shows nothing when switching to Visual mode. The problem appeared after I installed the Easy Modal plugin and the editor works fine if I disable this plugin.