tienthanh
Forum Replies Created
-
The problem belongs to SB Welcome Email, not iThemes.
The problem is your form still use the old login url for password submitting (wp-login.php?action=postpass). It is not allowed if you have hide admin checked. Here is a workaround: replace the form action by “add_query_arg( ‘action’, ‘postpass’, wp_login_url() )”
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Service UnavailableHi Lap,
I’m facing to the same problem. My MailChimp for WordPress works perfectly yesterday. But today it says “NOT CONNECTED”. I changed the API key, but just received “Service Unavailable” message. I also tested the CURL, it works well.
Any ideas?
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Wysiwyg Editor issueThis is what I am facing. Waiting for an effective solution.
Forum: Plugins
In reply to: [Simple Fields] Limit the posts by current languageI found the way to do it, just need to add these lines to your functions file:
function sf_filter_getposts_args($args){ $args['suppress_filters'] = false; return $args; } add_filter('simple_fields_get_pages_args', 'sf_filter_getposts_args');
Forum: Plugins
In reply to: [WP-PostViews] Call increase post views by ajax?Thanks @lester Chan ??
The problem is not resolved. Anyone can help me?
This is thing that i know :
By the looks of it, the logout link is hardcoded to the header so doesn't include the WordPress required nonce which is used to double check you really want to logout (or do any other action such as save a post). This explains the second logout confirmation screen. You can adjust the logout link to use the WordPress function to fix this problem, it should look similar to this: <a href="<?php echo wp_logout_url(); ?>" title="Logout">Logout</a> and full details are available in the WP Logout URL page in the Codex.
but i don’t know how to change Logout Url on Admin bar ?
Hi @krishna, my site i current running, i can’t deactivate all plugin & change theme, do you have any ideas?
@mattyrob, this is my idea : i have a function send mail, when post update button submitted, we will call send mail function to execute. We can make it? How? Thanks