lipsk
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Ad-Manager] Fatal error on WP 3.2.1http://wordpress.org/support/topic/create-content-broken-on-latest-version-of-wp
I haven’t tested it, but without the Tiny MCE buttons, the users will have a hard time editing the ads, so it’s not a good fix.
Forum: Plugins
In reply to: [WP-Ad-Manager] Fatal error on WP 3.2.1Changing to WP 3.2 didn’t help. I had to go back to WP 3.1.4, but now it’s working again.
Forum: Plugins
In reply to: [EventPress] EventPress translate, but not everythingHey, I found out that the strings that are not translated missed a parameter:
Example. The code:
'name' => _x( 'Event Tags', 'Taxonomy General Name'), 'singular_name' => _x( 'Event Tags', 'Taxonomy Singular Name'), 'search_items' => __( 'Search Event Tags'), 'popular_items' => __( 'Popular Events'), 'all_items' => __( 'All Event Tags'), 'parent_item' => __( 'Parent Event Tag'), 'parent_item_colon' => __( 'Parent Event Tag:'), 'edit_item' => __( 'Edit Event Tag'), 'update_item' => __( 'Update Event Tag'), 'add_new_item' => __( 'Add New Event Tag'), 'new_item_name' => __( 'New Event Tag Name')Should be replaced by
'name' => _x( 'Event Tags', 'Taxonomy General Name', 'eventpress' ), 'singular_name' => _x( 'Event Tags', 'Taxonomy Singular Name', 'eventpress' ), 'search_items' => __( 'Search Event Tags', 'eventpress' ), 'popular_items' => __( 'Popular Events', 'eventpress' ), 'all_items' => __( 'All Event Tags', 'eventpress' ), 'parent_item' => __( 'Parent Event Tag', 'eventpress' ), 'parent_item_colon' => __( 'Parent Event Tag:', 'eventpress' ), 'edit_item' => __( 'Edit Event Tag', 'eventpress' ), 'update_item' => __( 'Update Event Tag', 'eventpress' ), 'add_new_item' => __( 'Add New Event Tag', 'eventpress' ), 'new_item_name' => __( 'New Event Tag Name', 'eventpress' )If you add ‘eventpress’ as the third parameter, the translation works again.
The problem is: you’ll have to edit every php file and search for the _( commands.
Forum: Plugins
In reply to: [EventPress] EventPress translate, but not everythingSame problem here.
Forum: Fixing WordPress
In reply to: Error 404 on pagination when changing posts_per_page on query_postsI’ve lost 6 hours on it!
So if I want just one category with less posts than the blog default the solution is to change the default to the smaller amount and then change the query on all other templates!
That’s an annoying bug!
Forum: Themes and Templates
In reply to: Specific category pagination problemOh never mind. I found later this thread:
Forum: Fixing WordPress
In reply to: pagination not working for categories with wp 3.0Hi, I think I have the same problem. I’m using WP3.1.1
My blog default amount of posts per page is 20. There is a specific category where I want only 10 posts instead of the default.
I did a custom template for that category (category-71.php) with this code:
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($query_string.'&posts_per_page=10&paged='.$paged);When that category got it’s 11th post, the “next posts” link showed up but when I click on it the /page/2/ calls the 404.php template.
The second page only works when the amount of posts goes over 20 posts (the default).
Still haven’t found a workaround it. I need the other categories to have 20 posts, not 10.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Images Dissappeared…Same thing happened to me.
Also using Network with subdomains.
Just found out what causes the problem on my site. It happens when I fill the “Exclude categories” field.
I have the same problem. But it happens in just one of the two sites I’m running. I can’t find out what makes it work in one and break on the other.
Hi Valentinas
Thank you. There’s no hurry, I’ll wait for the next version.
It’s working after I changed this code
// Add administration menu
function wpam_admin_menu() {
if ( current_user_can(‘manage_options’) ) {
add_menu_page( ‘WP-Ad-Manager’, ‘WP-Ad-Manager’, ‘manage_options’, dirname(plugin_basename (__FILE__)), ‘administer_main’ );
}
}To this
// Add administration menu
function wpam_admin_menu() {
if ( current_user_can(‘moderate_comments’) ) {
add_menu_page( ‘WP-Ad-Manager’, ‘WP-Ad-Manager’, ‘moderate_comments’, dirname(plugin_basename (__FILE__)), ‘administer_main’ );
}
}Forum: Fixing WordPress
In reply to: List an archive by year/month of a categoryAlso looking for an easier solution for this.
I found this plugin:
http://kwebble.com/blog/2007_08_15/archives_for_a_categorythat seems to do what you want.
But I’m still trying to make a better navigation menu with monthly archives + categories. One that has a “current” class to make possible custom css.
Forum: Fixing WordPress
In reply to: read more not working with the_excerpt()Tried the same thing on WP 3.0.4 and it didn’t worked either
Forum: Plugins
In reply to: [Magic Fields] Can't edit regular posts after using Magic FieldsWent back to magic fields 1.4.5 to test and the same thing happens when you check the option “Editing Prompt – Prompt when editing a Post not created with Custom Write Panel”.
Forum: Plugins
In reply to: [Magic Fields] Can't edit regular posts after using Magic FieldsI get the same thing when trying to edit pages & posts not created with custom write panel:
“You do not have sufficient permissions to access this page.”WP 3.0.4 with magic fields 1.5.2