Eric Potratz
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlySorry, what does the width: auto; do?
I will see what I can do with the wishlist!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyAlso, I was trying to donate $25 but it requires setting up a paypal account! I’m not able to do this for a number of reasons, so if you can accept CC without requiring a Paypal account I’d be glad to donate.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyOk, well I’m getting the columns to stay at a minimum of 165px, and widen evenly on larger screens with the below Custom CSS code –
.tablepress-id-7 td { width: 220px; min-width: 165px; }
With this code, the column widths will widen over 220px on larger screens but they stay proportionately the same size. (rather than longer content columns growing more) I’m not sure why it works, but it does!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyInteresting, it looks like that Custom CSS sets a minimum width at 200px for all the columns. I guess that works.
Just in case I need to make a single column have a set width, would I do that in Custom CSS or on the page?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyHere is the full link – https://blog.botanicalcraft.com/vitamin-side-effects-extractions-vs-synthetics-comparison-chart/
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyAlso, I added the <div> and custom css I’m not able to get any scrolling from side-to-side. (the column width for all 3 columns is 600px)
You can see table 7 here – https://blog.botanicalcraft.com/?p=164
pass – 1234Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsive Tables – Scroll OnlyWhen using this CSS scrolling, how do I code a minimum width for the columns?
For example, I want the table to take up the full width of the page on larger screens, but maintain a minimum width 200px for all 3 columns on mobile (with CSS scrolling).
Forum: Plugins
In reply to: [CM Tooltip Glossary] Is the tooltip content indexed by search engines?What is the excerpt? Is there more information on this somewhere?
Thanks.
Forum: Plugins
In reply to: [WordPress Charts] Is there a way to do a stacked bar graph?Yeah, this would be good to know.
Forum: Plugins
In reply to: [Reduce Bounce Rate] How to change the code to fire every 30 seconds?Thanks for the reply.
I seem to have gotten it to work with the below code. I really just needed to see if readers where on the page for longer than 30 seconds. The 10 second events was overwhelming my event report. I couldn’t get any good data out of it in the events section.
Although its not really the plugin’s intended purpose, its been s great starting point!
<!--Begin Real Time on Site and Bounce Rate --> <script> var _gaq = _gaq || []; (function (tos) { window.total_time = 0; window.setInterval(function () { total_time += 30; tos = (function (t) { return t[0] == 30 ? (parseInt(t[1]) + 1) + ':00' : (t[1] || '0') + ':' + (parseInt(t[0]) + 30); })(tos.split(':').reverse()); if (window.total_time <= 30) { window.pageTracker ? pageTracker._trackEvent('reading_blog', 'Log', '30+_second_blog_reading') : _gaq.push(['_trackEvent', 'reading_blog', 'Log', '30+_second_blog_reading']); } }, 30000); })('00'); </script> <!--End Real Time on Site and Bounce Rate -->
Forum: Plugins
In reply to: [Reduce Bounce Rate] Increase in Google Analytics Page ViewsOkoth1,
I’m getting a syntax error on line 15 with that above code you posted
(<script type="text/javascript">
I tried putting it into thereduce-bounce-rate/reduce_bounce_rate.php
Wrong place?