mdevaney
Forum Replies Created
-
Forum: Your WordPress
In reply to: Which do you like better? OLD vs. NEWNot really impressive, its just a modified theme. I knew I’ve seen it before.
https://themeforest.net/item/traject-wordpress-portfolio-and-business-theme/116671
I’d rather see something original.
Forum: Networking WordPress
In reply to: Auto create pages at user sign up?Not the best thing to do but i hacked the core files to implement the new pages, son sign up if anyone needs help get at me.
Forum: Plugins
In reply to: Custom post editorworking on the same thing, let ya know if i find anything.
Forum: Networking WordPress
In reply to: wysiwyg for custom backendSo while searching the forums, codex, and google turned up NOTHING. I decided to use another WYSIWYG editor here is the code;
<script src="https://js.nicedit.com/nicEdit-latest.js" type="text/javascript"></script> <script type="text/javascript"> bkLib.onDomLoaded(nicEditors.allTextAreas); </script>
It turns all your textareas into textareas with a WYSIWYG editor
Forum: Plugins
In reply to: [LinkedIn SC] using user meta as profile url outsite loopright now its just echoing the url in plain text.
Forum: Networking WordPress
In reply to: Display User Meta In Sitesyeah im still having issues with it, it keeps breaking giving me errors
Forum: Networking WordPress
In reply to: Display User Meta In Sitesfigured it out i think everything is under ‘<?php the_author_meta( ‘META’ ); ?>’
Forum: Networking WordPress
In reply to: Display User Meta In Sitesalso is this list valid? https://holisticnetworking.net/plugins/ms-functions/
Forum: Networking WordPress
In reply to: Display User Meta In Sitesthere should be a shortcut like <?php get_blogowners_meta ($key) ?>
Forum: Networking WordPress
In reply to: Display User Meta In Sites‘<?php get_user_id_from_string( ‘[email protected]’ ); ?>’ get the user id so if it should look something like this right? —
<?php $user_id = get_user_id_from_string( ????????? ); $key = 'CUSTOMMETA'; $single = true; $user_last = get_user_meta( $user_id, $key, $single); echo '<p>$CUSTOMMETA</p>'; ?>
notice the ?????????
Forum: Networking WordPress
In reply to: Display User Meta In Sitesokay so in
<?php get_user_meta($user_id, $key, $single) ?>
you can grab the user meta, thats awesome but only if you know the user_id # how could i grab the “owner” of the sub site’s user id?Forum: Networking WordPress
In reply to: forward main site to sub sitein your .htaccess file:
RewriteEngine on RewriteCond %{HTTP_HOST} ^aaaa\.com RewriteRule ^(.*)$ https://www.aaaa.com/bbb$1 [R=permanent,L]
Forum: Networking WordPress
In reply to: Auto activate sitessignup.php is empty, 0kb with the file i downloaded.
Forum: Networking WordPress
In reply to: Auto activate sitesBTW i bought your e-book Andrea but cannot figure it out to save my life. could i add this to my current form?
Forum: Networking WordPress
In reply to: Auto activate sites@andrea im looking to have the basics of the wp-signup.php in with a form built with Formidable, do the values submitted of the form pertain to user-meta ? or how can i like the two forms? I’m able to register users via the Formidable form but it will not create a site.