Forum Replies Created

Viewing 15 replies - 676 through 690 (of 3,660 total)
  • Chip Bennett

    (@chipbennett)

    I got it from the Swedish wordpress website, http://wp-support.se/filer/?dl_cat=1 and i got the file “WordPress 3.3.2 översättning/translation”

    That sounds like your problem, then: those are probably the translation files for WordPress core, not for the Twenty Eleven Theme. Theme translation files are entirely separate – and are placed in separate locations – from WordPress core translation files.

    Chip Bennett

    (@chipbennett)

    All of that looks exactly right.

    Next question: where did you get the .MO/.PO files? Are they Theme translation files, or core translation files?

    Chip Bennett

    (@chipbennett)

    And what is the exact line that you added to wp-config.php?

    Chip Bennett

    (@chipbennett)

    Use a different Theme, unless you just happen to like spammy links in your footer.

    I’ll hazard a guess that this code outputs spam links in your footer. Further, the Theme very well may have “kill code” that will prevent it from working if you remove or modify that footer code.

    Try a Theme from the official WordPress Theme repository instead.

    Chip Bennett

    (@chipbennett)

    What are the names of your .MO/.PO files?

    Chip Bennett

    (@chipbennett)

    The Theme is probably irrelevant in this case. The issue is that you’ve not configured custom navigation menus (which this Theme supports).

    Go to Dashboard -> Appearance -> Menus
    Create a new menu, and configure it as per your needs
    Then apply that menu to the appropriate Theme location

    Chip Bennett

    (@chipbennett)

    First: yes. You’re absolutely unlimited in what you do with your install of WordPress on your own server. No issues there. Use it. Tweak it. Install Themes and Plugins. Break it. It’s yours. 🙂

    Now, having said that: wordpress.com is a commercial service, owned by Automattic. They are under no legal or moral obligation whatsoever to make any of their Plugins or Themes available to anyone else. (Just as you are not obligated to make available any Themes or Plugins that you develop or use.)

    Fortunately, Automattic does make a great many of their Themes and Plugins available. You just have to know where to look. For example, you can get all of the free Themes hosted at wordpress.com directly from Automattic’s SVN repository:
    https://wpcom-themes.svn.automattic.com/

    Chip Bennett

    (@chipbennett)

    As Thesis is a commercial Theme, you will need to consult the support offerings of the developer, DIY Themes.

    Chip Bennett

    (@chipbennett)

    As Headway is a commercial Theme, you will need to consult the support offerings of the developer, Headway Themes.

    Chip Bennett

    (@chipbennett)

    Full disclosure: I am one of the Theme Review Team admins. We (the admins) are tasked with updating the Featured Themes listing.

    To be completely honest: there are no big secrets; it’s just not something that we often put a great deal of thought into. For almost two years, we have been nose-to-the-grindstone, focused on getting the review queue under control. That has consumed so much of our time that we honestly haven’t had the time to spare even to begin to think about how, long-term, the Featured Themes listing should be managed.

    If and when we can maintain the review queue under control, we will very likely approach the Theme developer community regarding how the Featured Themes listing should be managed. Until then, it is a far greater benefit to the community for us to keep our focus and efforts on turning around Theme reviews as quickly as possible.

    Chip Bennett

    (@chipbennett)

    For general future reference, should any concerns of this type go straight to the theme review team? If so, which list or site would you like us to redirect posters to?

    You can certainly cross-post to the theme-reviewers mail-list. It’s generally good for the Theme Review Team to be aware of such issues.

    That said, any matters of immediate security should go directly to Otto.

    And further, any reports of potential zero-day exploits or in-the-wild vulnerabilities should not be posted publicly, but should be sent directly to security@wordpress.org.

    Chip Bennett

    (@chipbennett)

    Please clarify: what is helpers.php, and why do you believe it to be inherently malicious?

    Pulling Themes from SVN is done at your own risk. Please note that code in SVN is retained in perpetuity (generally speaking). End users are expected to pull Themes only from Extend. Anyone pulling directly from SVN is assumed to be a developer, and knowledgeable enough regarding obsolete and/or malicious code.

    When found, malicious Themes are suspended in Extend, but the code isn’t always removed from SVN. Usually, code with worms and the like IS removed from SVN. If you wouldn’t mind indicating the specific files with malicious code in each of the above-listed Themes (every version isn’t necessary; just pick one example for each Theme), we’ll take care of it.

    Chip Bennett

    (@chipbennett)

    No problem. I found your ticket, and left a comment regarding your original method.

    For future reference, if your question involves the Theme Review guidelines, or a specific Theme review comment, you’ll get much quicker, more specific, and more effective responses if you post comments in the review ticket. You’re also welcome to post to the theme-reviewers mail list.

    In a case such as this, don’t be shy about asking the reviewer why your method wasn’t acceptable. We absolutely can, do, and will make mistakes. 🙂

    Chip Bennett

    (@chipbennett)

    Also, try this?

    function hooktest_enqueue_scripts( $hook_suffix ) {
        if ( 'appearance_page_hooktest' == $hook_suffix ) {
            wp_enqueue_script( ... );
        }
    }
    add_action( 'admin_enqueue_scripts', 'hooktest_enqueue_scripts' );

    The actual call is:

    do_action('admin_enqueue_scripts', $hook_suffix);

    So, you should be able to pass the $hook_suffix as an argument into your callback.

    Either one is entirely acceptable. The point of the guideline is to ensure that a Theme’s admin scripts only get enqueued on the Theme’s own admin settings page.

    Chip Bennett

    (@chipbennett)

    If admin_print_scripts-$hook_suffix works, feel free to use it!

Viewing 15 replies - 676 through 690 (of 3,660 total)