thebigtine
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t edit menu, no new categoriesCan you set wp_debug to true and let me know if any errors are displayed. Here are instructions on how to do that: Debugging WordPress
- This reply was modified 6 years, 4 months ago by thebigtine.
Forum: Fixing WordPress
In reply to: Secondary email authenticationHi sistereinstein,
This sounds like you are asking for hosting support. I think you should contact bluehost support as this forum is for WordPress only. Here is the link to bluehosts support page: Help Centre – Bluehost.
Many thanks,
JosephForum: Fixing WordPress
In reply to: Posts per page – Next button doesnt worlHi colmar,
This sounds like a theme problem.
What theme are you using? Although you will probably be best contacting the theme developers for help.
Can you set wp_debug to true and see if any error display?
Thanks
Forum: Hacks
In reply to: $_GET not working in shortcodeYes thankfully I do have control over the generated links. Thanks that worked a treat.
Forum: Hacks
In reply to: Duplicate User meta field to another field on register@bcworkz Don’t worry I figured it out. As I was using Ultimate member I had to use some of their functions to make it work. Below is the final script for anyone else:
function autofill_users_info_at_checkout_update_mata( $user_id ) { um_fetch_user( $user_id ); add_user_meta($user_id, 'billing_phone', um_user('user_login')); add_user_meta($user_id, 'billing_first_name', um_user('first_name')); add_user_meta($user_id, 'billing_last_name', um_user('last_name')); } add_action( 'user_register', 'autofill_users_info_at_checkout_update_mata', 100, 1 );
Forum: Hacks
In reply to: Duplicate User meta field to another field on register@bcworkz I can’t find any documentation about that filter. Can you give a link?
Forum: Hacks
In reply to: Duplicate User meta field to another field on registersounds promising! will try when I get home. thanks for reply!
Forum: Hacks
In reply to: Duplicate User meta field to another field on registerhere is the gist of what I have now: https://gist.github.com/josephbydeign/8c80f437152776ff4019491cdee92dbc
I am just trying to get the first one to work then I will do likewise for the rest of them.
As per the example on the user_register action hook codex page using
$_POST
should work.Thanks
Forum: Hacks
In reply to: Duplicate User meta field to another field on registerThanks luke, You have set me in the right direction. I used
add_user_meta
but with$_POST
that didn’t add anything, but then I hard coded the value to add and it worked so it’s something with the$_POST
now. any further ideas?Forum: Hacks
In reply to: Duplicate User meta field to another field on registerWell for starters, I don’t access to DB on this job ?? and what would be the easiest/quickest way to check the value of $_POST
Forum: Hacks
In reply to: Duplicate User meta field to another field on registerYeah, Gravity would of been my first choice but this is a clients project. I personally use gravity all the time and would of had this done ages ago with hidden fields using gravity.
Forum: Fixing WordPress
In reply to: Screen SizeHi,
I just checked the link and all is working.
See screenshot here: https://pasteboard.co/24g2uNoY.png
and here: https://pasteboard.co/24gdfK9G.pngForum: Plugins
In reply to: [WooCommerce] single-product.php override is ignoredJust so you know your “talking to yourself” really helped me fix my problems!
Forum: Networking WordPress
In reply to: Unable to upload .iso files or add input fields on multisiteThanks, will have a look.
Forum: Networking WordPress
In reply to: Unable to upload .iso files or add input fields on multisiteNo, not really. I figured out what to do for this particular circumstance but not a long term solution. I need non-super admins to be able to upload .iso files and add input fields in the text editor, cheers