kimipooh
Forum Replies Created
-
Hi, mrhocs.
As a result of analyzing the plugin and the Wordprss (3.3.2), I could find out the avoidance approach.
Please see the following page.
– https://www.cseas.kyoto-u.ac.jp/info/en/faq-en/wordpress#1I hope that the password lock function in WordPress supports SSL.
Hi, mrhocs.
O. K. At least, I’d like to post here if I find out a solution or a hint.
As a result of my check, the cause is that wp-pass.php link is not changed to https.
That wp-pass.php form action setting is included in the wp-include/temprate-post.php, but even if I change the link in the temprate-post.php, it is forcibly changed by a WordPress function (this plugin or no?). Maybe, I think that the absolute link is changed to the relative link and the temprate-post.php is applied, and then is added the siteurl.I hope that this plugin will cope with this issue because it is very important factor for a password-protected page using a restriction form.
Forum: Plugins
In reply to: [Contact Form 7] Embed ShortcodeSorry for mistaking above code.
Please forgets above code.Right
contact-form-7/includes/shortcodes.php function do_shortcode( $content, $exec = true ) { $this->exec = (bool) $exec; $this->scanned_tags = array(); $content = do_shortcode($content); // *** Added ** if ( empty( $this->shortcode_tags ) || ! is_array( $this->shortcode_tags ) )
Forum: Plugins
In reply to: [Contact Form 7] Embed ShortcodeI’m think so, too.
Then, in my case, I’d like to embed other shortcode to Contact form 7.—
For example.[text* your-name]
* Please see [link id=”10″] about the format.
[text* sample]—
I’d like to use link information instead of [link id=”10″].
Now, it don’t work.* I found out how to implement it.
——contact-form-7/includes/classes.php function form_do_shortcode() { global $wpcf7_shortcode_manager; $form = $this->form; $form = do_shortcode($form); // ***Added*** if ( WPCF7_AUTOP ) {
[Incorrect]
In case of $_POST[‘_wpcf7’] == “”:
Contact form plugin is enabled and the contact form is used in the page.[Correct]
In case of $_POST[‘_wpcf7’] == “”:
Contact form plugin is enabled and the contact form is not used in the page.I’m sorry for my post mistake. I thought that I updated the revised information, but it was actually not updated…
*Corrent
if ( !isset($_POST[‘_wpcf7’]) || $_POST[‘_wpcf7’] == “”){// Mee News Process
foreach(….){}
}
$_POST[‘_wpcf7’] != 1 means all targets except first contact form.
Thus, if plural contact forms are used, the fix code disables.In case of !isset($_POST[‘_wpcf7’]):
Contact form plugin is disabled or not installed.In case of $_POST[‘_wpcf7’] == “”:
Contact form plugin is enabled and the contact form is used in the page.Concretely, when contact form is not used in the page, Mee News plugin runs.
Forum: Plugins
In reply to: WPML causes error: query.php on line 2890I think that this issue was solved by WP3.1.1.
Detail information is the following URL.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin Contact Form 7] Cannot send to e-mail.I could solve it without disable “Mee New” plugin
Thank you for the information. I could resolve this issue.
I set it as follows.
if ( !isset($_POST[‘_wpcf7’]) || $_POST[‘_wpcf7’] != 1){
// Mee News Process
foreach(….){}
}
I understand that Mee News ignores when the data of Contact Form is posted.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin Contact Form 7] Cannot send to e-mail.This problem is solved by disabling “MEE News” plugin.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin Contact Form 7] Cannot send to e-mail.In additional information, this problem only appears in case of the sub directory in wordpress.
For example:
https://example.com/ : OK
https://example.com/wp/ : NGForum: Plugins
In reply to: [Contact Form 7] [Plugin Contact Form 7] Cannot send to e-mail.Miss
In WordPress 3.x, there is the following error in same server.Right
In WordPress 3.1, there is the following error in same server.Forum: Plugins
In reply to: WPML causes error: query.php on line 2890I found out how to fix it under WPML 2.0.4.x on WordPress 3.1.
—
function get_term_link in "wp-admin/taxonomy.php" Line 2846: $termlink = "?$t->query_var=$slug"; Change to: $termlink = "?$t->query_var=$slug".'&cat='.$term->term_id; Line 2849: $termlink = "?taxonomy=$taxonomy&term=$slug"; Change to: $termlink = "?taxonomy=$taxonomy&term=$slug" .'&cat='.$term->term_id;
—
This problem is the change of category process.
Wordpress 3.1 uses “category_name” instead of “cat”.
“cat” means the category id.
Therefore, I added “cat” query to URL.Of course, I hope that this problem is resolved in latest version of WPML (2.2.x).