kmbee
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] All Locations Not ShowingHello, the issue was that I had to uncheck “Attempt to auto-locate the user:” Once I unchecked that, all the locations appeared. Is this the only way to show all locations?
Forum: Plugins
In reply to: [WP Store Locator] All Locations Not ShowingHello, all the coordinates are displaying properly. When I search for specific stores, they do show on the map and list. For example when I search one of the store locations like 14573 118 Avenue NW, it does show on the map. So all the locations are functioning properly. I just want all 130 locations to display on the map by default.
Thank you
I also tried disabling all the plugins and still the same issue.
Forum: Plugins
In reply to: [ICS Calendar] “Save to your Calendar” Link Not Working ProperlyNever mind, I just noticed that the update fixed this issue. Thank you!
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Label Cut Off on Product pageThank you Oleg, indeed overflow: hidden; was the issue.
Cheers.
Forum: Plugins
In reply to: [Advanced Product Labels for WooCommerce] Category Missing in ConditionsHi Oleg, thank you for your response. I am the one that first created this topic. Please see the following screenshots. You will notice that “Test Category Two” is missing in Conditions > Category > Equal
https://i.ibb.co/8DpjgV5/test-category-two-missing-in-conditions.png
https://i.ibb.co/rbtQ6Rp/woocommerce-categories.pngThank you.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Load Scripts in FooterI appreciate the information you provided Arno, it is very helpful.
Thanks again.
Forum: Plugins
In reply to: [Scriptless Social Sharing] Share Text is Displaying Where Excerpts Would BeThank you so much for that Robin, your code did the trick. If I figure out why I have this issue, I will post the reason here. Thank you for this nice little plugin.
Forum: Plugins
In reply to: [Firelight Lightbox] How to Enable “rel” TagThank you for the response Ravan. I have installed the plugin on a fresh WordPress install with the plugin at its default settings, and “Autogallery” is set to “WordPress galleries only”.
I tried creating a WordPress Gallery and also tried just inserting an image into the page. In both scenarios, there is no “rel” tag field anywhere, and there is no “rel” tag assigned or generated in the html.
How can I share a link with you privately?
Thank you
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Individual Photo AlbumsPerfect, thank you!
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Individual Photo AlbumsThank you for your response Arno, I love your plugin and the album feature would be a great addition.
I have several WordPress Galleries on my site would like to keep using your plugin, but I will also need to find a different plugin with Album capabilities.
Is it possible to turn off your plugin for specific pages where I use a different plugin?
Thanks again Arno, I appreciate the work you put into your plugin.
Forum: Plugins
In reply to: [Under Construction] Add Media Button Disappeared After WP UpdateThanks for the update. Can I ask why?
Forum: Plugins
In reply to: [Disable Gutenberg] Disable Gutenberg via Code + PluginHi Jeff, I notice that there is a change to the conditional method posted at https://digwp.com/2018/04/how-to-disable-gutenberg/. Do I need to use the updated code?
What I have now is;
// Disable Gutenberg
if (version_compare($GLOBALS[‘wp_version’], ‘5.0-beta’, ‘>’)) {// WP > 5 beta
add_filter(‘use_block_editor_for_post_type’, ‘__return_false’, 100);} else {
// WP < 5 beta
add_filter(‘gutenberg_can_edit_post_type’, ‘__return_false’);}
The update I see is;
// Disable Gutenberg
if (version_compare($GLOBALS[‘wp_version’], ‘5.0-beta’, ‘>’)) {
// WP > 5 beta
add_filter(‘use_block_editor_for_post_type’, ‘__return_false’, 10);} else {
// WP < 5 beta
add_filter(‘gutenberg_can_edit_post_type’, ‘__return_false’, 10);}
Thank you
Forum: Plugins
In reply to: [Disable Gutenberg] Disable Gutenberg via Code + PluginI see that the version “5.0-beta” is in the code. Do I have to edit the version in the code with each WordPress update?
Forum: Plugins
In reply to: [Disable Gutenberg] Disable Gutenberg via Code + PluginPerfect Jeff, thanks so much. I have the code in functions.php as a backup just in case the plugin is disabled.