ndsailor
Forum Replies Created
-
Forum: Plugins
In reply to: [Invite Anyone] How to change email invite sender from WordPress to Site NameYou’ll need to use your function.php file, but the method outlined in this post works.
https://www.wpbeginner.com/plugins/how-to-change-sender-name-in-outgoing-wordpress-email/
Forum: Plugins
In reply to: [jQuery Smooth Scroll] Conflict with Bootstrap tabsThanks for the lead… I seem to have come up with a slightly simpler method that doesn’t require any additional changes to bootstrap tab set-up.
Just get more specific with the .indexOf(“#”)!=-1 to a <div> with a specific ID at the top of the page. In my case it was .indexOf(“#header_full”)!=-1
I also edited the display_link function in the main php file, but it seemed to work even without that edit.
This is what I hope will be a temporary solution… but it works. Some conditions.
- It will only produce a single column list, because it’s not using the plugin at all. It only mimics some of the css.
- You cannot use shortcode because it doesn’t use the plugin. You’ll have to insert directly into your template.
- I created a custom field to populate the $letter variable
<?php $terms = get_terms('your_taxonomy'); $letter = get_field('alphabet_letter'); echo '<div class="multi-column-taxonomy-list">'; echo '<ul class="multi-column-1">'; foreach ( $terms as $term ) { if ( preg_match("/^$letter/i", $term->name) ) { echo '<li><a href="' . get_term_link($term) . '">'. $term->name . '</a></li>'; } } echo '</ul>'; echo '</div>'; ?>
I’m also looking for a solution to this if anyone has ideas.
Thanks,
JWForum: Plugins
In reply to: [Live Edit] Not working with latest jQueryAlso running WP 3.6 and jQuery 1.10.2 with no luck
The edit button appears and activates the edit portion of the screen, but from there it’s a blank slate. No fields populate, no update button, just a lot of white nothing.
Forum: Networking WordPress
In reply to: Merged 3 Installs into Multisite but Unable to Share UserbaseI’ve never used the plugin, I just know that it exists and it felt like a solution to your problem.
If I were you I’d start from a fresh install and start testing because I think a MU set-up with the plugin is designed to do what you want. Best guess culprits…
1) Formidable does something a little outside the normal Wordprss process that prevents MU plugin from functioning…
2) A Corrupted Install from playing with to many different ideas, plugins etc — perhaps the previous User Table hack
3)Some Core/Basic WordPress control that you’re missing somewhere… I’ve lost hours searching for control that I had somehow overlooked in the Settings Menus.
Good Luck. I don’t think there’s more I can offer here, but would love hearing about the solution you come to.
Forum: Networking WordPress
In reply to: Merged 3 Installs into Multisite but Unable to Share UserbaseNot sure about this as I’ve only toyed around with multi-site a couple times, never tried to take an install live…
That said, I think you may have got some bad advice from GoDaddy, or perhaps hadn’t yet found this…https://www.ads-software.com/extend/plugins/multisite-user-management/
Or here’s another paid option that doesn’t require multi-site… https://premium.wpmudev.org/project/wordpress-user-synchronization/
Same trouble.
WordPress 3.42
Thesis 1_85
ACF 3.5.4.1 with the Gallery Add On.Fatal error: Cannot redeclare class acf_walker_taxonomy_field_checklist in .../html/tmv-development-subdomains/classdevelopment/wp-content/plugins/advanced-custom-fields-taxonomy-field-add-on/taxonomy-field.php on line 513
Ok thanks. I expect this to be a low priority issue, but if you come up with anything I’d love to hear about the solution.
Thanks for providing and supporting a great plugin,
JW