kilinkis
Forum Replies Created
-
Also happening to me
same happened to me, had to disable it
Forum: Plugins
In reply to: [WP Job Manager] Error Sending Application@argilmour it is probably a problem with the configuration of: WP Mail SMTP
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] two columns layout?thanks!
Forum: Plugins
In reply to: [Yoast SEO] How to disable Yoast SEO adding article:author meta tags to pagesHi Andrew, you can try ‘single_template’ (https://codex.www.ads-software.com/Plugin_API/Filter_Reference/single_template).
Forum: Plugins
In reply to: [Contact Form 7] align the recaptcha to centerit didn’t work for me
even though I wrapped the captcha in those divs
@sahilg thanks! works like magic!
well I got it to work guys, I was very close
here it goes:the time stamp should be in seconds, not miliseconds
so trim the last three characters of itin a previous comment I had this timestamp: 1464270120000
but the correct one was 1464270120??
now, while you have the plugin installed, you can use this function:
_scheduleExpiratorEvent($post_id,$ts,$opts);in case you want to see it’s code, head to the file post-expirator.php file on the root of the plugin directory.
last but not least, $opts, should be an array, in my case I formatted it like this:
$opts = array();
$opts[‘expireType’] = ‘draft’;
$opts[‘id’] = $post_id;and that should do it!
for example:
the value stored in _expiration-date post meta field is: 1464270120000
which is GMT: Thu, 26 May 2016 13:42:00 GMTbut when I check on the plugin box, it shows the post expires on Nov. 15th 2016 at 17:00.
very weird
im also interested in this
I’ve trying to add an epoch value to _expiration-date,
this string ‘s:52:”a:2:{s:10:”expireType”;s:5:”draft”;s:2:”id”;i:3932;}”;’ for _expiration-date-options and ‘saved’ at _expiration-date-statusnote that the string hast the post id, so that’s not OK for all posts, you have to replace that
this is still not working ??
interesting!
Forum: Reviews
In reply to: [Universal Star Rating] Insufficient descriptionim with you @pogstar
same here
To email the admin with the NEW USER REGISTRATION message, I did this:
on line 336, there’s the wp_mail function.
It seems to be a problem with the 4th paramenter.
I just removed that 4th paramenter and it worked like a charm ??also… in the email, there is a link leading to the page to approve users. That link is broken too.
So I changed line 328 to:
$message .= get_option( 'siteurl' ) . '/wp-admin/users.php?page=new-user-approve-admin' . "\r\n";
that should do it ??
Forum: Plugins
In reply to: [Shortcodes Pro] JSON error on Sort Buttons screenI still see JSON error but now it works fine anyway.
I had to add thumbnail support (I was using a fresh new theme).so the code is:
add_theme_support('post-thumbnails');
put that in your functions.php file