Frits1980
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] UBL invoiceHi Ewout,
I’m also interested in UBL functionality. Do you have some new information about a possible ETA?
Thank you very much.
Thank you. I’ve send you the information.
Again, did clean install with newest versions. It’s not working. Also I choose “thumbnail” as image size and that is also not working. It’s a 50% / 50% column view with the sample text left and the slider to the right. Also not working.
If you contact me via email (frits [at] garrer [dot] nl) I can send you login information for the test site.
Just updated my setup from 2.2.1 to 2.3 But it’s still missing the owl slider library JS file. So the slider is still shown as a column with a lot of pictures underneath each other.
Is there a special Theme I should use for KC? Instead of twentyXXXX?
Make a plugin with the following:
Make sure to change the “your custom post type name” in this with your own data.
<?php /* Plugin Name: Thumbnails Plugin URI: Description: Custom plugin made for Latravia.com Author: Frits Garrer Version: 1.0 Author URI: */ if ( !function_exists('fb_AddThumbColumn') && function_exists('add_theme_support') ) { // for post and page add_theme_support('post-thumbnails', array( 'post', 'page', 'your custom post type name' ) ); function fb_AddThumbColumn($cols) { $cols['thumbnail'] = __('Thumbnail'); return $cols; } function fb_AddThumbValue($column_name, $post_id) { $width = (int) 35; $height = (int) 35; if ( 'thumbnail' == $column_name ) { // thumbnail of WP 2.9 $thumbnail_id = get_post_meta( $post_id, '_thumbnail_id', true ); // image from gallery $attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') ); if ($thumbnail_id) $thumb = wp_get_attachment_image( $thumbnail_id, array($width, $height), true ); elseif ($attachments) { foreach ( $attachments as $attachment_id => $attachment ) { $thumb = wp_get_attachment_image( $attachment_id, array($width, $height), true ); } } if ( isset($thumb) && $thumb ) { echo $thumb; } else { echo __('None'); } } } // for posts add_filter( 'manage_posts_columns', 'fb_AddThumbColumn' ); add_action( 'manage_posts_custom_column', 'fb_AddThumbValue', 10, 2 ); // for pages add_filter( 'manage_pages_columns', 'fb_AddThumbColumn' ); add_action( 'manage_pages_custom_column', 'fb_AddThumbValue', 10, 2 ); }
Forum: Alpha/Beta/RC
In reply to: WordPress 3.0 alpha and BuddyPressI see.
I’ll be testing buddypress on WP 3.0 alpha soon. Hope I can help you after that.Forum: Alpha/Beta/RC
In reply to: WordPress 3.0 alpha and BuddyPressbtw, Why first install 2.9.2? Why not download 3.0 alpha and start with that?
If that is not an option, I would check the .htaccess file next. What changes in it when you go from 2.9.2 to 3.0?
Forum: Alpha/Beta/RC
In reply to: WordPress 3.0 alpha and BuddyPressHi Gesdesites,
During the multisite install you were told to make a new directory called blogs.dir in the wp-content directory. This should be the location of every blogs/sites own file. I asume buddypress is looking somewhere in that directory for it’s avatars. Maybe you could check that?
Hope it helps.
Forum: Alpha/Beta/RC
In reply to: undefinedfunction@lokrin2000: please put all your issues in one post instead of 3. It doesn’t solve your issues any faster.
Forum: Alpha/Beta/RC
In reply to: Finally got Super Admin menu – Still have major problems@lokrin2000: please take a look at my reaction on your issues in the other post: link
Forum: Alpha/Beta/RC
In reply to: after enabling multisite, my-sites.php gives empty page@andrea, it worked fine after putting the code in de wp-config file right before the require of the wp-settings.php file.
I expect developers make this just like I used in wordpress on official release. With one push on a button, instead of editing php files…@lokrin2000, I didn’t use admin as first user and still it worked. So I don’t think that could be the reason of your problems. I think you still have the same problems as I had. Because all the functions your wordpress can’t find are located in the ms-functions.php file. Which is called in the wp-settings.php file.
Can you make sure the wp-settings.php file is called after your multisite settings in the wp-config.php file.Forum: Alpha/Beta/RC
In reply to: after enabling multisite, my-sites.php gives empty pageOk. Dived into the code and found the solution to this problem.
When you edit the wp-config.php file to put in the code for the multisite, make shure you add those lines before these lines:
/** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');
Otherwise it won’t work due to missing ms-functions.php file.
Forum: Alpha/Beta/RC
In reply to: after enabling multisite, my-sites.php gives empty pageHi MichaelH,
Followed the whole tut step by step, just to be shure I didn’t screw up the first time… But still nothing.
Other thing I came up with. At the end of the tut Andrea I talking about a menu item called: “Super admin”
I only get “My sites” as a child item of the dashboard.
When I press that I still get the empty page…I also found out that the appearances page is screwed after doing this.
As seen in the screendump: ScreendumpThank you for your help.