[theme-reviewers] New theme upload

Rashed Latif rashed.latif at gmail.com
Fri Jan 7 13:38:52 UTC 2011


Otto.. now it all clear to me. from next time i'll follow this way.
this is my first theme uploaded on here so still learning all the
procedures.
Thanks

On 1/7/11, Edward Caissie <edward.caissie at gmail.com> wrote:
> @Rashed - Yes, this is the rule of thumb, but also take into consideration
> this is for open tickets. If you have a ticket open for a Theme that has not
> been reviewed yet; and, you upload a new version (for whatever reason); then
> you note the new ticket on the old (open) ticket to keep the Theme's place
> in the queue.
>
>
> Cais.
>
> On Fri, Jan 7, 2011 at 8:28 AM, Rashed Latif <rashed.latif at gmail.com> wrote:
>
>> Thanks Otto for your information and advice.
>> I actually put a comment on old ticket as per Jay's suggestion which was
>> "Place a link to the new ticket in a comment on the old one, the new
>> one will be reviewed in its place."
>>
>> Anyways..i'll wait till its picked up by someone.
>>
>> On 1/7/11, Edward Caissie <edward.caissie at gmail.com> wrote:
>> > Pleaser also take into consideration, commenting on an old "closed"
>> ticket
>> > does not generally put up any flags unless there is a current ongoing
>> > discussion.
>> >
>> > The "Priority Reports" we use to queue Themes with open tickets for
>> review
>> > is generally considered our primary source for choosing which Theme to
>> > review next.
>> >
>> >
>> > Cais.
>> >
>> > On Fri, Jan 7, 2011 at 1:38 AM, Otto <otto at ottodestruct.com> wrote:
>> >
>> >> There are currently 93 themes awaiting review. The amount of time it
>> >> takes to do a review is not small. So, please, stop griping about the
>> >> delay over and over.
>> >>
>> >> I realize you're frustrated, but complaining about it won't get them
>> >> there any faster.
>> >>
>> >> -Otto
>> >>
>> >>
>> >>
>> >> On Thu, Jan 6, 2011 at 11:26 PM, Rashed Latif <rashed.latif at gmail.com>
>> >> wrote:
>> >> > hi
>> >> > another query. After i put a comment in my closed ticket how can the
>> >> > theme-reviewers come to know about that related new ticket?? probably
>> >> > a silly question but i am really getting frustrated for the long
>> >> > delay.
>> >> >
>> >> > On 1/6/11, Rashed Latif <rashed.latif at gmail.com> wrote:
>> >> >> Thanks Phil. I already put a comment on old ticket. Now time to wait
>> >> again.
>> >> >>
>> >> >> On 1/5/11, Philip M. Hofer (Frumph) <philip at frumph.net> wrote:
>> >> >>> At the very top, there's a "login" button, click that and use your
>> >> >>> account
>> >> >>> information that you login to wordpress.org with, that will log you
>> >> on,
>> >> >>> then
>> >> >>> a comment box will appear below the previous ticket.
>> >> >>>
>> >> >>> - Phil
>> >> >>>
>> >> >>>
>> >> >>> ----- Original Message -----
>> >> >>> From: "Rashed Latif" <rashed.latif at gmail.com>
>> >> >>> To: <theme-reviewers at lists.wordpress.org>
>> >> >>> Sent: Wednesday, January 05, 2011 4:41 AM
>> >> >>> Subject: Re: [theme-reviewers] New theme upload
>> >> >>>
>> >> >>>
>> >> >>> Thanks for the reply but i need a help. how can i put a comment? i
>> >> >>> cannot find a link to put any comment.
>> >> >>>
>> >> >>> On 1/5/11, Jay <furcifer at furcifer.me> wrote:
>> >> >>>> And Phil beat me to it again, lol, Phil do you ever sleep :p
>> >> >>>>
>> >> >>>> "Philip M. Hofer (Frumph)" <philip at frumph.net> wrote:
>> >> >>>>
>> >> >>>>>Post on #2282 that a new theme was uploaded and you would like the
>> >> >>>>>reviewer
>> >> >>>>>to move ahead to it.
>> >> >>>>>
>> >> >>>>>- Phil
>> >> >>>>>
>> >> >>>>>
>> >> >>>>>----- Original Message -----
>> >> >>>>>From: "Rashed Latif" <rashed.latif at gmail.com>
>> >> >>>>>To: <theme-reviewers at lists.wordpress.org>
>> >> >>>>>Sent: Wednesday, January 05, 2011 4:00 AM
>> >> >>>>>Subject: Re: [theme-reviewers] New theme upload
>> >> >>>>>
>> >> >>>>>
>> >> >>>>>I uploaded a newer version of my theme 5 days ago where i
>> >> >>>>> corrected
>> >> >>>>>few errors generated by automatic scan and as a result i got a new
>> >> >>>>>ticket number #2407. My previous ticket number was #2282 which was
>> >> >>>>>uploaded 3 weeks ago and it wasnt accepted by any theme reviewer
>> till
>> >> >>>>>then due to holiday season. i am just wondering do i need to wait
>> 3-4
>> >> >>>>>more weeks again?
>> >> >>>>>
>> >> >>>>>On 12/31/10, Rashed Latif <rashed.latif at gmail.com> wrote:
>> >> >>>>>> Thanks a lot. Adding the script posted by michael solved the
>> issue
>> >> >>>>>> straight away.
>> >> >>>>>> Thanks to Edward aswell.
>> >> >>>>>>
>> >> >>>>>>
>> >> >>>>>> On 12/31/10, Edward Caissie <edward.caissie at gmail.com> wrote:
>> >> >>>>>>> This is another method that will meet the criteria:
>> >> >>>>>>>
>> >> >>>>>>> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply'
>> >> >>>>>>> );
>> >> >>>>>>> ?>
>> >> >>>>>>>
>> >> >>>>>>> You can just add the above line right before your wp_head()
>> call.
>> >> >>>>>>>
>> >> >>>>>>>
>> >> >>>>>>> Cais.
>> >> >>>>>>>
>> >> >>>>>>> On Thu, Dec 30, 2010 at 7:09 PM, <michael at mfields.org> wrote:
>> >> >>>>>>>
>> >> >>>>>>>> Something like this works pretty well:
>> >> >>>>>>>>
>> >> >>>>>>>> function mytheme_comment_reply_js() {
>> >> >>>>>>>>        if ( is_singular() && get_option( 'thread_comments' ) )
>> {
>> >> >>>>>>>>                wp_enqueue_script( 'comment-reply' );
>> >> >>>>>>>>        }
>> >> >>>>>>>> }
>> >> >>>>>>>> add_action( 'wp_print_scripts', 'mytheme_comment_reply_js' );
>> >> >>>>>>>>
>> >> >>>>>>>> > Hello
>> >> >>>>>>>> > Automatic theme scanning is showing the following error
>> >> >>>>>>>> > message.
>> >> >>>>>>>> > â– REQUIRED: Could not find comment-reply in the PHP files.
>> The
>> >> >>>>>theme
>> >> >>>>>>>> > must enqueue the comment-reply script on pages where there
>> are
>> >> >>>>>>>> > comments displayed.
>> >> >>>>>>>> >
>> >> >>>>>>>> > Can anyone tell me what that supposed to mean and how can i
>> get
>> >> >>>>>rid of
>> >> >>>>>>>> > it? i included comment_reply_link code in php files...i dont
>> >> know
>> >> >>>>>if
>> >> >>>>>>>> > that is related to the error at all or not.
>> >> >>>>>>>> >
>> >> >>>>>>>> > Thanks
>> >> >>>>>>>> >
>> >> >>>>>>>> >
>> >> >>>>>>>> >
>> >> >>>>>>>> > On 12/25/10, Rashed Latif <rashed.latif at gmail.com> wrote:
>> >> >>>>>>>> >> thanks phil. thats a good enough infomation. i know there
>> was
>> >> >>>>>3-4
>> >> >>>>>>>> >> errors while i submitted the theme. i'll try to reupload
>> >> >>>>>>>> >> the
>> >> >>>>>theme
>> >> >>>>>>>> >> after fixing those issues.
>> >> >>>>>>>> >>
>> >> >>>>>>>> >>
>> >> >>>>>>>> >> On 12/25/10, Philip M. Hofer (Frumph) <philip at frumph.net>
>> >> wrote:
>> >> >>>>>>>> >>> Apologize for the delay, however this is the holiday
>> >> >>>>>>>> >>> season
>> >> and
>> >> >>>>>most
>> >> >>>>>>>> >>> of
>> >> >>>>>>>> >>> the
>> >> >>>>>>>> >>> reviewers are with their families at this time, reviews
>> will
>> >> >>>>>pick up
>> >> >>>>>>>> >>> again
>> >> >>>>>>>> >>> after the holidays are over.
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> The priority is basically themes which have already passed
>> >> >>>>>>>> >>> the
>> >> >>>>>>>> >>> review
>> >> >>>>>>>> >>> process are #1,  then come themes that have already gone
>> >> >>>>>through or
>> >> >>>>>>>> >>> started
>> >> >>>>>>>> >>> the process, then lastly, new themes which have not been
>> >> >>>>>through the
>> >> >>>>>>>> >>> review
>> >> >>>>>>>> >>> process.
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> While you may see some that are uploaded later then you,
>> >> >>>>>>>> >>> those
>> >> >>>>>are
>> >> >>>>>>>> >>> probably
>> >> >>>>>>>> >>> in the 1st or 2nd priority.
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> My suggestion to you though, if you want it to pass the
>> >> >>>>>>>> >>> review
>> >> >>>>>team,
>> >> >>>>>>>> >>> download the theme-check plugin:
>> >> >>>>>>>> >>> http://wordpress.org/extend/plugins/theme-check/  found
>> here.
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> Run the theme-check plugin on your theme, if it passes the
>> >> >>>>>>>> >>> theme-check
>> >> >>>>>>>> >>> then
>> >> >>>>>>>> >>> you check your theme with the theme unit test, which is
>> found
>> >> >>>>>here:
>> >> >>>>>>>> >>> http://codex.wordpress.org/Theme_Unit_Test
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> If it passes the theme unit test and the theme-check
>> plugin,
>> >> >>>>>you're
>> >> >>>>>>>> >>> sure
>> >> >>>>>>>> >>> to
>> >> >>>>>>>> >>> get passed right away when your up.
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> - Phil
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> ----- Original Message -----
>> >> >>>>>>>> >>> From: "Rashed Latif" <rashed.latif at gmail.com>
>> >> >>>>>>>> >>> To: <theme-reviewers at lists.wordpress.org>
>> >> >>>>>>>> >>> Sent: Saturday, December 25, 2010 5:29 AM
>> >> >>>>>>>> >>> Subject: Re: [theme-reviewers] New theme upload
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>>> Hi
>> >> >>>>>>>> >>>> Can anyone tell me whats the position of my theme in the
>> >> >>>>>queue. Its
>> >> >>>>>>>> >>>> already been 12 days.
>> >> >>>>>>>> >>>> My ticket number is 2282 and still status is "New". If i
>> am
>> >> >>>>>not
>> >> >>>>>>>> >>>> wrong
>> >> >>>>>>>> >>>> i saw a post with ticket number 2352 which is assigned to
>> >> >>>>>otto. I
>> >> >>>>>>>> >>>> really cant figure out how your queue works.
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>> Thanks
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>> On 12/19/10, Furcifer <furcifer at furcifer.net> wrote:
>> >> >>>>>>>> >>>>> Rashed, we have a bit of a backlog at the moment, we'll
>> get
>> >> >>>>>to
>> >> >>>>>>>> >>>>> your
>> >> >>>>>>>> >>>>> theme
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> in
>> >> >>>>>>>> >>>>> it's turn.
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> Jay
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> -----Original Message-----
>> >> >>>>>>>> >>>>> From: Rashed Latif <rashed.latif at gmail.com>
>> >> >>>>>>>> >>>>> Sent: Sunday, December 19, 2010 10:36 AM
>> >> >>>>>>>> >>>>> To: theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>>> Subject: Re: [theme-reviewers] New theme upload
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> Its already been 6 days since i uploaded my theme for
>> >> >>>>>>>> >>>>> review
>> >> >>>>>and
>> >> >>>>>>>> >>>>> still
>> >> >>>>>>>> >>>>> no update. last week the average time was 5.9 days. also
>> >> like
>> >> >>>>>to
>> >> >>>>>>>> >>>>> know
>> >> >>>>>>>> >>>>> whats the next step after someone reviews the theme and
>> >> finds
>> >> >>>>>some
>> >> >>>>>>>> >>>>> errors. and any idea how long its gonna take to accept
>> >> >>>>>>>> >>>>> my
>> >> >>>>>theme
>> >> >>>>>>>> >>>>> for
>> >> >>>>>>>> >>>>> review?
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> On 12/16/10, Otto <otto at ottodestruct.com> wrote:
>> >> >>>>>>>> >>>>>> On Thu, Dec 16, 2010 at 4:25 AM, Rashed Latif
>> >> >>>>>>>> >>>>>> <rashed.latif at gmail.com>
>> >> >>>>>>>> >>>>>> wrote:
>> >> >>>>>>>> >>>>>>> I am just wondering what's the average time period for
>> >> >>>>>reviewing
>> >> >>>>>>>> >>>>>>> a
>> >> >>>>>>>> >>>>>>> theme.
>> >> >>>>>>>> >>>>>>
>> >> >>>>>>>> >>>>>> Last week it was 5.9 days:
>> >> >>>>>>>> >>>>>>
>> >> >>>>>
>> http://make.wordpress.org/themes/2010/11/21/weekly-stats-21-nov-10/
>> >> >>>>>>>> >>>>>>
>> >> >>>>>>>> >>>>>> -Otto
>> >> >>>>>>>> >>>>>> _______________________________________________
>> >> >>>>>>>> >>>>>> theme-reviewers mailing list
>> >> >>>>>>>> >>>>>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>>>>
>> >> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >>>>>>
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> --
>> >> >>>>>>>> >>>>> Rashed Latif
>> >> >>>>>>>> >>>>> _______________________________________________
>> >> >>>>>>>> >>>>> theme-reviewers mailing list
>> >> >>>>>>>> >>>>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>>>
>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>> _______________________________________________
>> >> >>>>>>>> >>>>> theme-reviewers mailing list
>> >> >>>>>>>> >>>>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>>>
>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >>>>>
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>> --
>> >> >>>>>>>> >>>> Rashed Latif
>> >> >>>>>>>> >>>> _______________________________________________
>> >> >>>>>>>> >>>> theme-reviewers mailing list
>> >> >>>>>>>> >>>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>>
>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >>>>
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>> _______________________________________________
>> >> >>>>>>>> >>> theme-reviewers mailing list
>> >> >>>>>>>> >>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> >>>
>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >>>
>> >> >>>>>>>> >>
>> >> >>>>>>>> >>
>> >> >>>>>>>> >> --
>> >> >>>>>>>> >> Rashed Latif
>> >> >>>>>>>> >>
>> >> >>>>>>>> >
>> >> >>>>>>>> >
>> >> >>>>>>>> > --
>> >> >>>>>>>> > Rashed Latif
>> >> >>>>>>>> > _______________________________________________
>> >> >>>>>>>> > theme-reviewers mailing list
>> >> >>>>>>>> > theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> > http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>> >
>> >> >>>>>>>>
>> >> >>>>>>>>
>> >> >>>>>>>> _______________________________________________
>> >> >>>>>>>> theme-reviewers mailing list
>> >> >>>>>>>> theme-reviewers at lists.wordpress.org
>> >> >>>>>>>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>>>>
>> >> >>>>>>>
>> >> >>>>>>
>> >> >>>>>>
>> >> >>>>>> --
>> >> >>>>>> Rashed Latif
>> >> >>>>>>
>> >> >>>>>
>> >> >>>>>
>> >> >>>>>--
>> >> >>>>>Rashed Latif
>> >> >>>>>_______________________________________________
>> >> >>>>>theme-reviewers mailing list
>> >> >>>>>theme-reviewers at lists.wordpress.org
>> >> >>>>>http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>>
>> >> >>>>>
>> >> >>>>>_______________________________________________
>> >> >>>>>theme-reviewers mailing list
>> >> >>>>>theme-reviewers at lists.wordpress.org
>> >> >>>>>http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>
>> >> >>>> --
>> >> >>>> Mobile, wolf is mobile.
>> >> >>>> Http://furcifer.net
>> >> >>>> _______________________________________________
>> >> >>>> theme-reviewers mailing list
>> >> >>>> theme-reviewers at lists.wordpress.org
>> >> >>>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>>
>> >> >>>
>> >> >>>
>> >> >>> --
>> >> >>> Rashed Latif
>> >> >>> _______________________________________________
>> >> >>> theme-reviewers mailing list
>> >> >>> theme-reviewers at lists.wordpress.org
>> >> >>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>
>> >> >>>
>> >> >>> _______________________________________________
>> >> >>> theme-reviewers mailing list
>> >> >>> theme-reviewers at lists.wordpress.org
>> >> >>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >>>
>> >> >>
>> >> >>
>> >> >> --
>> >> >> Rashed Latif
>> >> >>
>> >> >
>> >> >
>> >> > --
>> >> > Rashed Latif
>> >> > _______________________________________________
>> >> > theme-reviewers mailing list
>> >> > theme-reviewers at lists.wordpress.org
>> >> > http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >> >
>> >> _______________________________________________
>> >> theme-reviewers mailing list
>> >> theme-reviewers at lists.wordpress.org
>> >> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>> >>
>> >
>>
>>
>> --
>> Rashed Latif
>> _______________________________________________
>> theme-reviewers mailing list
>> theme-reviewers at lists.wordpress.org
>> http://lists.wordpress.org/mailman/listinfo/theme-reviewers
>>
>


-- 
Rashed Latif


More information about the theme-reviewers mailing list