mbmmbm
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Posts by Sovrn] Featured Image Broken/Disappearedi don’t know how to fix the broken images. When i go the Library, i see the broken images but the images per se are still there when i click on them, but when I click to edit it, the image does not say the dimension and it has a message below the image: “Image data does not exist. Please re-upload the image.”
Nrelate suggested this plugin thinking this is a reliable one. Big mistake. Please help.
Forum: Plugins
In reply to: [Related Posts by Sovrn] Featured Image Broken/DisappearedAny help please?
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] The cron job is missing.Problem solved. There was a conflict with my other plugin called Bulletproof.
Forum: Fixing WordPress
In reply to: How do I change url page structure?It worked! I forgot to flush the rewrite rules by saving the permalinks a few times. You’re an angel!
Forum: Fixing WordPress
In reply to: How do I change url page structure?the “page” did replace with “pages” but when I go to http://www.domain.com/pages/73 it give me a blank page and not the content from the original “page” http://www.domain.com/page/73
Do i need to edit the htaccess?
Forum: Fixing WordPress
In reply to: How do I change url page structure?It doesn’t seem to work, it gives me broken links.
Forum: Fixing WordPress
In reply to: How do I change url page structure?Ok, it’s in German. It converts “page” to “seite”. How do I change the code to replace the word “page” to “pages”?
<?php # -*- coding: utf-8 -*- /** * Plugin Name: T5 Page to Seite * Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>. * Author: Thomas Scholz <[email protected]> * Author URI: http://toscho.de * License: MIT * License URI: http://www.opensource.org/licenses/mit-license.php */ if ( ! function_exists( 't5_page_to_seite' ) ) { register_activation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); register_deactivation_hook( __FILE__ , 't5_flush_rewrite_on_init' ); add_action( 'init', 't5_page_to_seite' ); function t5_page_to_seite() { $GLOBALS['wp_rewrite']->pagination_base = 'seite'; } function t5_flush_rewrite_on_init() { add_action( 'init', 'flush_rewrite_rules', 11 ); } }Forum: Fixing WordPress
In reply to: How do I change url page structure?Yes, I want this for paginated pages. IN the url you provided, it does not tell me which file i should edit. Should I only edit the htaccess?