jmviade
Forum Replies Created
-
Forum: Reviews
In reply to: [reCAPTCHA in WP comments form] ExcellentThanks you AnndYi.
In a couple of days a new version.Joan Miquel
Forum: Plugins
In reply to: [reCAPTCHA in WP comments form] No tips of required fieldsI’ve been testing the plugin and I could see the tooltip messages of all fields. Perhaps I forgot something… but without more details, I can’t reproduce your exact WP environment. I’m sorry but in all my tests the plugin works perfectly.
Notwithstanding, I’ve taken a note about your question and in next versión, I’ll try to improve even more the compatibility mode.
Joan Miquel
Forum: Plugins
In reply to: [reCAPTCHA in WP comments form] No tips of required fieldsMAx143,
Tnanks for your question.
Please, send me your configuration and the name of plugin, or code that you use for the tips in the fields and I try to reproduce the same environment.
Thanks in advance.
Forum: Fixing WordPress
In reply to: Widget title translation issueI found the solution,
I was loading the plugin_textdomain adding an action to ‘init’ actionhook and it’s necessary to load the languages using the ‘plugins_loaded’ actionhook.
I hope to help someone else.
Forum: Fixing WordPress
In reply to: how do I create a page https://sitename/post/Finally I discover how to redirect posts to an archive.php
function add_post_archive_page() {
global $wp_post_types;
$wp_post_types['post']->has_archive = true;
$wp_post_types['post']->rewrite = array( 'slug' => 'entrada' , 'with_front' => false, 'feed'=> true, 'pages' => true );
add_rewrite_rule('^entrada/page/([0-9]{1,})/?', 'index.php?post_type=post&paged=$matches[1]', 'top');
add_rewrite_rule('^entrada/(feed|rdf|rss|rss2|atom)/?','index.php?post_type=post&feed=$matches[1]','top');
add_rewrite_rule('^entrada/feed/(feed|rdf|rss|rss2|atom)/?','index.php?post_type=post&feed=$matches[1]','top');
add_rewrite_rule('^entrada/?','index.php?post_type=post','top');
flush_rewrite_rules();
}
add_action( 'init', 'add_post_archive_page' );I hope to this function helps you.
Joan Miquel
Thank’s a lot, Rachel.