dben
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Text Replace] How replace string in Custom fields?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);Forum: Plugins
In reply to: [Simple Text Replace] Can this replace string in the external links?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
danieleForum: Plugins
In reply to: [Simple Text Replace] How replace string in Custom fields?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
Forum: Plugins
In reply to: [Simple Text Replace] Can i use more than 10 words?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,
danieleForum: Fixing WordPress
In reply to: Cannot edit Pages with Lensa theme.Hi Clayton, I have the same problem: if I activate another theme i the editor works fine, with Lensa theme it doesn’t!
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,
danieleForum: Fixing WordPress
In reply to: visual/html editor and media not workingbecause the theme i use (http://themeforest.net/item/smartstart-wp-responsive-html5-theme/2067920) had some problems with wp 3.5