shahz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTTP 500 Error until cookies are deletedThe odd thing is that this error started appearing since WP 4.8 though. I’m still finding the fix. I think it has something to do with different IPs logging (ie: if you login from your home, and then later login at your office, it’s more likely to happen). You dont have to delete all cookies though, just the one that begins with wordpress_sec_########## and you will be able to login.
I’m still trying to figure out a way. I haven’t tried it without iTheme Security because this is happening on my production site and it’s not immediately replicate-able.
Hi there,
Thanks for the feedback. I figured out the problem. It was the iThemes Security plugin settings. For others who are using the same plugin and having the same issue, disable the “PHP in Plugins” under “System Tweaks” to make it work again.
Thanks OneSignal ^_^
Forum: Plugins
In reply to: [W3 Total Cache] W3Total Cache outputting on pageGod I’m so stupid.. Sorry for wasting your time Destac.. You’re awesome..
Forum: Plugins
In reply to: [W3 Total Cache] W3Total Cache outputting on pageHi Destac,
You don’t see this? Refer to my screenshot below.
https://dl.dropboxusercontent.com/u/1930184/Untitled-1.jpg
It’s outputting all my SQL tables to the public.
Forum: Plugins
In reply to: [W3 Total Cache] W3Total Cache outputting on pageIf you don’t see the query there, try looking at this page:
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache throwing output at the end of pageI figured it out, it was due to Cloud Flare. If anyone else is having this issue, go to CloudFlare and clear its cache. That should solve the problem.
Note: I’m referring to “Path to Log Files” and “Backup Location”..
I guess just need to set the new folder name into variable and feed it into those path functions will solve this.. ??
Forum: Plugins
In reply to: WordPress the_title filter for custom post typeAnyone can help please?
Forum: Fixing WordPress
In reply to: Hooking a custom title to a custom postSeriously guys, anyone? This is driving me nuts~
Forum: Fixing WordPress
In reply to: Generating and setting a custom post titleHey fatalx,
How did you alter the title for the custom post type? If we were not using any meta content. I have this snippet which is currently not working for me. Mind helping please?
add_filter('the_title', 'new_title'); function new_title($title) { global $post, $post_ID; $title['custom_version'] = 'Application Name v'.$title; return $title; }
Forum: Fixing WordPress
In reply to: Hooking a custom title to a custom postI tried this..But it changed ALL titles instead of only those contained under ‘custom-version’..
add_filter('the_title', 'new_title'); function new_title($title) { global $post, $post_ID; if(is_singular('custom_version')): return 'Application Name v'.$title; else: return $title; endif; }
Anyone here can help??
Forum: Fixing WordPress
In reply to: Hooking a custom title to a custom postAnyone? I know I’m just missing a small glitch here. Someone enlighten me please?
Forum: Fixing WordPress
In reply to: Hooking a custom title to a custom postOkay, Here’s an update..
I’ve got this so far..add_filter('the_title', 'new_title'); function new_title($title) { global $post, $post_ID; $title['custom_version'] = 'Application Name v'.$title; return $title; }
But its not fully working. Any ideas guys?