dennybot
Forum Replies Created
-
Forum: Plugins
In reply to: P2: How to make input in 'post-form' fields required?Forum: Themes and Templates
In reply to: P2 Theme: Post Form (Quickpress) Customization@weblogian: Thanks for the link, it sounds intriguing.
I’m honestly not sure what to to do activate and play with it.
Which folder should I extract the contents of the zip to?
Is there any additional documentation for this plugin?
Forum: Themes and Templates
In reply to: P2 Post Form: Update Coming?@noelsaw, that’s really odd.
When I activate the P2 reloaded theme, and click the same place you show, the page seems to merely refresh the main content I’m already looking at. Perhaps there’s an installation glitch.
Here’s the url it’s calling onclick of the options button:
https://10.73.10.52/wordpress/wp-admin/themes.php?activated=true
Which is the page I was on when I clicked it.
I’m wondering whether it has to do with multiple P2-type themes I have installed, and am switching between looking for the perfect one.
Unfortunately for me, there is no perfect one, as I find myself wishing for elements of all of them. ??
Forum: Themes and Templates
In reply to: P2 Post Form: Update Coming?So, I’ve got some issues getting the category buttons rigged up in the P2 quickpress form. I’ll post a new topic on that to see if anyone is willing he help. Thanks for the honest replies!
Forum: Themes and Templates
In reply to: P2 Post Form: Update Coming?I’m a bit curious about something…
In many of the P2 “modified” themes I notice that the ‘Theme Options’ tab under ‘Appearance’ is dead. It’s ahppening with P2 two 1.0.4.1 and GTD/P2 Reloaded 2.5.
Forum: Themes and Templates
In reply to: P2 Post Form: Update Coming?Hey, noelsaw…
Just checked out P2 Reloaded.
Lots of good stuff there… but it’s still definitely missing the front page quickpress functions/flexibility I’m looking for, like category picker and media uploader.
In short, here’s my wish list. I tend to think others would greatly benefit from it too…
1. Two types of posts: “Blog Post” and “Status.” If a user picks status, the form would have a title, post and tag field, plus an image uploader for inserting an image into post. If user picks blog post, the form would have a title, post and tag field, along with a category picker and the image uploader.
2. As for the “notify” functions I see in GTD, I’m looking forward to taking advantage of it but would like to be able to toggle it off. Not a huge issue though.
Forum: Themes and Templates
In reply to: P2 Post Form: Update Coming?Thanks for the info, Nobble.
To answer your question, I was thinking along the lines of a commercial P2 theme that had a bit more flexibility and function on the area of the front page quickpress. I’d really not want to spend too much time and money on a customized theme, as that really only lasts until the P2-style themes come of age a bit more. Know what I’m saying?
I’m considering a solution of adding my specific categories to the quickpress form on the latest P2, replacing most of what they have (Blog Post, Quote and Link) and keeping Status.
That would hold me over for now.
I’ll try to figure that out for myself, but I am only “familiar” with the WP PHP structure and functions.
I think there is enough in this forum to get me there. (thanks all!)
That said, I might need some help. ??
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedHello all… I resolved the IE issues two posts up; it was a syntax error in my script instantiation in the <head>.
HOWEVER, I am still throwing a js error in IE (6&7):
Line 127
Char:15
Error: ‘null’ is null or not an object
Code: 0Has anyone seen this error as well, and figured out what it might be? THis is a standalone player implementation.
As I’m mentioned, I’m developing internally don’t have an outward facing test that would mimic my current environment. So I understand that it’s not a perfect situation to ask for advice. Just thought someone may recognize the error and offer a suggestion.
Thanks…
Forum: Plugins
In reply to: [Plugin: Audio Player] Version 2.0 beta releasedPlayer not functional in IE7…
Hello all. I am having issues in IE7 with the standalone 2.6 beta player. (The player is working fine in FF2.)
I guess my main question is has anyone set up this player before and had it work fine in FF but not work in IE? By not working, I mena the plaer does ‘show up’ but it has no mouseover functionality. It is like a graphic with no anchor tag.
I am developing internally, so no public facing test is available right now. BUT, I will post the syntax of my setup below.
In the head of my page, I have the following. The ‘audio-player.js’ is the file that included swfobject2.1.
<script type=”text/javascript” src=”/js/audio-player.js”></script>
<script type=”text/javascript”>
AudioPlayer.setup(“/swf/audio-player/player.swf”, {
width: 600,
initialvolume: 100,
transparentpagebg: “yes”,
leftbg: “efefef”,
lefticon: “b6b6b6”,
rightbg: “efefef”,
righticon: “b6b6b6”,
loader: “990000”,
track: “949494”,
tracker: “d6d6d6”,
text: “7f7f7f”
});
</script>On my page, I am using the following:
<p id=”audioplayer_1″>Please download the latest Flash Player</p>
<script type=”text/javascript”>
AudioPlayer.embed(“audioplayer_1”, {
soundFile: “/media/audio/song.mp3”,
titles: “Song”,
artists: “Artist”
});
</script>