kal123
Forum Replies Created
-
Forum: Plugins
In reply to: [Leaflet Map] geojson and gpx shortcodes do not display anythingThanks. I got it work with the following syntax:
[leaflet-map fitbounds]
[leaflet-gpx src="https://staging.sleeplateandhike.com/wp-content/uploads/formidable/15/Almaden-QuickSilver_8.1mi.gpx"]Forum: Plugins
In reply to: [bbp style pack] plugin activation notice with wp 6.7.1The bbpress plugin needs to fix it as well, since your plugin is depending on that code in bbpress.php.
I have created a bug here for bbpress:
You can test it with my fix for the bbpress plugin to see if once bppress fixes it, your fix will be sufficient.
Just comment out the one line in bbpress.php and add the once action I have in the bug to test your fix.
Then, when bbpress fixes it, you can put out your fix as well.
Forum: Plugins
In reply to: [bbp style pack] plugin activation notice with wp 6.7.1More likely to happen when running Woocommerce 9.4 with WP 6.7:
The official Woocommerce notice about this change:
I am running:
WooCommerce Version 9.5.1
bbp style pack Version 6.1.6
bbPress Version 2.6.11
I also modified bbpress to move the text domain to an add action that happens later:
includes/core/actions.php
add_action( ‘after_setup_theme’, ‘bbp_load_textdomain’, 4);
And, removed it from bbpress.php core actions to prevent the same issue.
I am not sure these are the most ideal solutions, as I am not the author of these plugins.
Forum: Plugins
In reply to: [bbp style pack] plugin activation notice with wp 6.7.1Fix Replace in “bbp-style-pack/bbp-style-pack.php”
function bbp_style_pack_init() {
unload_textdomain( ‘bbpress’ );
load_plugin_textdomain(‘bbp-style-pack’, false, basename( dirname( FILE ) ) . ‘/languages’ );
load_plugin_textdomain(‘bbpress’, false, ‘bbpress/languages’ );
//load the plugin stuff
bsp_load_plugin() ;
}with:
function bbp_style_pack_init() {
unload_textdomain( ‘bbpress’ );
//load the plugin stuff
bsp_load_plugin() ;
}add_action(‘init’, function()
{
load_plugin_textdomain(‘bbp-style-pack’, false, ‘/languages/’);
});Forum: Plugins
In reply to: [WC Fields Factory] select option populated with DB table valuesI will use the above, but would like to prevent son_1 from being selected twice by the user as an attendee name for both tickets.
Basically, all select choices must be unique.
Where/how can I best do this validation?
Forum: Plugins
In reply to: [WP GPX Maps] Not loading js when plugin activeI see this error in the js:
TypeError: jQuery(…).wpgpxmaps is not a function
I just upgraded to Version 4.7.3
And, now absolutely nothing works at all.Access Control Panel is completely blank. No text.
User/Roles Panel says “Proccessing…” in tiny blue letters underneath the red “Default”Currently, I have no updates to install. So I have no way to test this.
But:
1. License Key should only need to be installed once. Not for every single update.
2. The plugin/extension state should change automatically to “installed” from “Update Available”.
3. I should not have go through this cycle half a dozen times, before it shows “Installed”
4. I am not interested in the “best customer service” for a buggy product.5. I am interested in a quality product that does not require extensive customer service, a lot of my time and frustration to make it work in the first place.
6. I purchased the full bundle, so “manual extension deployment” should not be an issue.
7. This is the Internet. Connections fail all the time. You should be designing for server interruption (adding re-tries), not making excuses for it.8. None of my other plugins have “server interruption” issues. This is not an excuse that makes you look good.
9. My background is that of a software programmer for networking appliances. I could never get away with blaming “server connection” issues for poor software design.
10. It is very easy to setup a Linux machine to simulate such network issues BEFORE you release. Rather than make excuses for lack of testing after the release.