sitehatchery
Forum Replies Created
-
Thanks for the information and your follow up. It appears to all be set up correctly, but we will continue getting into it after the holidays.
The odd thing is that, even though the transaction is ‘refused’, it actually hits PayPal and my account gets charged. But then it immediately gets refunded.
Forum: Plugins
In reply to: [WooCommerce] Free shipping coupon is not workingCreate a free shipping zone and order that before everything else. The order of the zone mattered for me.
Forum: Plugins
In reply to: [Private Uploads] MP4 filesNot sure if it will cause other issues, but I added this to line 126 on /plugins/private-uploads/private-uploads.php:
if($mime[‘ext’] == ‘mp4’) {
$mimetype = ‘video/webm’;
}This seems to work, at least on my iPad.
Looks like on Safari, the mimetype was not being captured and so it gave it a mimetype of application/octet-stream. video/webm for mp4 seems to work in all major browsers.
It sounds like a fairly easy addition to make. This is the only problem that I keep running into with this plugin. All work is lost on slides that you don’t want to show anymore.
I guess I could copy them into an “archive” slide, but that’s a bit clunky.
Forum: Plugins
In reply to: [Store Locator Plus?] Missing stores in adminNo, unfortunately not. I probably imported the records several years ago, using a CSV import tool. Not sure though. There are no spaces at the beginning or end of the title.
Forum: Plugins
In reply to: [Store Locator Plus?] Missing stores in adminPlease re-read my OP again.
The problem is that listings are completely missing from Locations.
I can see them when I sort backwards. However, if I browse through listings with reverse sorting, there are others that are missing. Clearly there’s a bug which omits some locations. Unless I debug the code, it’s not clear what is causing it.
It has nothing to do with screen options.
Forum: Plugins
In reply to: [Store Locator Plus?] Pagination in admin“dude” isn’t gender-specific these days.
Anyway, yes, I hit apply. I know how to use the screen options, but it had no effect. It’s a bug. If I change it to list 200, the screen options stick at 50 on your Locations page. I had my designer who accesses the site remotely try it and got the same result. The same does not happen on the pages and posts lists, but only on your plugin.
Forum: Plugins
In reply to: [Store Locator Plus?] Pagination in adminDude, the forum here is:
Support ? Plugin: Store Locator Plus? for WordPressIf you need it somewhere else, you should submit your own bug report for your plugin.
Alright thanks. It works. I just expected anything higher than a Revisor to use the feature. I have to log in as a Revisor and not a Super Admin to access the features. Seems to work the way we want it.
Forum: Plugins
In reply to: [Focus - Featured Posts Widget & Shortcode] Featured image not displayingIt’s because there’s no filter defined for ‘focuswp_thumb_size’ from functions.shortcodes.php, line 177.
So I changed the code for the slide_image function to:
function slide_image( $array ){ if( isset( $array['type'] ) && 'featured--on' == $array['type'] ){ if( has_post_thumbnail( $array['item']->ID ) ){ echo '<a href="'. get_permalink( $array['item'] ) .'" />'; echo get_the_post_thumbnail( $array['item']->ID); echo '</a>'; }else{ return false; } }else{ return false; } }
Please add the filter to your next release so that it fixes this issue.
Forum: Fixing WordPress
In reply to: Changing the post preview linkOk, I’ve figured this out:
RewriteCond %{QUERY_STRING} page_id=(.*)&preview=true
RewriteRule (.*) /index.php?page_id=%1 [R=301,L]Forum: Fixing WordPress
In reply to: Changing the post preview linkThis is the default .htaccess code for WordPress. This works for everything else, but it’s just that preview link which doesn’t have index.php at the end of it.