Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author dben

    (@dben)

    You should do something like this:

    // read custom field
    $customFieldValue = get_post_meta( $post_id, $key );
    
    // apply regular expression
    // you can set 'content' or 'title' in type argument to select which
    // expressions to apply (see options in WP admin)
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '01');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '02');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '03');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '04');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '05');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '06');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '07');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '08');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '09');
    $customFieldValue = apply_regex_option($customFieldValue, 'content', '10');
    
    // save custom field
    add_post_meta($post_id, $meta_key, $meta_value);
    Plugin Author dben

    (@dben)

    Same answer as the other question 🙂

    You need to add text replace code in simple-text-replace_hooks.php.
    As you can see, by now only post content is replaced:

    $post[‘post_content’] = apply_regex_option($post[‘post_content’], ‘content’, ’01’);

    Let me know if you need more help
    daniele

    Plugin Author dben

    (@dben)

    You need to add text replace code in simple-text-replace_hooks.php.

    As you can see, by now only post content is replaced:

    $post['post_content'] = apply_regex_option($post['post_content'], 'content', '01');

    Let me know if you need more help

    daniele

    Plugin Author dben

    (@dben)

    Hello, I’m the author of the plugin.
    Sorry for the delay, fortunately ritso gave you the right answer:

    you have to add the options (simple-text-replace_options.php) and apply the regex (simple-text-replace_hooks.php).

    Regards,
    daniele

    Hi Clayton, I have the same problem: if I activate another theme i the editor works fine, with Lensa theme it doesn’t!

    (see screenshot)

    Did you find a solution? I have a lot of contents and configuration in my blog and I don’t want to reinstall everything

    Thanks a lot,
    daniele

    Thread Starter dben

    (@dben)

    because the theme i use (http://themeforest.net/item/smartstart-wp-responsive-html5-theme/2067920) had some problems with wp 3.5

Viewing 6 replies - 1 through 6 (of 6 total)