samscs
Forum Replies Created
-
If anyone else runs into this, here’s a (horrible) solution if you can’t find something better – add to <head>:
<script> function fix_news_links() { var prev = document.getElementsByClassName('nav-previous'); var next = document.getElementsByClassName('nav-next'); var new_prev = prev[0].innerHTML.replace('">','#news-feed">'); var new_next = next[0].innerHTML.replace('">','#news-feed">'); prev[0].innerHTML = new_prev; next[0].innerHTML = new_next; } </script>
And then add onload=”fix_news_links();” into the <body> tag. Make sure your news feed is in div#news-feed or adjust accordingly. About as elegant as a rhino’s fart but it does the job.
Forum: Plugins
In reply to: Tablepress editing brokenThanks Tobias, it’s working fine now!
Forum: Plugins
In reply to: Tablepress editing brokenAdded error reporting to admin.php and now have something maybe useful:
Warning: require_once(/home/sites/circebeauty.co.uk/public_html/wp-content/plugins/tablepress/views/view-edit.php) [function.require-once]: failed to open stream: No such file or directory in /home/sites/circebeauty.co.uk/public_html/wp-content/plugins/tablepress/classes/class-tablepress.php on line 180
Fatal error: require_once() [function.require]: Failed opening required ‘/home/sites/circebeauty.co.uk/public_html/wp-content/plugins/tablepress/views/view-edit.php’ (include_path=’.:/usr/share/pear5:/usr/share/ZendFramework’) in /home/sites/circebeauty.co.uk/public_html/wp-content/plugins/tablepress/classes/class-tablepress.php on line 180
Cool, will do.
Thanks for the response! That gets the dots up in the slider, but they then conflict with the captions. If the dots could be in the lower right corner (in a way that scales responsively) then I could shorten the captions to be 50-60% of the slider width.
I wasn’t expecting hacky CSS to be required though – I thought that the normal .js versions of these sliders for non-WP sites have options for dots inside / outside the slider?