Re: [wp-testers] Custom navigation - sub menu items

2010-04-12 Thread Azizur Rahman

This issue was resolved. Not sure if it had come back?

Have you cleared your browser cache?

Azizur Rahman
ProDevStudio

http://prodevstudio.com

If you are running east looking for a sunset, you'll never see it no  
matter how hard you try.


On 12 Apr 2010, at 01:47 PM, Mehmet Ozekinci mhmto...@gmail.com wrote:


Hi,

I am not sure if it has been mentioned earlier or it was meant to be  
that

way, but I just had a problem with custom navigation

When adding a category into navigation using widgets, the sub  
categories are
becoming top level category and displaying themselves in the same  
level with

parent one.

Anyone else had similar issue?

Mehmet
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers

___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Custom Post Types single.php not working

2010-04-12 Thread Michael E. Hancock


From: Jimmy Roy jimmy@gmail.com

I haven't any answer for this problem but I'm interesting to know if you
know a tutorial about how to use custom type, I already know how to create
it, now it's the second step, how to display it.


This thread has some possibilities

http://wordpress.org/support/topic/386552

MichaelH 


___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Custom Post Types single.php not working

2010-04-12 Thread Michael Van Winkle
I've been troubleshooting this on my own sites and have found there are at
least two different erros that can cause the problem.

First, make sure the rewrite parameter in the register_post_type()
function is set up properly. It should be 'rewrite' = array('slug' = 'YOUR
POST TYPE'). I found that using the custom post type UI plugin to set up
your post type can be buggy regarding the rewrite setup. In one instance it
kept setting the rewrite to false even though I was setting the plugin
controls to true. I'm finding that registering the post type manually via
functions.php is a much more reliable method right now.

Second, if the slug for your post type is being used by a category (or maybe
even a page) you'll get a 404 when you go to your single.php page. You'll
need to change the slug for your category and the REBUILD your permalinks.

Hope this helps.

Cheers,

Mike Van Winkle

On Mon, Apr 12, 2010 at 12:16 PM, Jimmy Roy jimmy@gmail.com wrote:

 hi guys,
 I haven't any answer for this problem but I'm interesting to know if you
 know a tutorial about how to use custom type, I already know how to create
 it, now it's the second step, how to display it.

 thanks for your help

 Jimmy


 2010/4/11 Brad Williams b...@webdevstudios.com

  Mike - I would love to hear exactly what you did that caused an issue w/
  Custom Post Type UI.  Any info you can provide will help me track down
 bugs
  if they exist.  Feel free to email me directly, thanks!
 
  -Brad
  @williamsba
 
  -Original Message-
  From: wp-testers-boun...@lists.automattic.com
  [mailto:wp-testers-boun...@lists.automattic.com] On Behalf Of Michael
 Van
  Winkle
  Sent: Saturday, April 10, 2010 4:51 PM
  To: wp-testers@lists.automattic.com
  Subject: Re: [wp-testers] Custom Post Types single.php not working
 
  I encountered a similar problem but it turned out to be the Custom Post
  Type
  UI plugin (which is stil BETA of course). Once I abandoned the plugin and
  registered manually using my functions.php I didn't seem to have any
  problems. Just FYI.
 
  Mike
 
  On Sat, Apr 10, 2010 at 10:29 AM, scribu scr...@gmail.com wrote:
 
   I think it might be a problem with your theme. Are you calling
   query_posts()
   or doing something with $post?
  
   Try disabling all plugins and using the default theme.
  
  
   --
   http://scribu.net
   ___
   wp-testers mailing list
   wp-testers@lists.automattic.com
   http://lists.automattic.com/mailman/listinfo/wp-testers
  
 
 
 
  --
  Michael Van Winkle
  Foundation for Economic Education
  30 S Broadway
  Irvington, NY   10533
  708-289-3136
  mvanwin...@fee.org
  http://www.twitter.com/mpvanwinkle
  http://www.facebook.com/mpvanwinkle
 
 
  All excellent things are as difficult as they are rare. -Spinoza
  ___
  wp-testers mailing list
  wp-testers@lists.automattic.com
  http://lists.automattic.com/mailman/listinfo/wp-testers
 
  ___
  wp-testers mailing list
  wp-testers@lists.automattic.com
  http://lists.automattic.com/mailman/listinfo/wp-testers
 
 ___
 wp-testers mailing list
 wp-testers@lists.automattic.com
 http://lists.automattic.com/mailman/listinfo/wp-testers




-- 
Michael Van Winkle
Foundation for Economic Education
30 S Broadway
Irvington, NY   10533
708-289-3136
mvanwin...@fee.org
http://www.twitter.com/mpvanwinkle
http://www.facebook.com/mpvanwinkle


All excellent things are as difficult as they are rare. -Spinoza
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Custom Post Types single.php not working

2010-04-12 Thread Paul Robinson
I don't want to be seen as hijacking a thread or anything, but I was
wondering. In the final version of 3.0 will permalinks be
automatically rebuilt when adding a post type or will we still have to
go settings - permalinks like we do now? Not that it's much of a
problem, just wondering is all. :)

On 12 April 2010 19:33, Michael Van Winkle m...@mikevanwinkle.com wrote:
 I've been troubleshooting this on my own sites and have found there are at
 least two different erros that can cause the problem.

 First, make sure the rewrite parameter in the register_post_type()
 function is set up properly. It should be 'rewrite' = array('slug' = 'YOUR
 POST TYPE'). I found that using the custom post type UI plugin to set up
 your post type can be buggy regarding the rewrite setup. In one instance it
 kept setting the rewrite to false even though I was setting the plugin
 controls to true. I'm finding that registering the post type manually via
 functions.php is a much more reliable method right now.

 Second, if the slug for your post type is being used by a category (or maybe
 even a page) you'll get a 404 when you go to your single.php page. You'll
 need to change the slug for your category and the REBUILD your permalinks.

 Hope this helps.

 Cheers,

 Mike Van Winkle

 On Mon, Apr 12, 2010 at 12:16 PM, Jimmy Roy jimmy@gmail.com wrote:

 hi guys,
 I haven't any answer for this problem but I'm interesting to know if you
 know a tutorial about how to use custom type, I already know how to create
 it, now it's the second step, how to display it.

 thanks for your help

 Jimmy


 2010/4/11 Brad Williams b...@webdevstudios.com

  Mike - I would love to hear exactly what you did that caused an issue w/
  Custom Post Type UI.  Any info you can provide will help me track down
 bugs
  if they exist.  Feel free to email me directly, thanks!
 
  -Brad
  @williamsba
 
  -Original Message-
  From: wp-testers-boun...@lists.automattic.com
  [mailto:wp-testers-boun...@lists.automattic.com] On Behalf Of Michael
 Van
  Winkle
  Sent: Saturday, April 10, 2010 4:51 PM
  To: wp-testers@lists.automattic.com
  Subject: Re: [wp-testers] Custom Post Types single.php not working
 
  I encountered a similar problem but it turned out to be the Custom Post
  Type
  UI plugin (which is stil BETA of course). Once I abandoned the plugin and
  registered manually using my functions.php I didn't seem to have any
  problems. Just FYI.
 
  Mike
 
  On Sat, Apr 10, 2010 at 10:29 AM, scribu scr...@gmail.com wrote:
 
   I think it might be a problem with your theme. Are you calling
   query_posts()
   or doing something with $post?
  
   Try disabling all plugins and using the default theme.
  
  
   --
   http://scribu.net
   ___
   wp-testers mailing list
   wp-testers@lists.automattic.com
   http://lists.automattic.com/mailman/listinfo/wp-testers
  
 
 
 
  --
  Michael Van Winkle
  Foundation for Economic Education
  30 S Broadway
  Irvington, NY   10533
  708-289-3136
  mvanwin...@fee.org
  http://www.twitter.com/mpvanwinkle
  http://www.facebook.com/mpvanwinkle
 
 
  All excellent things are as difficult as they are rare. -Spinoza
  ___
  wp-testers mailing list
  wp-testers@lists.automattic.com
  http://lists.automattic.com/mailman/listinfo/wp-testers
 
  ___
  wp-testers mailing list
  wp-testers@lists.automattic.com
  http://lists.automattic.com/mailman/listinfo/wp-testers
 
 ___
 wp-testers mailing list
 wp-testers@lists.automattic.com
 http://lists.automattic.com/mailman/listinfo/wp-testers




 --
 Michael Van Winkle
 Foundation for Economic Education
 30 S Broadway
 Irvington, NY   10533
 708-289-3136
 mvanwin...@fee.org
 http://www.twitter.com/mpvanwinkle
 http://www.facebook.com/mpvanwinkle


 All excellent things are as difficult as they are rare. -Spinoza
 ___
 wp-testers mailing list
 wp-testers@lists.automattic.com
 http://lists.automattic.com/mailman/listinfo/wp-testers

___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


Re: [wp-testers] Unable to save custom Link URL for Featured Images on Custom Post Type

2010-04-12 Thread Dion Hulse (dd32)
On Tue, 13 Apr 2010 04:50:39 +1000, Ross Chapman r...@folkspants.com  
wrote:
When setting a featured image on a custom post type the changes I make  
to the Link URL field don't take upon Save, and the default File URL  
link remains.  If I go through the Image Uploader from the WYSIWYG it's  
the same result.   Same seems to happen when editing a normal Post  
(type).


As far as I'm aware, Its a Featured Image, Not a Featured Image Link. It  
doesnt offer the ability for the thumbnail to link elsewhere.


So it not saving it, is by design.
--
Dion Hulse / dd32
Contact:
 e: cont...@dd32.id.au
 Web: http://dd32.id.au/
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers


[wp-testers] can't query/get posts of custom post type using category argument

2010-04-12 Thread Ross Chapman
Not working using category_name or category with ID.  Example:

?php 

$args = array(
'post_type' = 'team',
'category_name' = 'Executive',
'numberposts' = -1,
'post_status' = null,
'post_parent' = $post-ID
);
$members = get_posts($args);
foreach($members as $post) :
setup_postdata($post);

?

Thanks, 
-Ross
___
wp-testers mailing list
wp-testers@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-testers