spedney
Forum Replies Created
-
Thank you so much Darren! That fixed it ??
Forum: Plugins
In reply to: [Pay with Vipps and MobilePay for WooCommerce] “Merchant logo” vises ikkeThanks Iver Odin for a super-quick answer! I’ll do that.
SteveThanks Iver, that is really helpful. I will try this out.
SteveMarking as resolved
Forum: Plugins
In reply to: [TikTok] None of my products show up in the TikTok paneI did file a ticket. They weren’t much help.
I gave up on this plugin in the end and created a catalog feed using another plugin called CTX which actually worked.Forum: Plugins
In reply to: [WooCommerce] Remove fields on Edit AddressThis is really helpful, and I’ve used some of the code from this thread to add an extra customer details field to my checkout page (for the customer’s tax registration number).
But what I can’t seem to find out, is how to have this extra field also show up on the admin side, in the user – profile area, and also when the user registers. If I could include it here then that would be really ideal.
Also, my next task is to get this extra field to print in the order email, but one thing at a time!
Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Bug on Co-Author Plus ?I have just got around to upgrading to version 2.1.1 (from 1.2) and the strange thing is that – it stops working! Don’t know why yet and I haven’t got much time to try to figure it out right now, but the panel is not there at all. I tried logging in both as an admin and as an editor and it’s just gone.
For the moment I have just reverted to the backup that I made before I did the update and I will come back to this later and try to figure out what is wrong.Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Translation?Great, I’ll try out version 2.0 asap
Thanks!Forum: Fixing WordPress
In reply to: Change Newly registered users “display name publically as” default?Levifig,
But, what if the first and last names are empty?
It could happen that the person who registered the new user didn’t enter these values in, so you could add a little check like this:if ( empty($display_name) ) { if ( !empty($first_name) && empty($last_name)) $display_name = $first_name; if ( !empty($last_name) && empty($first_name)) $display_name = $last_name; if ( !empty($first_name) && !empty($last_name)) $display_name = $first_name.' '.$last_name; } if ( empty($display_name) ) $display_name = $user_login; $display_name = apply_filters('pre_user_display_name', $display_name); } if ( empty($display_name) ) $display_name = $user_login; $display_name = apply_filters('pre_user_display_name', $display_name);
Forum: Plugins
In reply to: [Plugin: Post Avatar] Very useful – one Safari issue thoughIf you’re interested I think I have found the solution:
in file: gkl-postavatar.php
you haven’t included an
onchange
in the select declaration…Just change this (in line 467?):
<select name="postuserpic" id="postuserpic">
to this:
<select name="postuserpic" id="postuserpic" onchange="chPostAvatar(this)">
Seems that IE and Safari need that declared there, and not only in the option lists, but Firefox doesn’t mind it
Forum: Plugins
In reply to: [Plugin: Post Avatar] Very useful – one Safari issue thoughActually, I just tested in IE and the same issue occurs there also
Forum: Plugins
In reply to: [Plugin: Microkid’s Related Posts] drag & dropSorry – I’m wrong it still messes things up ??
?? well, that is of course true! I was just checking for compatibility…
So, can you confirm that this is a “real” issue and not just something wrong with my setup?