msenate
Forum Replies Created
-
After clicking out, I was sent to 3 ajax-loaded “pages” ahead of where I clicked (/page/7/ instead of /page/4/). This is an issue, it should either bring me back to the post I clicked, or to the top of the page.
Without clicking out, when I use “back” after scrolling, it cycles through the pagination urls, but they get rewritten, I think because my position is far enough down the page to trigger another infinite scroll request for more posts. So, like this:
mydomain.com/ (scrolling)
mydomain.com/page/2/ (scrolling)
mydomain.com/page/3/ (scrolling)
mydomain.com/page/4/
(back-button)
mydomain.com/page/3/ but then immediately loads & rewrites:
mydomain.com/page/4/
(back-button)
mydomain.com/page/2/ but then immediately loads & rewrites:
mydomain.com/page/3/This second issue should also be avoided, at least pausing new loads until additional scroll or w/e.
Fixing both would be excellent for overall user experience, folks use the back button!
Forum: Plugins
In reply to: [Multi Twitter Stream] Bugs when using the "Search Terms" optionsokay, I adopted Roger’s work and applied all my patches. Took a bit of elbow grease, but everything is looking great–all the bells and whistles:
Forum: Plugins
In reply to: [Multi Twitter Stream] Bugs when using the "Search Terms" optionsI tried these fixes, the plugin caused the page to hang. Unable to debug as of yet.
Anyone get this working?
Forum: Plugins
In reply to: [MediaElement.js - HTML5 Video & Audio Player] Audio, but no videoSame issue here, I’m viewing in Firefox and Chromium (latest versions) on Ubuntu 12.04.
Hoping there’s a way to use this plugin until WP 3.6 comes out!
Excellent, Ikraav, I haven’t had time to jump back into this–but it would be very handy.
Blackbam, any possibility of revisiting this for multisite compatibility? Or any insight on network search queries?
Forum: Themes and Templates
In reply to: [Hum] Header (logo) and menu IE7 layoutI grabbed the styleIE7 sheet I made (step 2) and threw it here: https://gist.github.com/msenateatplos/5315300
Forum: Themes and Templates
In reply to: [Hum] Header (logo) and menu IE7 layoutThis solution works, but I agree it’s unclear.
- copy all the style declarations from the
* RESPONSIVE STRUCTURE
section ofhum/style.css
- paste those styles into
hum/styleIE7.css
but remove each@media (...) {
line and their closing braces}
since we don’t need them (there should be three I believe). - copy
twentyeleven/header.php
tohum/header.php
- In
hum/header.php
add the following lines (between the<head>
and</head>
tags, maybe near another<link rel="stylesheet"...
tag):<!--[if IE6 | IE 7]> <link rel="stylesheet" type="text/css" media="all" href="https://localhost/wp-content/themes/hum/styleIE7.css" /> <![endif]-->
Forum: Themes and Templates
In reply to: [Hum] IE7Thanks, this fix worked for me too, though I found IE6 looked wonky too, so I threw it into the mix as well:
<!--[if IE6 | IE 7]> <link rel="stylesheet" type="text/css" media="all" href="https://localhost/wp-content/themes/hum/styleIE7.css" /> <![endif]-->
Forum: Plugins
In reply to: [Multi Twitter Stream] Only Twitter Icon displaying not tweets@zackcello – I made another post about why you may have a problem, let’s follow up on that thread.
@taylor – Actually, I need the functionality in this plugin for work too, and I think it should be replaced, and there is demand: https://www.ads-software.com/support/topic/possible-fix-to-php-error?replies=9#post-4016166
I’ll set up a flattr or donate account and post here–what’s your timeframe?Forum: Plugins
In reply to: [Multi Twitter Stream] possible fix to PHP errorIt’s unclear whether the way this plugin was initially written will be affected by the api changes. On the surface, no requests are made to the API, but it seemed to me like Twitter was tracking requests as though they were API calls (you can ask for that data from a separate API call). With the move from Twitter to “all JSON” with “no xml” it’s possible this plugin will be adversely affected.
At this point, I think there’s enough need–and it makes enough sense–to re-write the plugin, and maybe save some of the logic and such, but overhaul to include:
- Twitter API Oauth
- JSON parsing instead of XML
- Expose a few more configuration options (e.g. mixing the tweets up?)
- Better caching for more up-to-date tweets w/o going over limits
Forum: Plugins
In reply to: [Multi Twitter Stream] Please fix!I actually substantially changed the plugin such that you are able to have multiple instances of the twitter widget across your site, rather than just one. However, that requires that you scrap the old widget item you had, and create a new one by dragging over the “Multi Twitter” widget from the left hand side to your desired widget area from the widgets menu. That may have been the problem–if not:
What version of WP are you running?
Can you turn on Debugging in wp-config.php? If so, what does it say?
I’m running 3.5.1 and have no issues.
Forum: Plugins
In reply to: [Multi Twitter Stream] Please fix!Updated, try this again: https://github.com/msenateatplos/multi-twitter-widget
Forum: Plugins
In reply to: [Multi Twitter Stream] possible fix to PHP errorForum: Plugins
In reply to: [Multi Twitter Stream] possible fix to PHP errorI had a hell of a time debugging this, try replacing the https:// with https:// I believe twitter did a redirect that curl doesn’t like.
Will post my updates on github soon.
- copy all the style declarations from the