navyspitfire
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Showing taxes on cart/checkoutI feel like I tried everything to no avail. I have both tables in my database, both populated. WC settings seem good. Taxes > Standard section is completely filled with zip codes.
Forum: Plugins
In reply to: [WooCommerce] A way to tie products to individual payment gatewaysHi @riaanknoetze, seems like you’re everywhere. Thank you for this. Have you used it at all? It seems I can have several payment gateways and products only use certain ones, but do you know if I can add two products from different payments gateways into a cart and purchase them easily, and their costs will go to the assigned accounts?
Forum: Fixing WordPress
In reply to: Help optimizing websiteHi Steve, yeah I figured that was the main issue. I will try those two plugins. When I install those two, should I deactivate the ones I mentioned?
I will see about jetpack, money is an issue so trying free stuff first, maybe users now of tricks I haven’t tried yet. Thank you.
Forum: Fixing WordPress
In reply to: Help optimizing websiteYup! My mistake. Here you go.
- This reply was modified 7 years, 9 months ago by navyspitfire. Reason: fixed link text
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkAmazing, that was the issue! Thank you for looking over my code, I truly appreciate it.
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkWould you mind posting a link to a screenshot of your settings? I feel like, before trying to edit the template, I had the right settings, but it wouldn’t display by itself, only under more info.
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkThat’s exactly what I want. “Show more info” link is also unchecked When I installed the plugin, I could only get the number under the “more info” tab. What did you do? Did you customize the template in functions file? Can you share your snippet if you did?
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkEnable store locator debug? It’s unchecked.
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info link@gene158 I saw that, I am trying to edit the template so not have to show the “more info” tab and simply always have the phone number showing at all times.
Forum: Fixing WordPress
In reply to: Form Plugins that display results to users in front-endHi Steve, you said pro, which is $99, there is a personal version for $49; my question was regarding the personal version; does the pro version have anything the personal version doesn’t? I don’t even see a free version on their site. Thanks.
Forum: Fixing WordPress
In reply to: Form Plugins that display results to users in front-endThanks Steve, is there a specific reason why I would need pro over personal?
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkhttps://www.ultraluxeskincare.com/store-locator-test/
Use zip 90028
Solved. In plugin file
class-sticky-list.php
, around like 318 (// Get entries to show depending on settings
), hide that whole if statement and replace with:$user = wp_get_current_user(); if(is_user_logged_in()) { $user = wp_get_current_user(); if($user && !in_array( "administrator", (array) $user->roles )) { $search_criteria["field_filters"][] = array("key" => "status", "value" => "active"); $search_criteria["field_filters"][] = array("key" => "created_by", "value" => $current_user_id); } if (in_array( "administrator", (array) $user->roles )) { $search_criteria["field_filters"][] = array("key" => "status", "value" => "active"); } $entries = GFAPI::get_entries($form_id, $search_criteria, $sorting, $paging); }
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkOkay so I did it and moved the phone code out of the if statement. Now while a store lists on the map (I see the marker and store name), the actual listing does not appear. I also tried clearing the trasient cache. Any idea?
Edit: Also, I just noticed that since it doesn’t show the normal store list next to the map, when I click the store marker, my template shows on the marker. I am trying to get the store list to follow the template, not the marker information
- This reply was modified 7 years, 10 months ago by navyspitfire. Reason: added more notes
Forum: Plugins
In reply to: [WP Store Locator] Change template to include phone without more info linkOh, great, I was trying to find that. If I simply added that to my functions file, will that automatically modify the default template or do I have to do something else? Thanks.