Harkály Gerg?
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Addresses Menu and Addresses Dashboard TabDidn’t you check previous tickets? I’ve created one about a similar problem 15 before you:
https://www.ads-software.com/support/topic/addresses-text-on-account-page/
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] PayPal-Warnung “Sofortige Zahlungsbest?tigung”We have a similar problem, can I help anyhow developing this plugin? Do we know which part of this plugin cause this?
- This reply was modified 7 years, 4 months ago by Harkály Gerg?.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Invalid ‘approvalUrl’I still have a similar problem, we got a letter from PayPal with this:
Guten Tag XY !
Bitte überprüfen Sie den Server, der für sofortige Zahlungsbest?tigungen von PayPal zust?ndig ist. Sofortige Zahlungsbest?tigungen an den/die folgende(n) URL(s) sind fehlgeschlagen:
https://www. X Y .de/wc-api/Woo_Paypal_Plus_Gateway/
Wenn Sie diese URL nicht erkennen, nutzen Sie vielleicht einen Serviceprovider, der die sofortige Zahlungsbest?tigung in Ihrem Namen verwendet. Bitte wenden Sie sich mit den oben genannten Informationen an Ihren Serviceprovider. Wenn dieses Problem weiterhin besteht, k?nnten die sofortigen Zahlungsbest?tigungen für Ihr Konto deaktiviert werden.
Wir bedanken uns für die rasche Erledigung dieser Angelegenheit.
Herzliche Grü?e
Ihr PayPal-Team
SCHüTZEN SIE IHR PASSWORT
Geben Sie Ihr Passwort NIEMALS an andere Personen weiter, auch nicht an Mitarbeiter von PayPal. Schützen Sie sich vor betrügerischen Websites, indem Sie ein neues Browserfenster (z.B. in Internet Explorer oder Netscape) ?ffnen und die PayPal-URL jedes Mal eingeben, wenn Sie sich in Ihr Konto einloggen.
Bitte antworten Sie nicht auf diese E-Mail. Um mit einem Mitarbeiter unseres Kundenservice zu sprechen, klicken Sie auf ”
Hilfe und Kontakt
https://www.paypal.com/selfhelp/homeForum: Plugins
In reply to: [WooCommerce] Default cash on delivery statusMaybe this works:
// change COD payment method order status from processing to on-hold add_action('woocommerce_thankyou_cod', 'action_woocommerce_thankyou_cod', 10, 1); function action_woocommerce_thankyou_cod($order_id) { $order = wc_get_order($order_id); $order->update_status('pending'); }
It looks OK. If you are just a designer I think you should ask a programmer to watch your site, without seeing the full source, settings it’s hard to solve the problem. Maybe everything is OK but (e.g.) your template can’t handle it. I don’t know. I suggest to look for someone.
@zikridesign, that should work, but if it’s not, I suggest to change the function priority number (10) to a higher, for example: “10, 2 );” =====> “100, 2 );”
Claudio’s nickname changed to claudiosanches, so the required link: https://gist.github.com/claudiosanches/6f91ad228c2176b986b2
Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Get WP All Export row IDWe’ve got a solution from plugin’s developers:
// add this code to theme's functions.php file add_action('pmxe_before_export', 'wp_all_export_pmxe_before_export', 10, 1); function wp_all_export_pmxe_before_export($export_id) { delete_option('wp_all_export_current_row'); }
// add this to All Export plugin's Edit Export screen under " Export the value returned by a PHP function" section function get_row_number() { $current = get_option('wp_all_export_current_row', 1); update_option('wp_all_export_current_row', $current + 1); return $current; }
Forum: Plugins
In reply to: [Contact Form 7] Possible to add form's field multiple types?In the header: types => times
Forum: Plugins
In reply to: [RSS Post Importer] No images will load at allHello,
Could you solve the problem? I think it is because the RSS content’s image is not the first characters (as featured image), images are in the text, so on the first site you see the lead of the RSS content only, because the image would load after that.
Gergo
Really, no problem! But thank you very much for your help, I love this plugin.
I downloaded the zip file again, uploaded to my plugins (previously I deleted the sf-move-login directory) and now I got an other error:
Fatal error: Call to undefined function insert_with_markers() in /home/…/public_html/wp-content/plugins/sf-move-login/inc/rewrite.php on line 225If the problem is me, sorry, but this is a great plugin!
Forum: Requests and Feedback
In reply to: "Keep Line Breaks" missing in 3.9.1Hi all!
Maybe this javascript code can help you. Make a textarea somewhere, copy your text there and you get back as paragraphs, than you should copy from the textare into WordPress post html editor.
<script> function keepline() { var text = ""; text = document.getElementById("textareaid").value; var replaced = ""; replaced = text .replace("\n\n ", "\n") .replace(/.\n /g, ".\n\n").replace(/is/g, "or"); document.getElementById("textareaid").value = replaced; } </script> <textarea id="textareaid" cols="100" rows="10">Copy text here and you get back!</textarea> <button onclick="keepline()">Click here</button>