TheHungryGeek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Intermittent Error 404s + Unable to edit MenusYes the URL is correct.
The size of the primary database is about 100 MB.
Hello, thanks for your response.
I am not aware of a conflict now, I am just asking if there is one, as per my post above.
Also, when will the 2.2 update be released?
Thanks.
Forum: Fixing WordPress
In reply to: WordPress Post Editor – White ScreenHi Xenos, you hit the nail on the head.
A couple of hours ago I sent a ticket in to my host to whitelist my CDN’s IP addresses.
It’s all fixed now.
Forum: Fixing WordPress
In reply to: WordPress Post Editor – White ScreenThe last time I disabled all plugins tons of crap broke and I had to burn 10 hours fixing everything. So I’d rather not.
Here everything worked fine and suddenly this issue popped up. No new plugin or theme updates.
Any other ideas?
Forum: Plugins
In reply to: [Comments - wpDiscuz] wpDiscuz not working with Super SocializerThe plugin setup on my site has worked for months. I only use the popular plugins.
To confirm the bug I rolled back to 3.2.8 and it works perfectly fine again.
This is obviously a coding bug or issue that your team introduced with one of the updates. I’m sure you would have come across it from someone else before. Basically wpDiscuz doesn’t show up at all.
Could you have a think at the past bugs that you had to squash where wpDiscuz just didn’t appear after a user updated it?
Forum: Themes and Templates
In reply to: [Zerif Lite] Anchor Scrolling not accurateIts the latest version
Forum: Plugins
In reply to: [Sunny] CloudFlare’s API v1 will no longer be supportedMe too, just got the notification! Not too sure whether the author is still around though…
Forum: Hacks
In reply to: Trigger only the first instance of add_actionThank you so much for your help bcworkz. I appreciate all the information that you’ve provided!
So I tried this code:
add_action ('sample_hook', 'test_function', 10); function test_function() { if ( is_home() ) { ?> <div class="some random HTML code"></div> <?php } } remove_action('sample_hook', 'test_function', 10);
So it seems that the initial action isn’t registered at all with that. Changing the priorities didn’t seem to help.
I’m quite sure that I’m getting something very basic wrong – hope you could point me in the right direction!
Forum: Hacks
In reply to: Trigger only the first instance of add_actionHi bcworkz,
Basically the Theme’s action hook seems to be added multiple times within one request? To elaborate, say this code is used:
add_action ('sample_hook', 'test_function', 10); function test_function() { if ( is_home() ) { ?> <div class="some random HTML code"></div> <?php } }
The code is added multiple times on the same page/post at predefined locations.
What I want to do is to only add the code on the first instance.
Frank thanks so much with your help on this!
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] HTTP Error When UploadingThat’s great! Hope you can ensure continued compatibility with the Easy Watermarks plugin – right now when I upload images, the Easy Watermarks plugin watermarks the images, and the TinyPNG plugin compresses it after, in the correct order.
Forum: Plugins
In reply to: [Popups - WordPress Popup] Grey screen of deathThat’s great Damian, glad its fixed ??
Do I get a cookie for spotting the fix? Wouldn’t mind trying the premium version hehe XD
I tried downgrading to the earlier version, and everything works fine lol… this is some mystery, there is something in those 3 new lines of .js code.
image.images.thumbnail.url = image.images.thumbnail.url.split("?ig_cache_key")[0]; image.images.standard_resolution.url = image.images.standard_resolution.url.split("?ig_cache_key")[0]; image.images.low_resolution.url = image.images.low_resolution.url.split("?ig_cache_key")[0];
It broke something. Anyway to tweak that 3 lines of code to reduce the chances of interference with other scripts?
I’m assuming those 3 lines of code are the only thing that has changed from the old to new version.