jainp
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] date picker and date (03/30/2017) not working in firefoxCould you please let me know how/where do I activate it after adding the code in functions.php?
Thanks.
I’m using version 4.5.1 of the plugin.
- This reply was modified 8 years, 9 months ago by jainp.
Thanks Angelo for setting me on the right path.
Below is my solution based on your post. Note your function signature was outdated (additional fourth arg now) and placeholder had a typo.
// adding a filter to override booking name sent in event emails.
add_filter( ’em_booking_output_placeholder’ , ‘my_em_get_display_name’, 1, 4);
function my_em_get_display_name($replacement, $EM_Booking, $result, $target){
if ($result == ‘#_BOOKINGNAME’) {
$replacement = $EM_Booking->get_person()->display_name;
}
return $replacement;
}Forum: Plugins
In reply to: [WP Store Locator] Remove map function entirely?I have done a similar thing where map is hidden on mobile by adding theme specific css class to gmap div in custom template as show below.
$output .= "\t" . '<div id="wpsl-gmap" class="wpsl-gmap-canvas hide_mobile_landscape hide_mobile_portrait"></div>' . "\r\n";So in your case it’s a matter of removing the above code in custom template of yours.
Hope this helps.
Forum: Plugins
In reply to: [WP Store Locator] Search by Store NameHi Tijmen,
This custom code of “searching by store/company name” works great. I have put that on one our test website and will let the client decide if they want to go ahead with this.
Thank you for helping me out on this one – very much appreciated.
Looking forward to 2.2 (I like the preview) – keep up the good work.
I have minor feedback if you ever go ahead with integrating this in your main code in future – it would be good to have an option where when user searches based on company name, the search field turns from “Google auto suggest field” to “Store name auto suggest” field or at least a simple input field without a google auto suggest.
Kind Regards!
Forum: Plugins
In reply to: [WP Store Locator] Search by Store NameI didn’t get your first email with attachment. May it was block by our email server if it contained zip file. I have sent you my personal email id. Hopefully it get’s through.
Forum: Plugins
In reply to: [WP Store Locator] How to change color of search button in WP store locatorForum: Plugins
In reply to: [WP Store Locator] Google search terms suggestionsHi Tijmen,
This is another feature that would be good to have and my current client has asked for. How far is v2.2 from being released?
Forum: Plugins
In reply to: [WP Store Locator] Search by Store NameSent you an email. Thanks for your prompt reply.
Forum: Plugins
In reply to: [WP Store Locator] Change the color of the seacrh buttonI had same issue and below worked for me…
#wpsl-wrap #wpsl-search-btn {
background-image: -webkit-linear-gradient(top,#005ba0 ,#005ba0 ) !important;
color: white !important;
}Hope this helps.
Forum: Plugins
In reply to: [WP Store Locator] Search by Store NameHi Tijmen,
Great plugin and I’ve already rated it 5 stars. 🙂
I have implemented your plugin in our dev environment it works great. Only issue is, there a requirement to also allow users to search based on store name. I cannot use categories as above user has mentioned because it’s used for something else.
If I were to customise your plugin where it can also search based on the store name, how would I go about it? Any help or hints you can give would be much appreciated.
Regards
Oops wrong plugin forum! Ignore.
Hi,
We have same requirement as above, could you point us in the right direction how we would go about it if we need to customize your plugin? Even if it’s a add-on you can develop, we would happily pay for it.
Regards.
Forum: Plugins
In reply to: [WP Store Locator] Can I pass http query string to store locator page?Thanks. BTW, awesome plugin and awesome support. 🙂
Hi Scott,
I downloaded your plugin and configured it but it doesn’t seem to work.
WordPress – 4.3.1
WooCommerce – 2.4.6When I register with same email if it throws an error “‘An account is already registered with your email address. Please login.”. This error comes from a wc_create_new_customer() which is in Woocommerce file ./wp-content/plugins/woocommerce/includes/wc-user-functions.php
If I comment that email check in the core file, then further in the code wp_insert_user() fails with an error.
Any idea, how we can get your plugin to work nicely with WooCommerce plugin?
Thanks in advance for your help.
Regards,
jainp