somethumb
Forum Replies Created
-
Forum: Plugins
In reply to: [Coupon Box for WooCommerce] Where to enter Coupon Expire DateActually it would be more helpful to have it expire on a specific DATE not in a number of days. And in my case I need to it expire on Dec 31, 2022. Is there a date picker I can activate that will add the expiration DATE?
It’s because the action ‘admin_print_footer_scripts’ is either conflicting with another plugin, or WordPress itself because the priority has not been set.
So set it like this so there’s the highest priority: add_action(‘admin_print_footer_scripts’,’amm_edit_next_prev_post_button’, 999);
However, the block editor toolbar loads last, so the $(window).load(function() that is in this plugin, is not being called after the entire page is loaded, therefore, it’s being called BEFORE the editor toolbar at the top, and therefore, won’t work. This has to be rewritten to load this jQuery AFTER the toolbar loads.
- This reply was modified 3 years, 11 months ago by somethumb.
This is the location of the item
/public_html/mh/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/admin/manage-sort.php
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] Add an ID to the Section blockThx John, but i was talking about adding it in through the block parameters (like the classes are) so that it’s already embedded into that section.
This did not work for me. Mine still shows the slug.
https://www.dropbox.com/s/f7suiu3udzteeo4/woof.jpg?dl=0
How do i get the remove filter link to be the NAME of the Collection, not the slug.
I saw something in front.js that is this (so the append txt must be pulling the slug instead):
panel.find(‘ul’).append(
jQuery(‘
- ‘).append(
jQuery(‘‘).attr(‘href’, v).attr(‘data-tax’, index).append(
jQuery(‘<span>’).attr(‘class’, ‘woof_remove_ppi’).append(txt)
)));
Forum: Plugins
In reply to: [Discontinued Stock Status For WooCommerce] Show/HideUnfortunately, this plugin does not work properly. Once you click/choose the variation that is discontinued, the Add To Cart button goes away for ALL items.
It needs to come back for items that are in stock.
Forum: Plugins
In reply to: [WC Custom Emails Per Product] Order Received Page messageWhen an order is placed, the Thank You page.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] The [more] link in the Stream viewCan i change the [more] link? Where could i filter it? What file should I look in that would give me the location of the filter?
This thread is not resolved. Gravity Forms Multi-File upload does not work on Popup Maker on the Microsoft Edge browser. I’ve tested it with multiple people on their machines and it’s not working. Can a developer please look into this very important bug? Thank you.
You used the individual uploads. They worked fine. I’ve removed those fields. Now try the MULTI-FILE UPLOAD in MICROSOFT EDGE browser. See if you can get the file dialog to come up.
The page now has just the popup. You’ll see that the multi file selection doesn’t work in the popup maker window.
Forum: Plugins
In reply to: [Date Picker in List Fields for Gravity Forms] Default date per fieldI’m unable to get this to work. My form is at https://www.ablecloset.com/agreement-borrow-equipment-release-liability/
And this is the code I’m using in functions.php:
// Add default date to list field datepicker
add_filter( ‘itsg_datepicker_fields’, function ( $datepicker_fields, $form_id ) {
if ( ‘6’ == $form_id ) {
$datepicker_fields[‘2’] = array( ‘3’ => date( ‘m/d/Y’, strtotime( ‘now’ ) ) );
}
return $datepicker_fields;
}, 10, 2);Forum: Plugins
In reply to: [New User Approve] White Screen on Dashboard upon ActivationIt was a php memory issue. I had 32MB and it needed more. I bumped it to 512MB and it worked.
Forum: Plugins
In reply to: [Countdown Timer - Widget Countdown] conflict with store exporter deluxeJust came across this issue as well. Seems to be a conflict with the WooCommerce Bookings extension, which uses the .datepicker class, but the CSS is cascaded (so it targets the correct section), and designed to work only on the Booking admin pages.
This needs to be addressed on this plugin in order to fully work. Meanwhile, i’ve actually commented out the enqueued stylesheet in the plugin and it still works fine.
I think this may have something to do with an Options field dropdown, which is a select field.
When i deactivate the plugin on this page, the form works.