Slocum Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Invalid URL when Subscribing to Outlook 365Hi @masoodak , thanks for the update! We’ll sit tight for now and let our client know.
Thank you!
Hi @torralaq
We are working on an import/export feature that will hopefully be launching early 2022. If you have any other feedback please send it to us at our website. Thank you!
Hi @sarkparanjothi!
We are running into this issue as well. I’m thinking that @mpurdom6903 may have resolved this topic because he was able to hide those elements via CSS, but the main issue with the plugin isn’t resolved for others.
If you could please take a look at
Wcff_FieldsInjector::enqueue_client_side_assets()
. In the first conditional in that function there is an AND condition which should likely be changed to an OR condition:
if ( is_product() || is_cart() || is_checkout() && is_archive() || is_shop() ) :
should likely change to
if ( is_product() || is_cart() || is_checkout() || is_archive() || is_shop() ) :
Note: For developers, it is not recommended to edit plugins directly because those edits will be lost when the plugin is updated.
Thank You,
Scott- This reply was modified 6 years, 4 months ago by Slocum Studio.
Forum: Plugins
In reply to: [WC Fields Factory] Plugin conflict with WooCommerce SubscriptionsHello,
We are also running into the same issue, but we noticed that it doesn’t always have to be a WooCommerce Subscription product. It can also happen on a regular product. Or, at least for us, that is what was happening.
For developers, we traced the issue to the
Wcff_Negotiator::handle_custom_pricing()
function. This function is applying pricing rules to the cart items, which we currently don’t use in our application.It appears that the call to
$citem["data"]->set_price()
on line 72 is the culprit. WooCommerce will use the “changed” version of the price from the data store if it exists, which callingset_price()
sets. We are not quite sure why the new price is being set to zero, but in our case we had to edit this plugin directly to fix the bug. We just skipped the pricing rules logic all together because we don’t currently use it. Note: It is not recommended to edit plugins directly because those edits will be lost when the plugin is updated. We needed to fix this fast, and this was one of our only options.@mycholan: It would be helpful for developers if you could create instances of your classes/object inside variables or by using a singleton
instance()
function so that we can modify hooks as necessary. In our case, it would have been nice if we could have usedremove_action( 'woocommerce_before_calculate_totals', array( $wcffProductFields, 'pricing_rules_handler' ), 99 );
or similar to remove this hook temporarily since we do not use pricing rules. Unfortunately with the way that classes/objects are currently instantiated in WooCommerce Fields Factory, they are “anonymous” so we cannot easily modify the hooks.Here are a couple of resources that may help:
- https://tommcfarlin.com/instantiating-wordpress-plugins/
- https://maurobringolf.ch/2017/02/learning-the-singleton-design-pattern-for-wordpress-plugins/
Thank You,
ScottHey Chatz
Yep, that’s me. I’ll have a look at your work, thanks!
Hi Chathura,
The latest update to Easy Support Videos should fix the multisite issue for Administrators. We’ve credited you in our changelog for reporting the bug. Thank you for using our plugin!
It took a little longer than expected, but we’ve finally released the white-label add-on, which includes multiple video tabs + sorting. https://slocumthemes.com/wordpress-plugins/easy-support-videos/
Forum: Plugins
In reply to: [Easy Support Videos - Embed videos in the admin] Multiple websitesWe have a few solutions for this on our internal roadmap, it would help us out a lot too! Thanks for trying ESV ??
Forum: Plugins
In reply to: [Easy Support Videos - Embed videos in the admin] Embed SupportWe’ll take that into consideration, thanks for the idea!
Thanks for reporting this to us, if you need to open issues, this is the official thread for that https://github.com/sdsweb/easy-support-videos/
We’ll look into the multi-site issue soon.
Thanks for trying Easy Support Videos!
We do have plans to enable video from media library, and for a solution where you can enable videos within certain pages of your site. We’re currently finishing up a white-label add-on that will allow you to rebrand, move menu items, re-order and create more tabs of videos. Should be launching soon.
Forum: Themes and Templates
In reply to: [Baton] Theme Customizer adds text to URLsHey there! This issue is fixed in the latest version of Note plugin update. Makes sure that’s running latest version and you’ll be good to go. Thanks.
Hello! We are releasing a white-label add-on that will allow you to re-brand and organize videos, add pages, etc within the next few weeks. We’re just gathering feedback at this point.
Forum: Themes and Templates
In reply to: [Modern Business] Double mobile menusHello
Thanks for using Modern Business!
Please double check the following:
Under Appearance > Menus > Manage Location > Verify that you have no menu set to the top menu and a menu set to Primary Navigation
We’re testing on latest versions of WordPress + the latest version of our theme and see only one menu loading on mobile. However, if you have the same 2 menus in Top + Primary navigation, it will look like duplicates on mobile.
Forum: Reviews
In reply to: [Note - A live edit text widget] HmmmmHello
You can’t delete your rating, but you could change it to a 5-star to say it works the way it’s supposed to, that would really help us, thanks!