plinth
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Opt-in] [Plugin: WP Opt-in] CSS classes PLEASE!!!@begetolo: Why should I be forced to add more jquery script to my site when I shouldn’t have to? Adding css classes is a pretty basic part of forming a good plugin.
@petter: Couple of things, firstly I still think this is a good, lightweight plugin that just needs a few small tweaks to make it great.
The changes you’ve made to the latest version, specifically “Modified default options for form header for better CSS” are not enough to make it suitably usable with css. I tried adding a class to the error messages so that they would display like this:
<p class="msg">Bad e-mail address.</p>But when I did that it ‘broke’ the admin panel. Here’s a screengrab to what I see now: http://awesomescreenshot.com/008hwqqe0
Surely it wouldn’t be a big job to change your core code to have these display with a paragraph class by default? Also, I often need to style the input fields differently, and if you haven’t added a class then I can’t separate them.
Forum: Fixing WordPress
In reply to: Stop post reordering on update?Actually – don’t worry. I haven’t found a solution but realised I asked the wrong question…
Forum: Fixing WordPress
In reply to: External XML feed into WordPress?I didn’t find a 100% fit my my specific problem, but Yahoo Pipes comes very close – a great way to include data from a variety of sources. A steep learning curve, but well worth it.
Forum: Plugins
In reply to: [WP Opt-in] [Plugin: WP Opt-in] CSS classes PLEASE!!!Still not ideal. I’ve done the following to get it to look how I want. Hacking the core plugin is not something I like doing, but in the absence of usable css classes I’ve had to:
function wpoi_show_form() { echo '<form class="form" action="" method="post">' . "\n"; echo '' . wpoi_get_option('wpoi_form_email'); echo ' <input type="text" onfocus="this.value = (this.value==\'Sign up for our emailers...\')? \'\' : this.value;" value="Sign up for our emailers..." class="formentry" name="wpoi_email" id="wpoi_email" />' . "\n"; echo '<input type="image" class="submit" src="/wp-content/themes/x/images/submit.png" value="' . wpoi_get_option('wpoi_form_send'); echo '" />' . "\n</form>\n"; }Forum: Plugins
In reply to: [WP Opt-in] [Plugin: WP Opt-in] CSS classes PLEASE!!!Forum: Fixing WordPress
In reply to: Php memory limit not updatedJust to throw in my two pennies – moving the php.ini file from the public_html root (where I was told to put it), into the wp-admin folder worked for me.
Forum: Fixing WordPress
In reply to: List authors by role with bio and photo?Found this, looks pretty good, will report back…
Forum: Plugins
In reply to: [Plugin: Classy wp_list_pages] Last class not workingI had to install version 1.3 until the “last” class would apply. Works fine, but updating a plugin should make it work better, not break it!
I’ve got WP Super Cache installed, but I’ve turned it off and cleared the cache but still no joy…
Forum: Fixing WordPress
In reply to: List recent posts but style first result differently?Thanks chinmoy29, works perfectly!
Forum: Plugins
In reply to: External media hosting+1
Forum: Plugins
In reply to: Disable Specific Plugins on Specific PagesDoes anyone else have a solution for this – I tried headspace but it caused a fatal error with a crucial plugin. Thanks
Forum: Plugins
In reply to: [Plugin: Job Manager] Clicking on job title takes you to all posts pageSorted it – the job posts that this was happening to all had a hyphen in the title, like “Manager – Recruitment”. It was the hyphen/dash that was causing it, when I removed it the job linked back to the right place.
Forum: Fixing WordPress
In reply to: Custom field image won’t appear on child pageNo, the parent and child pages have different page templates, but the custom field is inside sidebar.php so I wouldn’t have thought it would make a difference?
Forum: Fixing WordPress
In reply to: How to get top parent (id or name?)Could you explain how please – share the love!