jhnpldng
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Responsive Shortcodes] fyi, FAQ has a mistakeAlso, maybe there was a change because a soccer ball is futbol-o
Forum: Networking WordPress
In reply to: Migrating Multisite to new Server.htaccess file maybe? It’s custom to a multisite install and you’ve probably edited it for the fresh mu install but I don’t know if it changes as new blogs are made or not so you might check your old htaccess against the new.
I’ve never done a multisite migration myself, just a thought.Forum: Networking WordPress
In reply to: I want to start a 2nd WP siteThe Sticky Post of this forum should get you started. This is the multisite forum which is a type of wordpress installation similar to wordpress.com allowing your users to create subsites of your existing wordpress. (after it’s converted to multisite) Converting to multisite is a little bit technical and especially if you’ve already had wordpress running for more than 30 days. If you simply want a second site without going through the whole installation process again, there’s lots of site cloning plugins. Duplicator is my favorite but that’s personal preference. Another option might be a one-click install if it’s available on your hosting. This would be a new blank wp site however whereas the duplicator will be a clone of your existing.
Forum: Networking WordPress
In reply to: Does wordpress have this capability?Oh yes, you are in for some fun.
Forum: Networking WordPress
In reply to: Copy Theme, Menus, Widget settings between EXISTING subsitesIt’s best to create one subsite with all plugins and themes you want but no content and use that as a master to clone from using a plugin to do make the clones. This “master” site would not be published. You would have to un-publish it after creating it because new sites are automatically published.
This means you may have to make one clone, delete all content and use it as the master.
You could also have just some sample content like a fresh install of wp has just so people have examples.Forum: Networking WordPress
In reply to: what can the super admin do? pluginins? themes?Super admin can do anything that can be done. Subsite admins have reduced capabilites and cannot install/remove themes or plugins. Themes and plugins can be installed and Network Activated or just installed at which point subsite admins can activate/deactivate. If Su-Admin activates, sub-admins have them available but can’t de-activate. Not all plugins are multisite compatible and some might not say they are or aren’t but may still work so you have to try and see. Some will work with network activation and some won’t.
With themes, su-admin can install and activate a selection of themes for sub admins to choose fromForum: Networking WordPress
In reply to: Are users registered across the network?There’s a plugin called Join My Multisite that will do that. I don’t think it will work for existing user but all new registered it will.
https://www.ads-software.com/plugins/join-my-multisite/Please Note* regardless of my bad sense of humor, all joking aside, I do think users ultra has a lot of potential and I’m not trying to bust your chops. I’d like to see the issue resolved and see UU get better. I realize that resolving this plugin conflict might seem like the equivalent of giving uu lite plugin users a feature that’s not available on lite. Sending email via smtp. However, any version should not block the ability of uu plugin users to send email via smtp with another plugin like postman + contact form 7 or anything else that uses smtp.
I’ll help in any way I can. Sublimerge (if I’m using it correctly) says there’s no diff in xoo.usersultra.messaging.php from this morning’s version compared to a backup from 4-5 days ago. Both lite versions. I also see no diff visually between lines 62-80.People want to be able to send email from wp and not have it get caught up in spam catchers. This requires smtp. Some of us don’t want to have to go through gmail.
I do have a second multisite without uu lite on it. I’ll go ahead and install uu lite and postman and test it.
<img class=” size-medium wp-image-512 alignnone” src=”https://geneapaths.net/wp-content/uploads/2015/07/postuser-300×50.png” alt=”postuser” width=”300″ height=”50″ />nope
ETA: both freshly downloaded from the repository and neither had ever been installed on that site. All other plugins deactivated.
Forum: Plugins
In reply to: [Rootspersona] How does RootsPersona compare to PHPGedView?phpgedview is outdated and unsafe as it uses an older version of php
rootspersona is nothing like it. there’s a demo on rootspersona.com that should give you a better idea.
some things you mentioned are way outside the scope of the plugin but could be done with other pluginsyou might try searching for phpgedview fork or successor
Forum: Plugins
In reply to: [Rootspersona] Edit Personold post but……..
go to that person’s wordpress page and at the bottom you’ll see a link/button to “Edit Person”. Should be right next to “Delete Person”. (not the regular edit page link, which may or may not show with your theme, that simply says “edit”)@usersultra, hey no problem, I have pro hosting too. Last night my sites went down. This morning, still down. Got them on chat and found out they blocked me for being malicious. I think I was sending too many emails with all kinds of different smtp plugins trying to get over/under/around this.
That makes more sense. Hey, Thanks for participating in the support forums. I’ve got uu pro now so none of this here applies anymore. lol I might bring it up on the pro support forums but I don’t know. I’m really starting to become a pest. Funny thing is, lite version doesn’t have the ability to send smtp so none of this should have applied here anyway.
Thanks but I’m not a coder. Like I said, I’ve worked around it.
public function send ($to, $subject, $message) { global $xoouserultra; require_once(ABSPATH . 'wp-includes/pluggable.php'); $uultra_emailer = $xoouserultra->get_option('uultra_smtp_mailing_mailer'); if($uultra_emailer=='mail' || $uultra_emailer=='' ) //use the defaul email function { wp_mail( $to , $subject, $message, $this->mHeader); }else{ //third-party if (function_exists('uultra_third_party_email_sender')) { uultra_third_party_email_sender($to , $subject, $message);