discsox
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] Autoptimize breaks WooCommerce PayPal PluginHi Frank,
Thank you VERY much for your quick response. Adding the filter fixed the issue while I still was able to compress all the other js files.
thanks again and kind regards,
Marcello
Forum: Plugins
In reply to: [Autoptimize] Autoptimize breaks WooCommerce PayPal PluginJust wanted to clarify: Once i turn the Optimize JavaScript Code off in Autoptimize, PayPal plugin works again.
Marcello
Forum: Plugins
In reply to: [WooCommerce] Flat rate on shipping class skipped since 3.0.3This is issue is possibly related.
Shipping settings:
– variable products
– Flat rate product based shipping with shipping classes– When upgrading to 3.0.3, flat rate shipping just shows title, no cost is added to the cart
– setting a cost in flat rate settings works but then of course product based shipping classes do notReverting to 3.0.2 fixes the issue; Products get assigned their shipping class and associated cost.
please look into this issue as well.
thanks for your support and kind regards,
Marcello
Thank you for your reply!
I was trying to avoid buying a plugin just for a pre-sale question. Especially because UM states the following on all their pricing pages for the extensions (e.g Profile Completeness Extension).Support
Need help or have a pre-purchase question? Submit a ticket
hereSo I guess they changed their mind about support but have not updated the website…
thanks again,
Marcello
Thank you for your suggestion. However, this is a pre-sale question and from the Ultimate Member support page there is no way to create a ticket as far as i know.
Thus I created the post here…Another way to phrase the question: is there an option in Ultimate Member Free to create multiple profiles that can be accessed via a profile tab. I ended up with server errors when i tried to do that. Thus the question about Member Tabs Pro which claims to support that but then i need to know whether this will work with the profile completeness extension.
Cheers,
Marcello
Forum: Plugins
In reply to: [Event Calendar] Pop up on mobile devicesIf you really want to fix this, you have to do a few more things:
- fc-header-title (which displays the month and year) has to be moved for screen widths smaller than 760px. Otherwise in android devices it will skew the content.
- Best spot is above the calendar content. unfortunately this is laid out with tables and there is no floating possible. we have to use absolute positioning to get around that.
- For screen heights below 480px (small iPhone) the height of the calendar event pop-up can be set to 300px. But for larger phones let the height be auto. It does not make sense to make the user scroll if the event fits on the screen.
- Avoid overwriting plugin code because if you update the plugin, your changes will be lost. Use a child theme or if you have a template that allows for custom CSS code, add it there.
The code below fixes all the issues i was able to find:
/* Calendar Fix -------------------------------------------------------------- */ div.simplemodal-container[style] { width: 80% !important; height: auto !important; max-width: 600px !important; overflow: auto !important; } /* */ @media only screen and (max-height:480px) { #aec-modal-container .aec-content { height: 300px !important; } } @media only screen and (max-width:780px) { #aec-container { padding-top: 40px; } .fc-header-title { left: 0; position: absolute; text-align: center; top: 0; width: 100%; } } /* End Calendar -------------------------------------------------------------- */
Cheers,
Marcello, https://www.mmdbiz.comForum: Themes and Templates
In reply to: Virtue "Theme Options" missing after updateHi Jorge23,
thank you very much for posting the fix.
Works perfectly fine now…Cheers,
Marcel
Forum: Plugins
In reply to: [Event Calendar] Version 0.9.9 (In progress) Feature ListHi Eran,
Thank you very much for your reply and your suggestions.Kind regards,
Marcel
Forum: Plugins
In reply to: [Event Calendar] Version 0.9.9 (In progress) Feature ListGreat calendar thank you!
What I believe would be most helpful is the following:
– Filter the display of each event by a user group
– Add a custom group with select users and display the event only to that group.This would allow “private” meetings on the calendar that only show to select people.
Just a suggestion ??
Cheers Marcello