Kruncher
Forum Replies Created
-
Forum: Plugins
In reply to: Upload and Embed QuickTime MoviesThanks for the link.
Is there an approach which adds some sort of GUI to this? As far as I can tell the above plugin requires that I find and copy the media link, and then paste it into a shortcode.
This is to complicated for my client.
Am I missing something here?
Thanks again
Forum: Plugins
In reply to: [WP Super Edit] [Plugin: WP Super Edit] Doesn't work, PHP ErrorI have checked the database and there are only two additional tables:
– wp_wp_super_edit_options
– wp_wp_super_edit_pluginsThe third appears to be missing.
My development server information:
Hardware:
– Intel Core i7 2.80GHz
– 8.00 GB RAMSoftware:
– Windows 7 Ultimate (64-bit)
– Apache 2.2.16
– MySQL 5.1.50
– PHP 5.3.3Please let me know if there is any other information that would be of assistance…
Forum: Fixing WordPress
In reply to: rtl.css – just noticed this – what is it?I am developing a theme for WordPress which will support language translation using a plugin like GTranslate.
Do I need to write a custom rtl.css file for my theme? If it is a good idea for me to write this file, how would I go about testing it?
Thanks,
Forum: Hacks
In reply to: Custom wp-admin ThemeThanks Mark that is very helpful!
Forum: Hacks
In reply to: Custom wp-admin ThemeThanks for the input guys. This morning I have come across a plugin called “Ozh’s Admin Drop Down Menu” which makes the admin navigation similar to my requirements.
I still need to find a way to add and remove menu items, but it looks to be a good start.
Any suggestions on admin hooks which can be overridden?
Forum: Fixing WordPress
In reply to: No new plugins, no upgrades, but suddenly WP site is not accessibleHi tonyfleming,
This is a response to another “closed” thread that you spoke on “[Plugin Widget Context] Target by URL does not work”.
I had this very same issue and believe it to be a problem of the plugin. I have managed to solve it for my website. Please let me know if you are interested and I will post you the modified widget context code.
Kind regards,
Lea HayesForum: Fixing WordPress
In reply to: How to replace cookie authentication with session?Is it possible to use
add_filter
to replace both the cookie authentication procedure AND the part where it creates the cookie?I would like to use session data for authentication instead.
Kind regards,
Forum: Fixing WordPress
In reply to: Thumbnail title and alt?Thanks walterdevos! That is really useful to know!
Forum: Fixing WordPress
In reply to: Thumbnail title and alt?You can do this using regular expressions. I have not tested the second example, but the first is practically pasted from a blog that I have been working on.
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 ); function my_post_image_html( $html, $post_id, $post_image_id ) { // Example: Use post title instead of image title. $post_title = esc_attr( get_post_field( 'post_title', $post_id ) ); // Replace image title with post title. $html = preg_replace( '/(<img[^>]*title\s*=\s*)"[^"]*"|\'[^\']*\'/', '$1"'.$post_title.'"', $html, 1 ); // Example: Use "Post Thumbnail" for "alt". $html = preg_replace( '/(<img[^>]*alt\s*=\s*)"[^"]*"|\'[^\']*\'/', '$1"Post Thumbnail"', $html, 1 ); return $html; }
I hope that this is of use.
Forum: Fixing WordPress
In reply to: Question Regarding Data Protection ActThank you for your response, it is appreciated.
Do you know if there is a requirement for a non-business blog to be registered with the DPA?
Thanks again.
Forum: Requests and Feedback
In reply to: Bug? semantic_titleThanks for the link, I will try there.
Forum: Requests and Feedback
In reply to: Bug? semantic_titleI have got a response from the TRAC saying that this is not a part of the WordPress core and that I need to report it to “WordPress Framework” instead.
Do you know how I would go about doing this, I cannot see anything in the above link other than “Plugins and Themes”.
Forum: Fixing WordPress
In reply to: Adding “Post New” On Home PageI have found that the above script works for page templates, but when integrating into custom pages (above the WordPress directory) that simply nothing happens.
Am I missing a “requires”?
Forum: Requests and Feedback
In reply to: Bug? semantic_titleThank you, I have reported this bug.
Forum: Fixing WordPress
In reply to: Display and Format News Feed on Home PageThanks esmi!
That link explains everything that I wanted.