AnalystCave
Forum Replies Created
-
Forum: Reviews
In reply to: [YUZO] HACKED Plugin – Yuzo Realted PostsI concur. Hacked – had to remove it
Forum: Plugins
In reply to: [DW Question & Answer] DQWA is removing all formatting in the front end.Any chance this will be fixed anytime soon? Just preventing the removal of newlines would be great to at least make the plugin usable…
Forum: Plugins
In reply to: [DW Question & Answer] DQWA is removing all formatting in the front end.Any solution to this? Additionally to removing formatting, the plugin removes all new line characters once you post questions.
Its a great plugin, aside from these 2 bugs!
I think it started working when I installed the WP SMTP Plugin and configured the SMTP setting manually (confirmed when I received an actual live Purchase Confirmation).
Although I still think it is a plugin bug as mails were being sent previously – manually by send test purchase confirmation (from the plugin) and the Check Mail plugin also worked fine.
Yes. All of them are complete. I tried doing an actual transaction a couple of times myself (even for different emails) and everything works fine EXCEPT for the purchase emails and sales confirmation emails.
When I complete a purchase I am correctly being redirected back to the Purchase Complete page. However, neither do I receive a sales confirmation message from the Plugin nor do I receive a Purchase Receipt with the download.
What is weird is that “Send Test Email” on “Emails->Email Settings” page works perfectly fine. It’s just the actual Purchase receipts and Sales notifications that are not being dispatched…
Forum: Plugins
In reply to: [WP-PostRatings] Rating not appearing in Google resultsThanks @lester!
Weird nevertheless!
Forum: Plugins
In reply to: [WP-PostRatings] Google Rich Snippets Article data missingGreat – thanks! Compliments on a great plugin!
Forum: Plugins
In reply to: [WP Latest Posts] Can't add Latest NewsOne additional comment: I managed to add the shortcode manually like so:
[frontpage_news widget="2514" name="2514"]Although this does not solve the issue with the button now working above.
Forum: Plugins
In reply to: [WP Latest Posts] Can't add Latest NewsHi
I tried disabling all other Plugins but that did not help. I am running a standard WordPress 4.3 with theme TwentyFourteen.
The JS exception is raised on the last line of the below. It happens only when I select an item from the screen I shared above:
(function($){ $('#wpcufpn_widgetlist').on( 'change', function(e){ //console.log( 'selected e: ' + $('option:selected', this).val() ); //Debug //console.log( e ); //Debug insertShortcode( $('option:selected', this).val(), $('option:selected', this).text() ); $('#wpcufpn_widgetlist').find('option:first').attr('selected', 'selected'); tb_remove(); }); function insertShortcode( widget_id, widget_title ) { var shortcode = '[frontpage_news'; if( null != widget_id ) shortcode += ' widget="' + widget_id + '"'; if( null != widget_title ) shortcode += ' name="' + widget_title + '"'; shortcode += ']'; /** Inserts the shortcode into the active editor and reloads display **/ var ed = tinyMCE.activeEditor; ed.execCommand('mceInsertContent', 0, shortcode);