steve92
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Post Author receives 2 emailsThen fix this layout too
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Dates do not coincideYes, print the date and time of this moment. I want to change those dates for my old subscribers.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Post Author receives 2 emailsYou set it up like this
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Does not work with Semicolon themeI finally solved!
The Altervista database uses the default MyISAM engine, you need to convert it into InnoDB from Panel -> Resources -> Manage Database. I activated the InnoDB engine and set it to php7
Of course, you could make sure that when the admin clicks the Update button, the input sends the command to the email of the subscriber.
But I’m not a programmer of your plugin.The update by the admin requires that the Update button is pressed (after editing the post)
Yes, I had thought this. But the simplest way is that when I publish an updated post, a notice immediately begins for the registered user.
Can you change this to your plugin?Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Does not work with Semicolon themeYou can do local checks. This is how it is shown on the site.
Forum: Plugins
In reply to: [Collapsed Archives] Put echo in the pageRESOLVED, Is default’s theme.
Forum: Plugins
In reply to: [Collapsed Archives] Triangle colorGood.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Does not work with Semicolon themeI saw that you issued a new version, you forgot to correct this layout
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Code for unsubscribeI’m not able to do it. You could put it in the next version.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Code for unsubscribeOk, maybe I didn’t explain myself: I need a code that the user clicks and cancels his registration.
Eg: “If you want to cancel your subscription click here: {code}”Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Does not work with Semicolon themeDone. Show this:
The plugin generated 1502 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Code for unsubscribeOk. I put this in functions.php file child, then what I do?
function bitly_keyword( $string, $token = 'PUT YOUR API TOKEN HERE') { global $mysubscribe2; $link = $mysubscribe2->get_tracking_link( $mysubscribe2->permalink ); $bitlydata = wp_remote_get('https://api-ssl.bitly.com/v3/shorten?access_token=' . $token . '&longUrl=' . urlencode($link)); $data = json_decode( wp_remote_retrieve_body( $bitlydata ) ); if ( 'ok' === strtolower($data->status_txt) && 200 === (int)$data->status_code ) { $bitlylink = '<a>data->url . '">' . $data->data->url . '</a>'; } else { $bitlylink = '<a href="' . $link . '">' . $link . '</a>'; } return str_replace('{BITLYLINK}', $bitlylink, $string); } add_filter('s2_custom_keywords', 'bitly_keyword');