element121
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Paypal charged more than invoice amountHi,
Check how your PayPal account is set-up, for example log in and check to see if Sales Tax rates are set-up here:
https://www.paypal.com/cgi-bin/customerprofileweb?cmd=%5fprofile%2dsales%2dtax
Regards,
JonForum: Fixing WordPress
In reply to: Pictures Displaying Sideways in PostI’m not familiar with iPhones, but you should be able to edit the photo on iPhone and rotate them before uploading.
Otherwise once uploaded into the Media library on WordPress, click on the image and then “Edit Image” and then the icons above the image will allow to rotate the image clockwise or anti-clockwise.Forum: Fixing WordPress
In reply to: switch instead of list of if statementsHi, I’m not familiar with the in_category function, but the switch should look similar to this, the function is evaluated at the top and then looks for a matching case…
You can also add a default case for no matches found.
(More info from the PHP Manual https://php.net/manual/en/control-structures.switch.php)switch (in_category()) { case 'Alto Horns, Baritone and Euphoniums': _e("<!--:en-->Alto Horns, Baritone and Euphoniums<!--:--> <!--:fr-->Cuivres Altos, Barytons et Euphoniums<!--:-->"); break; case 'Pocket Trumpets': _e("<!--:en-->Pocket Trumpets<!--:--> <!--:fr-->Trompettes de poche<!--:-->"); break; }
Forum: Fixing WordPress
In reply to: HTTP error when uploading MediaHi,
The error is showing that imagick can’t be found, so most likely it’s not installed in your hosting environment.
Check again with your hosting company, depending on their set-up they may not support imagick.Forum: Fixing WordPress
In reply to: Pages not showing upHi, did you publish the pages, if they are still as drafts they might not be showing up. Just go into edit the page and click the publish button.