Deluxe Extensions
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot update Posts/PagesSame here. The page just shows that it is loading. But after a while the browser says that the page does not send any contet and that the connection is there for disconnected…
Forum: Fixing WordPress
In reply to: Posting videos onto websiteThe easiest way is to install a plugin. Either you just upload the videos to youtube and then put them into your blog using video quicktags.
Another possibility would be to host the videos elsewhere – if you have a lot you want to host.
Forum: Plugins
In reply to: Best WordPress Review Plugin?I have found what I was looking for: wordpress review plugins
Forum: Plugins
In reply to: Localization (state/city/zip) Plugin or CodeCant find a contact link? Hmmmm… Then I need to make it more user friendly I guess.
Anyways, here the contact form: https://netzeroenergysolutions.net/contact
I will get the email ??
Forum: Fixing WordPress
In reply to: Shortcode for post titleOh, and I would need the same for my blogs title and blogline…
Forum: Plugins
In reply to: Admin: Select all categoriesActually I have ??
It adds ajax functionality to your admin section. So there is a small icon on the post in the post lists to manage the categories. Click on it and it lets you choose alle or no categories.
Forum: Fixing WordPress
In reply to: Bulk Category UploadI solved this by just using wp import / export function: Had a look at how the categories are exported. Then I used word’s letter function to create a file with all my categories. Copy & Pasted this into the file and imported it. Works very nice.
I suggest uploading the parent cats first, then their children, then their children, etc
Forum: Plugins
In reply to: Localization (state/city/zip) Plugin or CodeI almost have a solution.
Contact me through https://netzeroenergysolutions.net
Forum: Fixing WordPress
In reply to: Bulk Category UploadHere the code I used:
<?php /* Plugin Name: City Importer Plugin URI: Description: Imports csv-file with states/counties/cities as categories Version: 0.1 Author: MichaelH & HendrikH Author URI: //import categories from csv //sample data for $import_file category,category parent,slug,description //Parent categories must be in file before child categories // //"county1","" //"county2","" //"city1","county1" //"city2","county2" //"city3","county1" //"county3","" //"County Cork","","county cork","county cork descripiton of this cat" //"County Morefields","","","This is description of county morefields" function import_cats(); { require_once(ABSPATH . "wp-admin/includes/admin.php"); $import_file = 'cat.csv'; $import = array(); $fh = fopen($import_file,'r'); while($t = fgetcsv($fh)) { $import[] = $t; } foreach ($import as $importcat) { $numfields=count($importcat); $cat_ID = get_cat_ID($importcat[0]); $cat_name = $importcat[0]; $category_parent = get_cat_ID($importcat[1]); if ($numfields > 2) $category_nicename = sanitize_title($importcat[2]); if ($numfields > 3) $category_description = $importcat[3]; $args = compact('cat_ID', 'cat_name', 'category_description', 'category_nicename', 'category_parent'); wp_insert_category($args); } register_activation_hook( __FILE__, 'import_cats' ); } ?>
My csv file is placed directly in the plugin folder.
Forum: Fixing WordPress
In reply to: Bulk Category UploadThanks. That is exactly what I was looking for. Unfortunately, it does not work.
I created a small plugin that executes his code uppon activation. However, no cats get imported…
Any other suggestions?
BTW, if you want to have several columns with the checkboxes just create a table in the contact form and then split your check box options into different form fields.
You gotta give them different names.
In the mail you just put down all form fields and separate them with commas.
Nice. Works perfectly!
Thanks for sharing
Good question. I want to do the same.
Anyone know?
Forum: Fixing WordPress
In reply to: Using post meta in wp_nav_menuI would also be very interested in such a solution.
Somebody?