webteilchen
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Excel CMS] PHP ErrorPlease try to upload an .xlsx file. Or maybe you have to change chmod to 755 in your uploads folder, maybe the file could not be saved to the disk.
Forum: Plugins
In reply to: [WP Excel CMS] Date FormatI only can suggest to put the date coulumn in a “string” format in excel.
Forum: Plugins
In reply to: [WP Excel CMS] Error on page instead of showing content.Please try to re upload the file and be sure that it is in the correct file format XLSX.
Forum: Plugins
In reply to: [WP Excel CMS] multiple data inputYou could put every item in an array an then check if the item is in the array if yes: show it, else: skip it.
<?php $shown = array(); ?> <select name="list"> <?php foreach ($data as $entry): ?> <?php if(in_array($shown)): ?> <option><?php echo $entry[1]; ?></option> <?php $shown[] = $entry[1]; ?> <?php endif; ?> <?php endforeach; ?> </select>I hope that helps.
Forum: Plugins
In reply to: [WP Excel CMS] Format only first cell in each line?Hi Asle,
you can do that with the css selector nth-child.
Have a look here how it works:
http://css-tricks.com/how-nth-child-works/Greetings
Forum: Plugins
In reply to: [WP Excel CMS] How do I get links in the spreadsheet to link?Hi kimcohen!
You only have to these steps:
1. Install the Plugin
2. Upload .XLSX File
3. Insert Shortcode: [wp_excel_cms name=”your-xlsx-name“]Best Regards
Forum: Plugins
In reply to: [WP Excel CMS] Styling outputYou can do that with css when you use the css “.wp_excel_cms_table” class
.wp_excel_cms_table td{
font-weight:bold;
}Forum: Plugins
In reply to: [WP Excel CMS] Regularly updated contentNormaly, you should get an upload panel, when you click on the “edit” button. Can you please press F12 an look in the console, if there is an javascript error.
Maybe some other plugins are producing this. You can try to deactivate other plugins an try it again.
Forum: Plugins
In reply to: [WP Excel CMS] How do I get links in the spreadsheet to link?You can use HTML in your cells like
Forum: Plugins
In reply to: [WP Excel CMS] Can't get in to workI’ll fix this soon.
Forum: Plugins
In reply to: [WP Excel CMS] Just came up blankHi Ivan,
I got this issue. It seems that older excel versions make problems. Please try to convert it to xlsx format.
I will try to support old xls files. It needs a bit time to make this happen.
Best Regards
VincentForum: Plugins
In reply to: [WP Excel CMS] Can't get in to workPlease try the xlsx format.
Forum: Plugins
In reply to: [WP Excel CMS] Can't get in to workSend it to info AT Webteilchen.de
Forum: Plugins
In reply to: [WP Excel CMS] Can't get in to workCan you upload or send me this excel file, then I can have a look on it and fix it. Normally the older and newest versions are making no problems.
Do you get an error?
Forum: Plugins
In reply to: [WP Excel CMS] Can't get in to workNew Version 1.0.2 is online with shortcode support.