nowton
Forum Replies Created
-
Any updates on this?
English.
Yep.
Yes, it does so as well. I also noticed I cannot set a default country in EM settings. That is, I can set it, but the setting does not stick.
WordPress export (WXR)
<div class="h-event"> <time>#_EVENTDATES | #_EVENTTIMES</time> <h1> #_EVENTNAME</h1> {has_location}<span class="p-location">#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</span>{/has_location} <p class="p-summary"> #_EVENTEXCERPT</p> </div>Any updates on this?
Forum: Plugins
In reply to: [RSS Feed Widget] Duplicates article in feed, gets more than configSorry, this was over 10 months ago. We’ve moved on, and wouldn’t even know on what site this was an issue.
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Dropdown empty on adding a new galleryAnother fine example of quality coding by OnTheGo Systems, it is then ;-( (Somehow I’m not surprised). Thanks anyway, let’s keep each other posted on any progress made.
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Dropdown empty on adding a new galleryDisabling Types is not an option. I have asked over there and will ask again over here. Any workarounds available?
Any workarounds available?
Forum: Plugins
In reply to: [NextCellent Gallery - NextGEN Legacy] Dropdown empty on adding a new galleryThis is my console log when replaying
Deprecated TinyMCE API call: windowManager.createInstance(..) Uncaught ReferenceError: pagenow is not definedForum: Plugins
In reply to: [BJ Lazy Load] Enable Lazy Load Only for DesktopDisable the plugin, then add this to functions
add_action('after_setup_theme', 'my_load_plugin'); function my_load_plugin() { if (!is_mobile_device()){ include_once(bloginfo('home').'wp-content/plugins/bj-lazy-load/bj-lazy-load.php'); } }Assuming you’re doing RESS using https://github.com/nowton/WordPress/blob/master/mobile-detection.php for example. HT https://gist.github.com/alexkingorg/3060451
Latest of everything; we’re like that. WPML 3.1.9.6, EM 5.5.6
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive table does nothingOops, as a matter of fact I found
add_filter( 'tablepress_use_default_css', '__return_false' );because we need our own css. Uncommenting fixed the display. How can I combine those 2 requirements?