Michael
Forum Replies Created
-
This worked. Thank you.
Forum: Plugins
In reply to: [Tools for Twitter] Account page emptysolved it. Didn’t pay attention to setting up account first in settings.
check you paypal. just sent.
cyaWell it saved me several hours of work so thank you again. Time to buy you some more coffee.
Got it. I did not see this in the list of extensions at http://tablepress.org/extensions/
Did you just write this?Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Reset TableID incrementing to 1It is resolved. Thanks again.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Reset TableID incrementing to 1Resolved. Got it thanks!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Reset TableID incrementing to 1looking at /wp-admin/options.php does not show tablepress_tables. Is it possible that my theme is interceding and putting this somewhere else?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] importing without .csv extendionI am new to OS X and since other file extensions were showing such as .jpeg and .pdf etc I assumed that it would show all file extensions. Especially since after renaming them from tabletitle.csv to tabletitle it appeared to have removed the extension.
Apparently not. After figuring out how to show ALL extensions I could see that the .csv was still part of the file name. I have resolved this issue.
Thanks for the heads up. Fixed.
Regards,
MikeForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] $ as text in cellWow. Now that is support. I just sent you $20.00 Keep up the great work.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] $ as text in cellI am always up for a challenge. So time to start learning! Thanks.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] shortcode used in cellThank you for that reference. I will explore that option. Thanks for taking time out of your life to continue to support this.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] shortcode used in cellUnderstood. Using the extension I get the formula to work.
Is there a way to add some formatting to the cell for example if I wanted a $ in front of the resulting number?
Using your more simple suggestion, can a cell reference a cell in another table? The goal here being to be able to edit a value either in a shortcode or in a cell that is then referenced across multiple tables on multiple pages.
Forum: Plugins
In reply to: [Code Snippets] shortcode linebreakFixed thank you!
Forum: Plugins
In reply to: [Code Snippets] shortcode linebreakI place the following code in the functions.php
function TuitionRateShortcode() {
return ‘<p>$2.00</p>’;
}
add_shortcode(‘tuitionrate’, ‘TuitionRateShortcode’);Here is the shortcode in use:
The current tuition rate is [tuitionrate]. This rate may change from year to year.
Here is what I get:
The current tuition rate is
$2.00
. This rate may change from year to year.