Jesse Friedman
Forum Replies Created
-
Now that I think about it, blogs.dir should be hidden at all times right? What might be a reason it’s showing on the front end?
@strangerstudios thank you for the awesome support. It appears the theme I’m using is utilizing this if statement:
if ( !$skip_account_fields && !$pmpro_review ) {
/*request user login
}
I just need to figure out if I can set those variables correctly or if I have to mod the code in the theme
Forum: Networking WordPress
In reply to: Full Site SSL on WP MultisiteMika
It is a subdomain installation with domain mapping turned on. I’ll take a look at those links, thanks a ton.
Forum: Networking WordPress
In reply to: multiple blogs and users Is this possible?Ok great, glad I could help. Feel free to mark this resolved then ??
Forum: Networking WordPress
In reply to: Create A New Site From An Online FormHi Colmore
You can create a form that will tap into the create_empty_blog() function
Then once the blog is created you’ll want a plugin network activated that will define the global settings you’d need for
Company description
Address
Phone number
Fax
LogoOnce those fields are defined you can do switch_to_blog pass it the id of the new blog and save those values as site options.
Forum: Networking WordPress
In reply to: multiple blogs and users Is this possible?You can have multisite networks with millions of sites but it will require a lot of server capacity. Make sure you keep that in mind as your network grows.
As for the personal urls are you saying you want to have communitylearningsite.com/jules and when there, you can sign in? Do you want that individual to be able to have their own domain? If so that’s possible too but need to be taken into consideration.
I think we need a few more details to get you the answers you need but nothing seems hard to do.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Pagination on Domains PageHi Ron
We all love this plugin, but shouldn’t pagination be a simple addition?
On my current installation, search is not working at the moment. I’m not sure if this is a bug or not but at the moment I have no ability to edit or remove a mapped domain.
Jesse
Forum: Reviews
In reply to: [WP Mobile Detect] Very promissing pluginI’ve added shortcodes and functions for iOS and Android
Forum: Reviews
In reply to: [WP Mobile Detect] Super handy!Your wish has come true
Forum: Plugins
In reply to: [WP Mobile Detect] plugin stopped workingHi @nicasiri
I’ve run an update, which should be available soon. let me know if you still have issues.
Forum: Plugins
In reply to: [WP Mobile Detect] Function to deactivate plugins on devicesI’d rather see you perform the functions of that plugin only if they are on the correct device.
Deactivating a plugin at this point will not solve your problem, nor do I think it is possible.
Lets say your AudioBar plugin has a function called wp_audiobar() you could do
if( ! wmpd_is_device() ) {
wp_audiobar();
}Forum: Plugins
In reply to: [WP Mobile Detect] How to check if this plugin exists?This is a technique you can use for any plugin
<?php
if (function_exists(‘wpmd_notphone’)) {
EXISTS
} else {
DOESN’T EXIST
}
?>Forum: Plugins
In reply to: [WP Mobile Detect] Resize header for mobile devicesTo be clear this plugin is made for content or functional switches. It is not a replacement for standard responsive strategy or simply using media queries, which seems like a simple fix for your problem.
Glad you like the plugin though ??
If you have any other things you like to change in the theme you can use the PHP functions outlined in the faq
Forum: Plugins
In reply to: [WP Mobile Detect] The [tab] shortcode doesn't workI apologize for the long wait. [tablet] is now available. There are some other great features I’ve just committed as well. You’ll see it available soon.
Forum: Plugins
In reply to: [WP Mobile Detect] plugin stopped workingIt might have something to do with the user agent detection. I’ll look into it and get back to you.