mirko.menegazzo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images no longer crop since upgrade to 3.3.1I have this problem too! I have tried everything but I gave up and now I crop the images before uploading…not the best solution though
I also tried on a vanilla installation without any luck…
Thank you!!
Oh thanks! I must have overlooked that!
Here we go Link
Forum: Fixing WordPress
In reply to: Move and rename "Featured Image" boxThis is the full code, in my functions.php
//Use "Featured Image" box as a custom box function customposttype_image_box() { remove_meta_box('postimagediv', 'au-portfolio', 'side'); remove_meta_box('postimagediv', 'au-gallery', 'side'); add_meta_box('galleryimagediv', __('Full Size Image. Ratio 4:3, minimum size 800 x 600 pixels.'), 'post_thumbnail_meta_box', 'au-gallery', 'normal', 'low'); add_meta_box('postimagediv', __('Video Thumbnail - 100 X 60 pixels - Bigger images will be cropped automatically.'), 'post_thumbnail_meta_box', 'au-portfolio', 'normal', 'low'); } add_action('do_meta_boxes', 'customposttype_image_box');
Forum: Fixing WordPress
In reply to: How to add custom post types and custom write fields…Do you mean something like this?
It is what I did for a webfolio site.
You can create the fields with this plugin, if you do not want to do a lot of coding by yourself.
You can also add some custom taxonomies to it with this plugin
Eventually you might have a look at the plugin files to see how the code works
Forum: Plugins
In reply to: List post categories as dropdown in metaboxI would like to show the tags in a drop down menu…
Forum: Themes and Templates
In reply to: Custom taxonomies are not saved when 'hierarchical' => falseI figured it out.
The “Choose from most used tags” does not display a list of tags, but only the most used or those which has been used at least once.Is there a way to override this behaviour from functions.php??
Otherwise is there a way to remove the “parenting” feature if I use a custom category (with
hierarchical => true;
) instead of tags?Thank you
Forum: Plugins
In reply to: change default display-nameWell, if someone makes a plug in for it and who is using the plug in is willing to make a donation, there is nothing wrong….
Yeah…this is what I did eventually ??
Forum: Themes and Templates
In reply to: Drop down menu on Thematic child themeI figured it out!
It was a CSS problem with some conflicting “overflow:hidden” properties in my CSS file.
Forum: Plugins
In reply to: How to move Featured Image box from side to main columnThanks, very very useful!
Forum: Fixing WordPress
In reply to: Move and rename "Featured Image" boxI figured it out!
My post type is called ‘au-portfolio’, then I used this in my function.php:
function customposttype_image_box() { remove_meta_box('postimagediv', 'au-portfolio', 'side'); add_meta_box('postimagediv', __('Video Thumbnail - 100 X 60 pixels - Bigger images will be cropped automatically.'), 'post_thumbnail_meta_box', 'au-portfolio', 'normal', 'low'); }
Presto!
Forum: Themes and Templates
In reply to: Drop down menu on Thematic child themeThe Thematic forum has got no activity at all…I posted the same question some time ago but I did not get any reply.
The guide does not say anything about it either. I am kinda stuck right now
Forum: Plugins
In reply to: change default display-nameWell…I was about to ask the same thing…I would like to have the full name both for posts and comments.
Which files are we supposed to modify?
Thank you