thom4
Forum Replies Created
-
Forum: Plugins
In reply to: Incompatibility in Amazon Widgets Shortcode w/ 2.8.2Well I found the problem: the URL used for the Japanese product widget is slightly different than for other countries on 1 parameter.
If you had no problem before, it can mean they changed it but it would be strange.
Anyway, if you overwrite the plugin with the development version, it should solve the problem.
I’ll wait for some other eventual feedbacks to ship many fixes at once rather than annoying everybody with a minor update.
Forum: Plugins
In reply to: Incompatibility in Amazon Widgets Shortcode w/ 2.8.2Indeed and it’s strange as the generated code is considering Japanese Amazon location.
Had you this problem since you upgraded your plugin version? Or at another precise time?
The Amazon.fr product displayed is the generic display when a product can’t be found/does not correspond to the proper Amazon region.
Forum: Plugins
In reply to: [Plugin: Tweetbacks] Not getting any TweetBacks after a week?The same. I thought it was because the links to post where bit.ly URI.
A month without answer is not good for a support :-/
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedWell, the new release is out.
I’ve tested the first HTML code not working with your wife’s blog and it was fine on my side. Both of them did.
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedYep I added a warning to give feedback to users. It’s better than something which does not change in case of problem.
Is it still the same code as above which does not work or is it another one?
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedNo it’s not released yet and it will be 1.5 as it’s rolled out with a new feature.
You can already download it, it’s the “dev” version (same link I gave you before). Once the full translated version will be ready, you will have the update notice in your dashboard + the ability to upgrade (but it won’t change anything, just missing language).
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciated@davidborrink I’ve fixed your problem of ASIN code. It was not working with the text+image way. Now it will work with the 3 ways (and I’ve tested out it does not break the usual ASIN code pattern).
@jetztlernin I missed some parts of widgets when I added Germany and Japan. I’ve fixed some things and tested out a MP3 Widget which just displayed fine with a German account. The next release should work better. If not, tell me.
As I’ve introduced the recent Amazon MP3 widget, there are some changes in translations so the next version will be released as soon as the new strings have been translated.
Thanks ??
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedThanks for the report. I’ll have a look at that problem too.
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedI’ll probably won’t have any spare time to have another look until next week.
However, make sure you cleaned your browser cache. It may have still an old copy of the modified JavaScript file I fixed.
Thanks for your patience ??
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedI figured out the problem thanks to your directions.
In fact, only when it was a product code which was parsed, the ASIN code detection was wrong: i searched for a 10 digit codes while it can also be an alpha+digit code.Can you download and replace your existing install of the plugin with this one, containing the fix?
It’s OK for me but I’d like to double check ?? I would not like to push a fix which does not fix or breaks something.
Thanks by advance!
Forum: Plugins
In reply to: [Plugin: Amazon Widgets Shortcodes] Your feedback is very much appreciatedStrange. Could you provide me the HTML code copy/pasted and if possible, a screenshot showing the error?
Thanks ??
Hi, thanks for the call.
This plugin does not use yet the Amazon API to retrieve procucts but it is planned to. I had a look last week and it’s not difficult. But I have noticed an AWS Key was required to call resources.
I was not aware it would become paying.
Forum: Plugins
In reply to: [Plugin: WP-EMail] Specify custom Sender with Sendmail methodI hacked a bit the plugin to make this work as I wanted to:
apply_filters('wp_email_send_pre', $mail, $post); // Send The Mail if($mail->Send()) { if($mail->Send()) {
I added a filter before sending so I can deal how I want.
Then I’ve plugged my hook on it:add_filter('wp_email_send_pre', 'wp_email_authsmtp_fix', 10, 2); function wp_email_authsmtp_fix($mail, $post) { $email_smtp = get_option('email_smtp'); foreach (array('yourname', 'youremail') as $arg) { $$arg = isset($_POST[$arg]) ? strip_tags(stripslashes(trim($_POST[$arg]))) : ''; } $mail->AddReplyTo($youremail, $yourname); $mail->Sender = $mail->From = $email_smtp['username']; return $mail; }
Forum: Plugins
In reply to: I liked your screen shots, but…Hello,
well, once you activate the plugin the controls show up in the Rich Text Editor. It’s straighforward.
What is your WordPress version? Hit F5 to clear your browser cache on the post screen, just in case.PS: there is an embed documentation provided by default and optionally on the post screen.
Forum: Fixing WordPress
In reply to: [Plugin: Amazon Widgets Shortcodes] Amazon Product ImageYup,
ASIN code for books corresponds generally to ISBN-10. At least, when Amazon gives me the affiliate links it’s the way it works.
I tried to insert an image only after reading your message and it went fine.
In fact, you’ll have to copy/paste the “image only” HTML code as I can’t guess the image source only from that code bit.For example, I copy/pasted that:
<a href="https://www.amazon.fr/gp/product/0441017150?ie=UTF8&tag=onctom-21&linkCode=as2&camp=1642&creative=19458&creativeASIN=0441017150"><img border="0" src="51FTO0Y-nnL._SL160_.jpg"></a><img src="https://www.assoc-amazon.fr/e/ir?t=onctom-21&l=as2&o=8&a=0441017150" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
I “apply the magic” and then, it autoconfigures the widget, I insert it as this shortcode:
[amazon-product image="51FTO0Y-nnL._SL160_.jpg" type="image"]0441017150[/amazon-product]
Try and tell me ??