Drew Baker
Forum Replies Created
-
Forum: Plugins
In reply to: [Nested Pages] Breaking Similar PermalinksYeah I’m seeing this too. The permalink will be to the correct page, but all the content of $post will be a different post.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Compatible with WP 3.6?One such warning I’ve got is this:
Notice: wpdb::escape is deprecated since version 3.6! Use wpdb::prepare() or esc_sql() instead. in /nfs/c03/h01/mnt/167900/domains/dev.example.com/html/wordpress/wp-includes/functions.php on line 2871
Forum: Plugins
In reply to: [WP Re-Importer] Not all images are being imported from wordpress.com siteHow does re-importer handle images that are already present?
Forum: Plugins
In reply to: [Viper's Video Quicktags] 6.4.4 JS error in adminHey Alex,
I cleared my cache, and the error has gone away. So I guess it was a hold over file from 6.4.3. Thanks for the help, glad that we at least identified the SWFobject unneeded load.
Also, while I have you here. If it’s not to much to ask, could you include proper iOS YouTube imbedding in a future version?
https://www.ads-software.com/support/topic/plugin-vipers-video-quicktags-youtube-image-link-shown-on-iosThanks for the great work Alex!
Bumping this. Viper my company is happy to pay you to fix this.
Forum: Plugins
In reply to: [ImageFX] [Plugin: ImageFX] Doesn't work on older postsI can confirm this issue. I emailed Otto about it on the 11th, and have got no response.
Basically, if you do the following, you won’t get an image:- Create a Page
- Upload and set a featured thumb and publish page ( = ImageFX producers new thumbnail correctly)
- Remove featured thumb and delete if from the gallery.
- Upload new thumbnail ( = No new thumbnail created by ImageFX).
So, basically you can’t set a thumbnail publish the post/page, then remove it and try another one. You only get one shot at it per page at time of creation.
Forum: Hacks
In reply to: wp_insert_user breaks if I set an IDThanks, now that I think about it I think I’ll map the FB ID to the WP username. They are both unique numbers, so it should be fine.
Thanks again!
Forum: Fixing WordPress
In reply to: post_password_required() not workingForum: Fixing WordPress
In reply to: post_password_required() not workingAs of 3.4 “post_password_required()” no longer works for me too.
The password form in TwentyEleven works though. I have no plugins turned on.
Forum: Plugins
In reply to: [Viper's Video Quicktags] [Plugin: Viper's Video Quicktags] Vimeo HTTPSI +1 this, it’s doing it for me too.
Forum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Wiredrive Plugin not workingI don’t think that is a proper presentation URL. It needs to contain an RSS feed, which this does not.
Forum: Plugins
In reply to: [Viper's Video Quicktags] Vimeo autoplay?I too would like to be able to set autoplay for Vimeo.
This is my embed code:
[vimeo autoplay=’1′]https://www.vimeo.com/240975[/vimeo]I looked through the code for the plugin, and it appears to be half enabled, perhaps this is a bug?
Hello Tollmanz,
Thanks for the reply. I’ll try to walk you through what I’m trying to do:I’m building a photography site. Each photo is it’s own page in a hierarchical taxonomy. For example:
Cars
– – BMW
– – Ford
Speed
– – Fast
– – SlowSo a photo of a fast BMW will be in the ‘Cars’, ‘BMW’, ‘Speed’ and ‘Fast’ terms. I’d like to be able to order each page in each term. So when looking at the term page for ‘Fast’ I can set the order, and when looking at BMW I can set an order too etc.
That real life example is a little more messy. This is a term page for photos tagged with “luxurious”:
https://www.trevorpearson.com/dev/interest-filter/luxurious/I’d like to be able to set the order that they appear (like menu_order).
Now, several of the same photos are also tagged with the term “interior” and are shown here:
https://www.trevorpearson.com/dev/interest-filter/auto-interiors/So I’d like to be able to set an order for this term as well that was separate to the order set for ‘Luxurious’.
I’m not even sure if it’s possible. I think you’d have to create a custom-field for each page that then stores the term and the page order for that term in an array. My thoughts were something like this:
$key = term; $value = order; custom_order = array( 'BMW' => '3', 'Fast' => '20', 'Interior' => '7', 'Luxurious' => '12' );
That way you have a page order stored for each term that is applied to the page. The problem would be that WordPress’s admin pages aren’t really setup to allow multiple page ordering, so I’m not sure how to deal with that. You wouldn’t want to have to enter in the order on each “Edit page” page, you’d want to tie it into some sort of drag-and-drop page order plugin that worked on term pages.
Looking into this, it seems that this only lets you order terms, not actually order posts/pages that are tagged with the terms. Is that right?
Forum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Glitch When Plugin ActivatedMyaleigh,
Did you ever get this to work? I believe it was a conflict with TinyMCE Advanced.-Drew