John Parris
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Creating new site is not possible :(Sorry, I missed that. Thought I was in another forum. Still, my questions remain the same.
Hi Jeff,
There are a number of themes named Ultra. Do you know which one you have?
Forum: Fixing WordPress
In reply to: Cant type in text boxHi,
It sounds like you probably have a plugin or theme conflict. Try temporarily deactivating all plugins and switching to the default Twenty Fifteen theme and see if it works. If so, start turning on things one by one until you find out what’s breaking it.
Forum: Fixing WordPress
In reply to: No Menus On Mobile SideThe reason the menu doesn’t work is there are a number of javascript errors on your site that is causing it to break, and possibly some other things to break, not sure.
Unfortunately we can’t support commercial products here (http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products). That’s a responsibility that falls on the company making money selling the product.
If they won’t give you support because the license is owned by someone else, you’ll need to either get the person to transfer the license to you or buy a copy for yourself.
Forum: Fixing WordPress
In reply to: how can I move XE to wordpress with DB?Hi,
I’m not aware of any freely available importers for XpressEngine. I’ve only seen the commercial service providers that do it.
Forum: Fixing WordPress
In reply to: Call to undefined function wp_get_password_hint()Looks like you figured this out. Cheers!
Forum: Fixing WordPress
In reply to: Mobile menu not loading/responding correctly :(Hi, unless you’re actually seeing that on your real device, I wouldn’t worry too much about it. But, having said that, that’s a question/issue for your theme developer. It looks like you’re using a commercial theme. I definitely recommend opening a support ticket with them directly.
Hi,
I don’t know of anything in 4.2.2 specifically that would cause this. Do you have a link to your site so I can see what it’s doing?
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromeYay! Happy to help. I’m going to have that great day now. 🙂 You too!
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromeAdd a float: none for #logo so it overrides the theme style.
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromeThe #logo center float looks to be coming from Jetpack CSS maybe and float: left is coming from the theme.
Forum: Fixing WordPress
In reply to: Title shows differently on Safari and ChromeIt looks like if you delete them both it works fine in both.
float: center;isn’t valid anyway. Chrome is marking it as invalid. I guess Safari tries to guess at what you mean instead.Forum: Fixing WordPress
In reply to: Create a conditional logic inside an arrayHi,
If you have specific pages (as in the Page post type) mapped to specific testimonial types, you could build an array of that relationship and use a getter type function to return the testimonial type based on the page ID.
Something like:
function my_testimonial_map( $id ) { $relationship = array( '24655' => '200-hours-testimonial', '24732' => 'another-one-here' ); if ( in_array( $id, $relationship ) ) { return $relationship[$id]; } else { return false; } }Call it like
$testimonial_type = my_testimonial_map( get_the_ID() );and pass it into the $args array.Didn’t test that code, but you get the idea.
Check out this guide for Yosemite. http://coolestguidesontheplanet.com/get-apache-mysql-php-phpmyadmin-working-osx-10-10-yosemite/
Forum: Hacks
In reply to: Redirect user after login if user_email is emptyHi,
Try
get_user_metainstead ofwp_get_current_user. https://codex.ww.wp.xz.cn/Function_Reference/get_user_meta