thisisbolo
Forum Replies Created
-
Forum: Plugins
In reply to: [MAS Brands for WooCommerce] Link doesn’t go to shop pageHello – thank you. This seemed to do the trick!
Hi @wpsolutions,
Thanks for your active responses. I appreciate you taking the time to respond to my comments.
I understand. I’m officially stumped. What do you suggest is the best approach for security login when using your plugin?
I currently use the ‘Rename Login Page’ however I was looking for a more secure way as an Admin user can use the WooCommerce login forms to login and have access to the WordPress dashboard.
For some reason, I have a bot(s) consistently hitting these login forms with existing usernames and I want to avoid any success of login to then access the WP dashboard.
I’m hesitant to use whitelisting as there’s instances where I login to the WP dashboard while on travel.
Hi – thank you! Just reading through this and trying to understand the logic. Doesn’t this defeat the purpose to using the cookie to avoid attempts to access the WP dashboard? If on logout, the cookie is placed for any user that logs in / out, doesn’t that mean they can them attempt to login to the dashboard there after?
Do I still include
add_filter( 'login_url', 'my_login_page', 10, 2 ); function my_login_page( $login_url, $redirect ) { return home_url( '/my-account/?redirect_to=' . $redirect ); }
along with
add_filter('woocommerce_login_redirect', 'woo_filter_login_redir', 10, 1); function woo_filter_login_redir($url) { if (class_exists('AIO_WP_Security')) { global $aio_wp_security; if($aio_wp_security->configs->get_value('aiowps_enable_brute_force_attack_prevention') == 1){ $bf_secret_word = $aio_wp_security->configs->get_value('aiowps_brute_force_secret_word'); return add_query_arg( array($bf_secret_word=>'1'), $url ); } } return $url; }
Hi @mbrsolution,
Thank you for your response. This almost worked however there’s a couple of issues we’re running into.
1. WooCommerce customer’s can’t successfully logout. We tried inserting the following to no avail.
add_filter( 'logout_url', 'my_logout_page', 10, 2 ); function my_logout_page( $logout_url, $redirect ) { return home_url( '/my-account/?redirect_to=' . $redirect ); }
2. When trying to access https://siteurl.com/?secret_word_here=1, it redirects you to /my-account as we’ve placed the following into child theme functions.php as per suggestion
add_filter( 'login_url', 'my_login_page', 10, 2 ); function my_login_page( $login_url, $redirect ) { return home_url( '/my-account/?redirect_to=' . $redirect ); }
We’re using WP Rocket for caching. Could there be a plugin conflict?
Forum: Plugins
In reply to: [W3 Total Cache] SVG images missing a cache validatorHi @anitavm,
I’ve run into the same issue. Were you able to find a solution?
Forum: Plugins
In reply to: [Page Speed Optimization] The New PluginsIs this plugin no longer available? What’s replaced it?
Thank you for being open to user feedback! It’s awesome. Looking forward to this at the next release. Would you be able to share how to use this action hook? Would we call it from a function in our functions.php file?
I agree with you @buyzer. Right now, it pulls up a screen that says ‘Not available.’ but it would be ideal for this to return a 404 otherwise this kind of tells everyone that this is most definitely a wordpress site. Can we possibly get this pushed into a product backlog for this plugin?
On another note, does anyone know how to edit the ‘Not available.’ page? Is there a file I can drop in my child theme folder?
Anyone else experiencing this plugin producing major 503’s since the last update? I turned on debug to log and it was riddled with errors.
Forum: Plugins
In reply to: [Plugin for Google Reviews] Show fewer reviewsHi – can you share the hack to show fewer than 5 reviews? Is there something I can add to functions.php?
Hi Pavel,
Thank you for your response. I appreciate the level of detail. I’ve thought a bit about what you’ve said and it makes sense. The cross compliance would have to come from WP All Import and adding ATUM metas into their system. I still need to do a lot of discovery on ATUM but I’m sure a function could be written to help map.
For your locations add-on. Would their be ability to update inventory at locations through data feeds – csv, json, xml?
Looking forward to the release. Send me a party invite!
I came across this forum while doing some research on the ATUM. I have it installed in our dev environment and haven’t yet pushed it to production. I’m a heavy user of WP All Import and have been for the last couple of years as our site has multiple inventory feeds from different suppliers with over 10000+ sku’s and this plugin makes it quite simple to import, map and work with various types of feeds and customize your imports to work with complex data. Not to mention there support team is super helpful. The plugin Stock Management Labs is developing for importing and exporting, will it be as extensive as WP All Import and Export?
I just read that there won’t be any support for 3rd party plugins which if not, will your plugin do everything WP All import and export can do plus more?
I’m patiently waiting to see what your locations extensions looks like. I haven’t found the right solution just yet and that’s how I stumped upon ATUM.
To be honest, it’s a bit of a buzzkill that there won’t be support for 3rd party. Kind of tie users hands up. I’d suggest to support 3rd party and at the same time develop a plugin that would compete in that space and let users decide. That’s how I’d work to take marketshare.
Forum: Plugins
In reply to: [WP Store Locator] Show Map & Results only after Submit Button Clicked@tijmensmit Any suggestions on how I can manually call this in the code you’ve supplied? Just need to centre to the markers.
Forum: Plugins
In reply to: [Business Hours Indicator] Displays inline while it is set to tableYes, thank you. I will definitely reach out!
Forum: Plugins
In reply to: [WP Store Locator] Show Map & Results only after Submit Button ClickedHi @tijmensmit – I’ve tried possibly every combination of code I could think of from the link you shared. I keep getting CurrentMap is undefined. How do I pinpoint the map? All I really know is the div id #wpsl-gmap.
I’m not showing the map in a hidden nav, i’m hiding #wpsl-gmap and then showing it when the user enters address and clicks submit.
The below code works. I just need some help centering the map to the markers. Any thoughts? I’m actually stumped at this point :S
<script> jQuery(document).ready(function(){ jQuery('#wpsl-gmap, #wpsl-stores').hide(); jQuery(document).ajaxComplete(function() { jQuery('#wpsl-gmap, #wpsl-stores').show(); google.maps.event.trigger(jQuery('#wpsl-gmap')[0], 'resize'); }); }); </script>