mahlerthetitan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP YouTube Lyte] Not working in FirefoxHi again,
I should have left a follow-up to my posting. Indeed, it works 1 in 10 times when you refresh.
When I reported that a refresh fixed the problem, that was in fact merely a case of it that refresh being one of the lucky 1 out of 10 times. This remains an ongoing issue for me. 9 out of 10 times, it’s just the gray box, in Firefox.Forum: Themes and Templates
In reply to: [Athena] Jumbatron not working in Athena themeConfirming that @manekineko70’s suggestion fixed this issue for me.
Forum: Fixing WordPress
In reply to: No Space Between Paragraphs!Paragraphs being wrapped in <div> instead of <p> reminds me of an issue I once had. I blogged about it. Check out this link, or to save you time, the punchline is this: It’s possible that, in the editor window, the little box that normally says “Paragraph” instead says “Format” … as in it doesn’t have any formatting chosen.
Sweet, sweet resolution. ??
Thanks again,StyledThemes.
Manual download & FTP upload of 2.1.0 = Rousing success!! ??
Thanks, StyledThemes.katemegill, did you try this out?
Hello.
I am having a similar problem (though I know I can’t say it’s the SAME problem, because of lack of evidence & information from katemcgill and myself).
In my case, what I can tell you is that I’m using WordPress 3.8.1, I’m using a child theme, and I’ve made several modifications to the .php files of the theme, in the past — You probably want to know which ones. But it’s been over six months, and I’m really not sure.In the Dashboard, under Appeareance>Themes, I am given the following error message:
The active theme is broken. Reverting to the default theme.
I am going to attempt to reinstall 2.1.0 via FTP and see if that does the trick.
More soon…Forum: Plugins
In reply to: [Simple Fields] Problem with repeatable fieldsAhhh. Good call, DogHustler.
I’m also using TinyMCE Advanced on my site and can confirm that, when I deactivate TinyMCE Advanced, the “adding” function in Simple Fields works perfectly, in Firefox.
Forum: Plugins
In reply to: [Simple Fields] Problem with repeatable fieldsHi P?r,
Sure thing. Here is the output from Firebug’s Console.
Sorry the formatting isn’t ideal, here:10:43:44.051 Use of getUserData() or setUserData() is deprecated. Use WeakMap or element.dataset instead. requestNotifier.js:64
10:43:45.755 Use of getPreventDefault() is deprecated. Use defaultPrevented instead. load-scripts.php:4
10:43:46.875 “init simple_fields_file_field” scripts.js:22
10:43:47.191 Use of Mutation Events is deprecated. Use MutationObserver instead. script.js:19
10:43:48.497 Use of getUserData() or setUserData() is deprecated. Use WeakMap or element.dataset instead. requestNotifier.js:64
10:43:57.109 Use of getUserData() or setUserData() is deprecated. Use WeakMap or element.dataset instead. requestNotifier.js:64
10:43:57.141 SyntaxError: unmatched ) in regular expression load-scripts.php:4Do let me know if you need any more information. Thanks for looking into this. ??
Forum: Plugins
In reply to: [Simple Fields] Problem with repeatable fieldsI, too, am stuck with ‘Adding…’, if I use Firefox (which I prefer to do). It works fine in Chrome, just like DogHustler.
I’m also on a Mac (using Mountain Lion).
If the author needs any more info, I’m happy to provide it.
Thanks,
ChrisOh, pupunzi. So sorry. It was right there in front of me all along!
Your plugin is delightfully thorough.
Thanks for sharing the awesomeness.Indeed, my particular issue was solved, server-side.
I wrote to my hosting company about this issue (quoting the CSS3114 error).
They wrote back:We believe the issue is simply related to the MIME Type definition for the .woff extension. We have just created the proper MIME Type for you
And, BAM!, no more VmP.
Thanks again for creating an awesome plugin.
Hi Matteo,
Thanks for getting back to me on this.
These symptoms show up both on my computer, as well as the computers at netrenderer.com.
The page in question is https://maikai.ca/?page_id=19.
(Please note: I was planning to create an ‘if’ statement to make IE9 and IE10 use the built-in WordPress 3.6 audio player, this morning. But I’ll hold off on that so that you can view the page as it is.)One thing to note is that my hosting provider is decidedly NOT easy-going. I’ve had to contact them three times now to take care of issues that were screwing up the operation of the WordPress installation:
1) PHP max upload limit
2) Temp directory location
3) .svg & .svgz MIME type supportDo you think it could be something to do with a server-side setting?
Thanks!
Forum: Plugins
In reply to: [Simple Fields] Attach field group to a particular post/pageAck, nevermind.
I had blindly set up Post Type Defaults.
Turned that off, and all is well.Again… great plugin! Thanks.
Forum: Plugins
In reply to: [Simple Fields] Displaying collated content of field group…I just had to flip the two bracketed items.
From
echo $audiofile['url'][$i]
to
echo $audiofile[$i]['url']
Huzzah!
Forum: Plugins
In reply to: [Simple Fields] Displaying collated content of field groupOkay, I can see now that the formatting is not a problem. It’s because one field is HTML and one isn’t. I can fix that later.
What’s most important is that $audiofile is retuning an array.
I know this is because the field is returning an extended array of info.So I need to change
echo $audiofile[$i];
to something like:
echo $audiofile['url'][$i];
But this doesn’t work.
How can I call on each $i iteration of the URL part of the ‘audiofile’ array?Thanks!
ChrisHow can I return the URL for each of the “audiofile” fields?
Thanks.