Forum Replies Created

Viewing 15 replies - 1 through 15 (of 38 total)
  • Thread Starter doncullen

    (@doncullen)

    I can confirm the issues I previously raised are now all resolved. Thank you!

    Thread Starter doncullen

    (@doncullen)

    Can you please link to that open feature request? I believe you have a public tracker showing roadmap of planned features.

    As you’re simply classifying this as a feature request and not as a bug (meaning will not fix the issue anytime soon), I will be moving ahead with modifying your plugin to support two-way sync and will be disabling your plugin from updating as this is not something I can simply wait a long time to see implemented.

    Thanks for getting back to me.

    • This reply was modified 1 year, 7 months ago by doncullen. Reason: fix typo
    Thread Starter doncullen

    (@doncullen)

    I’m actually using Slimline option. It still closes Jetpack CRM menu whenever I open a contact.

    I’m not sure how to post screenshots here so I just uploaded my screenshot and am including my link to those.

    Screenshot showing my Jetpack CRM setting as being set to Slimline:
    https://www.dropbox.com/s/bzrn6mf5hurd3j2/ss_1.png?dl=0

    Screenshot showing contact as being open and left nav showing Jetpack CRM as being closed:
    https://www.dropbox.com/s/u8rn8px0v1rq69t/ss_2.png?dl=0

    Thread Starter doncullen

    (@doncullen)

    WooSync should be two way. If I change a customer’s name, it should also change it in WooCommerce. That’s the whole point of having Jetpack CRM integrate with WooCommerce. Otherwise it’s just a mask on WooCommerce and is of limited utility. I appreciate your running it by the dev team.

    As for the photo, I’m talking about the contact photo you see at top right when editing a contact. Normally that uses gravatar, but I installed a plugin (Simple Local Avatars) that lets me use a photo from the media library as the contact’s photo. It works perfectly UNLESS the contact goes from a lead to a customer — in other words, now has info in WooCommerce, at which point their information is overwritten and lost, including the photo. I rely on photos to know who each contact is as I remember faces better than names. I suspect that when WooSync runs, rather than selectively updating, it simply updates the entire row in MySQL for that contact without bothering to check for fidelity issues.

    A simple solution for this would be a basic two way sync; if a contact information changes within Jetpack CRM and that contact’s information exists in WooCommerce, it’d then update WooCommerce to reflect this change. This way when WooSync runs, it wouldn’t unilaterally nuke the contact’s information in Jetpack from orbit if it differs ever so slightly.

    I’m a software engineer. It’d probably take me a hour or two to modify the plugin behavior so it’s two way sync. I won’t do that since any changes to the plugin would be overwritten when your plugin updates, hence my posting here asking you to please look into fixing it. If it’s something you’re NOT interested in fixing in the short term, please let me know so I can go ahead and hack the plugin and disable it from getting updates from you.

    Thanks for getting back to me!

    • This reply was modified 1 year, 7 months ago by doncullen.
    Thread Starter doncullen

    (@doncullen)

    After studying WordPress documentation, I’m understanding filters better and how they work. Based on this understanding, I now understand the function is expecting HTML since only the first parameter can be modified while the rest of the parameters are strictly informational. So with that information in mind, I re-coded it to this:

    add_filter('mailchimp_woocommerce_newsletter_field', 'rephrase_mcfield', 10, 3);
    function rephrase_mcfield ($checkbox_html, $status, $label) {
    	$updatedlabel = 'This is a test';
    	$checkbox_html = str_ireplace($label, $updatedlabel, $checkbox_html);
    	return $checkbox_html;
    }

    Basically it’ll take what the current HTML is, search for the current label provided by the function in the HTML, replace that current label with the updated label within the HTML, and then return the updated HTML back to the function.

    However nothing is happening with the label. So presumably this is not working as expected.

    As a temporary workaround, I’ve directly modified mailchimp-for-woocommerce/public/partials/mailchimp-woocommerce-my-account.php and updated the label, which works for now. However when the plugin is next updated, that change will be overwritten, so any feedback is appreciated.

    Thread Starter doncullen

    (@doncullen)

    Search by username. You gave me an idea. So I disconnected it from my account and logged in as the username I was searching, authorized it, then had it simply search by account. Now it’s showing the full 20 I requested. It’s working as expected now.

    Thanks for your support!

    doncullen

    (@doncullen)

    As the author no longer responds to threads for this plugin, my company has opted to nix this plugin due to it being considered “unsupported”.

    I checked into alternatives and found a3 Lazy Loading plugin. The client didn’t need images to be lazy loaded, so I disabled it for images and left it enabled for YouTube videos. I also made sure to enable it for widgets so it’d work fine for Divi. It appears to do the job. Perhaps it’s a good option for your client.

    doncullen

    (@doncullen)

    I just ran into the same problem you did, Kbell152. Did you ever find a solution?

    Thread Starter doncullen

    (@doncullen)

    It does mean once I modify the plugin, I’d no longer be able to get future updates from your plugin as it’d become a customized plugin. Security is a factor, so the team would prefer to simply make do without and stay current in updates.

    Thanks for clarifying that there’s no simple fix. I’ll let the team know that this isn’t an option and move ahead without the hover animation they were hoping to make use of. I appreciate your taking the time to think on it and respond!

    I’m not the guy who made the plugin. So any help I give will be very limited.

    That being said:

    Pop the shortcode into container like this:

    <div id=”animcontainer”>[shortcode]</div>

    Then in your theme’s style.css, add this code:

    #animcontainer > .wpbdmv-animation{
    height: 400px;
    width: 200px;
    }

    That’ll set the size. If you want it to scale width or height automatically and only set one of the dimensions, you can do it like this:

    #animcontainer > .wpbdmv-animation{
    height: 400px;
    }

    Then it’ll set height to 400px and scale width based on that automatically so it doesn’t look distorted. Of course, if you have multiple animations, just change ‘animcontainer’ to whatever you want for the name so it’ll hook into those accordingly.

    Hope that helps. Good luck!

    Thread Starter doncullen

    (@doncullen)

    Seems you updated the plugin 5 days ago, which appears to include my customization.

    However, it appears that the new code has one line commented out (//true); this results in widget not showing up for selected categories.

    • This reply was modified 5 years, 1 month ago by doncullen.

    I had issues with backend menus items disappearing too, the dev version also fixed it.

    Thanks!

    Have to create (see top right button saying create, in capabilities). Put in gform_full_access. It should show up then.

    Thread Starter doncullen

    (@doncullen)

    I was able to solve the problem. First, I had to delete the PDFs (just the ones that kept downloading) from the Document Gallery. Second, I deleted the files themselves via FTP. Third, I renamed the files to something else. Fourth, I re-uploaded them via Document Gallery and added them back in, then saved the post.

    Now all of the PDFs are behaving properly. Not sure why it was exhibiting this strange behavior, but works fine now.

    Whatever it was, it appears that there is an issue with your plugin in where it causes certain files to download rather than simply open. I’m not sure what is causing it, but it required me renaming the files in order to get it to behave as expected.

    Thanks for trying to help me to troubleshoot the matter!

    Marking this issue as resolved.

    Thread Starter doncullen

    (@doncullen)

    I was able to solve the problem. First, I had to delete the PDFs (just the ones that kept downloading) from the Document Gallery. Second, I deleted the files themselves via FTP. Third, I renamed the files to something else. Fourth, I re-uploaded them via Document Gallery and added them back in, then saved the post.

    Now all of the PDFs are behaving properly. Not sure why it was exhibiting this strange behavior, but works fine now.

    I re-enabled EasyFancy Box, and tested them all out. Working flawlessly.

    But whatever it was, it appears that your plugin isn’t able to detect that it’s trying to download versus displaying, so it simply displays a blank file. May want to add in something to detect that.

    Thanks for trying to help me to troubleshoot the matter!

    Marking this issue as resolved.

Viewing 15 replies - 1 through 15 (of 38 total)