ragulka
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Language Switcher] Wrong language flag for Estonian languageI think renaming the falg is not a good idea. I think it would be best if the plugin knows how to handle these edge cases.
For example, since we know that ‘et’ shoudl always map to ‘ee’, we could do something like this:
/** * Get flag url * * @param string $language * @param bool $plugin * @return string */ public function get_flag_url( $language ) { $url = ( !is_admin() && $this->has_value( 'image_url' ) ? $this->__get( 'image_url' ) : $this->get_url( 'flags' ) ); if ( 5 == strlen( $language ) ) $language = strtolower( substr( $language, -2 ) ); // Add exception for Estonian locale if ( $language == 'et' ) $language = 'ee'; return sprintf( '%s/%s.png', $url, $language ); }
Forum: Plugins
In reply to: [Custom Permalinks] Support for Custom Taxonomies?Hi @marty,
No, I actually did not although I did look into it. It should not be too hard though, few of hours of coding, perhaps.
I just discovered the answer. I wish it was in the documentation:
1. Go to the Settings page of Yarpp
2. Click on Screen Options in the top-right corner
3. Check “The Pool” and “Relatedness”
4. 2 new options panels show up
5. Check “Show only posts from the last 12 months”
6. Set the “Maximum number of related posts:” to a higher number if You want (the field is kinda hard to notice if You have a wide screen, it somehow floats in the middle of the screen)That won’t work either, because I need a total of 10 latest items, regardless if they’re blog posts or custom_posts…
Yes, but I assumed that cat => 3 applies to posts only, not custom_post_type…
I guess it doesn’t work that way – but how can I get the same result?I tried useing Your version and I now get a lot of errors..
Forum: Plugins
In reply to: [PHPBB Single Sign On] [Plugin: PHPBB Single Sign On] Users Cannot LoginI am having the exact same problem. To be more accurate, I can start logging in once I have manually created the same username-password-email combination on both phpBB and WordPress. But even then there is a problem – when I log in to WordPress, I’m stuck at wp-login.php white blank page.
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] My two centsI would also add that It would be nice to page the post types. I currently have a “Product” post type which has 3000 posts. I simply cannot re-order them because the re-order page will not load (too many posts to load at once).
Forum: Fixing WordPress
In reply to: Draft posts being counted by wp_list_categoriesI’d say its a feature/bug
I would suggest that there should be two counts: the total count (like we have right now) and a count that includes only published postsForum: Alpha/Beta/RC
In reply to: Admin Interface and Post TypesI would also find this very useful. Another thing I’d like to see is to be able to group my custom post types together, to seprate them from the WordPress built-in content types block.
What I mean, is in the admin menu, after Comments, there is a separator, and after that comes Appereance etc…
I’d like to be able to create a separator like that.Forum: Installing WordPress
In reply to: Can’t add themes, or install update 2.8 to 2.8.1-beta!Well, for me, none of the solutions seem to work.
I get this error:
Downloading update from https://downloads.www.ads-software.com/plugin/akismet.2.2.9.zip… Unpacking the update… Could not create directory. / Actions: Return to Plugins page
Forum: Fixing WordPress
In reply to: WordPress replaces my permalinks!phpinfo says:
Loaded Modules core mod_win32 mpm_winnt http_core mod_so mod_access mod_actions mod_alias mod_asis mod_auth mod_autoindex mod_cgi mod_dir mod_env mod_expires mod_headers mod_imap mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_userdir mod_vhost_alias mod_php5 mod_dosevasive22
Also, everything used to work fine (for at least 4 months) until a few weeks ago. No new plugins were installed or anything like that.
The pretty permalionks work great – i mean, when i type https://www.ecovisvesiir.ee/sundmused/ or https://www.ecovisvesiir.ee/?page_id=483 on my browser, in both cases i’m taken to https://www.ecovisvesiir.ee/sundmused/.
The problem is that when I create a link isnide my post or page, and put it as https://www.ecovisvesiir.ee/sundmused, WordPress then replaces it with https://www.ecovisvesiir.ee/?page_id=483 when I save…Forum: Fixing WordPress
In reply to: WordPress replaces my permalinks!I’m using a custom structure:
/%postname%/
Forum: Fixing WordPress
In reply to: TinyMCE does not show translationsI tried upgrading to latest WordPress (beta 2) and that did also NOT solve the problem. Anybody?
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Won’t reactivate after upgradeHi, I have the exact same problem. But it doesn’t help to chmod or delete w3-total-cache-config.php (there are no other files or folders that you mentioned).
/public_html/getahappylife.com/wp-content/uploads/ could not be created, please run following command: chmod 777 /public_html/getahappylife.com/wp-content
But the folder
/public_html/getahappylife.com/wp-content/uploads/
exists already and IS chmodded 777I am trying to run this on WordPress 3 beta 1. But I’m not sure that this is the case. This seems to be a problem for other versions as well.