jdlintz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Make] Can't add links to slideshowI too would like the images within a banner slideshow to be links.
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] No valid archive method found.Ditto for me. Get the error message, but the backup seems to work properly.
Forum: Plugins
In reply to: [WooCommerce] blockUI blockOverlay on Checkout pageSame trouble here.
My console give a 404 error for “https://www.mysite.org/checkout/?wc-ajax=update_order_review”
Is this related?I’m having the same problem, but not with Types plugin. I’ve tried disabling all plugins except Woocommerce, but get the same “…checkout/?wc-ajax=update_order_review” 404 error. Results in bottom 2 sections of checkout form being greyed out with the spinner icon.
I’m working on a dev site actually, so everything’s served up internally which makes me think it’s unrelated to any particular host.
As the previous commenters mentioned, I’ve got the correct time set at Google and at WordPress. When I’m logged into Google and click “more details” it takes me to my own calendar event and all is cool. When not logged into Google, clicking the link gives me the sparse event details window, but the times are listed in GMT.
Googling a bit, I found an old thread that might contain the answer:
https://productforums.google.com/d/msg/calendar/MJ9wC-0Hc1w/8IjYMNgVw2MJSummary: if a user is not logged in to a google account, the event time defaults to UTC since it doesn’t know where the user is located. If you include some time zone information in the url itself (e.g. ctz=America/New_York), the time will show up correctly.
Hopefully you can update your excellent plugin to pull the timezone from the WordPress settings and add it to the URL.
I know this is old and has been marked resolved, but I’m experiencing the same problem described using version 2.2.6. Has the bug crept back in or is it just me?
Forum: Plugins
In reply to: [Infinite Slider] On/Off Switch not workingI am experiencing the same issue. Also, the labels for the radio buttons only have the letter “O” instead of what I assume should be “On” and “Off”. Similarly, the Slider Style drop down options only have “W W B D” instead of…? I’m not sure what. I tried each one, and there does not seem to be any change in the style. Something’s obviously missing for me.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from contentI see on the Plugin Directory, it’s listed as version 0.8.8, but the comments header within the js files still say 0.8.7
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from content@rezon8dev
A quick look this morning at the latest version (0.8.7), shows the same block of code at lines 762-768 in the dev version. Breaks are still being removed from accordion content, but hacking the code and removing the ‘br’ from the find statement seems to work like before.I tested on a clean WordPress install with no other plugins. Not sure what else may be causing your problem.
Forum: Plugins
In reply to: [BackUpWordPress] Backup stopped working with weird error messageI am having this same issue. Should I email you Paul or is there a quick fix?
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from contentAs a follow up…the trouble with doing things my way (renaming the js files) is that I can’t blindly auto-update to the latest version of the plugin when it is released. I have to be more intentional about downloading the plugin and checking if the fix has been made in my dev environment before updating on live sites.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from content@rezon8dev
What I usually do when forced to hack someone else’s dev code, is to rename the files in such a way as to make the plugin use the version I’ve edited rather than the original. So in this case, I renamed ‘wp-ui.js’ to ‘wp-ui-orig.js’ and ‘wp-ui.dev.js’ to ‘wp-ui.js.’ This, of course, makes the dev version be the active included code and that’s where I do my edits. It means I’m using the larger code file that hasn’t been “packed,” but I’m not overly concerned with minimal loading time differentials on most of my projects. I suppose I could re-pack it if it were a concern.The lines in question in the latest version of the plugin are 762-768
Quick hack to fix…
Change line around 700 (of dev version) from
options.autoHeight = this.o.autoHeight ? true : false;
to
options.heightStyle = this.o.autoHeight ? "auto" : "content"Part of the _init of the Accordion.
Oh my yes!!!! Terrible problem. Same issue for me.
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from contentI hacked a bit and found the trouble.
Starting at line 658 (in the dev version)…if ( this.o.wpuiautop ) { $this.find('p, br') .not( this.o.content + ' > br, ' + this.o.content + '.wp-tab-content > p' ) .filter(function() { return( $.trim( $(this).html() ) === '' ); }).remove(); }This seems to find and remove all empty paragraph tags, which is good, since there are always a few strays. But it also removes all break tags! I believe, by their nature, they are always “empty” or “=== ””, so this doesn’t seem like a correct behavior to employ.
My solution was to only find and remove empty paragraphs…
if ( this.o.wpuiautop ) { $this.find('p') .filter(function() { return( $.trim( $(this).html() ) === '' ); }).remove(); }(I also removed the “.not” clause as I couldn’t see that it actually did anything, but I may not have tested enough.)
This has fixed my issue of break tags being removed from Accordion content.