binaryboy
Forum Replies Created
-
Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] Duplicate MailsI just updated both the quiz plugin and the yoast plugin and tried again and it still registers two entries. Yes the site is live. I have a test quiz at https://savinospizza.com/quiztesting
Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] Duplicate MailsGood idea. We have 16 plugins. Turns out disabling WordPress SEO by Yoast solves the problem. It must be reloading the page or something.
Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] Duplicate MailsWe’ve been seeing this problem as well for a while now. The problem is deeper than duplicate emails. It’s also creating a duplicate result for every entry. Running WordPress Quiz Master Next 4.1.0 and WordPress 4.1.1–en however this has been going on since 3.x of both the plugin and WordPress.
Thanks for adding hooks! You’ve saved me a lot of headaches from overwritten changes.
Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] PHP Code for QuizIt sounds like you’re looking for do_shortcode(), which will process all shortcodes in a string, or would that not work in this case? See do_shortcode
Please add urlencoded result %variables% or at least a result id that can be placed in a link. We are sending winners to a dynamically generated coupon and this would be very helpful. Right now I have to manually edit the quiz code after each release to add a %USER_NAME_URL% variable.
Alternatively, or in addition to that idea, please make use of the apply_filters function so that other plugins can modify the results variables. I suggest passing the raw page/email template along with an array of user information such as array(‘user_name’=>$mlw_user_name, etc…);
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenGreat!
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenCan you send me one of the .js files (preferably the uncompressed -dev one) so I can see how it differs from my working copy? support at binaryboy dot com I tested my copy with a Surface RT and it works ok. You can try it at https://binaryboy.com/wp and tap the Support menu to trigger the dropdown.
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenThe plugin works after applying the two changes from https://tom-mcgee.com/blog/archives/6205 You need to replace one line and add one line in one of the .js files. I can send you the modified .js if you like so you can just paste it in the Editor in the admin area if you like. You can contact me at support at binaryboy dot com
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenMost tablets don’t have hover. Some will inject a fake hover event but the click event that immediately follows will load a different page. The Black Studio plugin with the fix is probably the closest you can get to the timer idea, although I haven’t tried it yet.
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenStumbled onto a plugin that supports touch screen by allowing taps to open menus: Black Studio Touch Dropdown Menu but it apparently doesn’t work without changes for Windows 8.
I’ve been experimenting with the secondary menu bar idea, which is probably what I’ll go with when I get my site converted over to WordPress.
Forum: Themes and Templates
In reply to: Windows 8 touch Twenty ThirteenGood question. I’ve just run into this myself. A (possibly) quick and (definitely) dirty workaround might be to manually put a row of the submenu links across the top of each page individually so they’re always visible. This would require each page and probably some css to be edited but no code changes to the menu.
This could probably be automated in PHP as well but I’m not familiar with the menu structure code yet.
Forum: Fixing WordPress
In reply to: WordPress adding slashes?WordPress adds slashes even if magic quotes are off. And yes, it’s annoying and stupid. There’s a similar question here.