carsonthetford
Forum Replies Created
-
Forum: Plugins
In reply to: [SendGrid] Plugin not compatible with latest version of WPI’ve had it working but I think maybe the new marketing updates in SendGrid have thrown off the API functionality. Hoping an update comes out soon to help fix this?
@clicks11 I worked with my hosting provider (also namecheap) to try the ModSecurity trick and they were able to whitelist it for me. That did fix it. Thanks for the help!
@clicks11 What did you end up going with instead of UM since they aren’t getting it together for this issue?
Forum: Fixing WordPress
In reply to: Using one database for 2 sitesSo I’ve been using Webkul’s multi vendor marketplace plugin with Woocommerce store plugin. The Multivendor plugin gives a seller role to users once they are approved so I tried installing both of those on the second site (slaved site) but it crashed it, so no go on that one. Not sure what the issue was with that but it may have been something to do with the slaved site being on a Subdirectory of the Master site.
I also created a user and gave them a non-plugin based role and that didn’t transfer over to the Slaved site. So I must have some disconnect in the meta data tables somewhere. What would be the 3rd table you are thinking of? I am not super savvy on the database side of WP. I’ve got the wp_users and wp_usermeta taken care of in the config file.
Forum: Fixing WordPress
In reply to: Using one database for 2 sitesThanks @jnashhawkins I thought I was on the right track. That is the page that I followed to do this so I’m not sure why it won’t transfer the roles over. I even tried to create a role in the second install that had the same role id (of course I may not have had it right). Any other thoughts?
Forum: Plugins
In reply to: [WooCommerce] Problem with hooks, causing content updating errorI ended up moving the `<!– Added Login link to top header –>
<?php
add_action( ‘storefront_header’, ‘add_login_link’, 11 );
function add_login_link() {
echo ‘<div class=login-top-link>
<a href=https://elevnn.com/my-account>Login</a>
</div>’;
}
?>` up into the section above and that cleared it up. I guess adding in the extra php tag section was messing with it.