Amit
Forum Replies Created
-
Amazing! works great!
thanks!Hi, thanks for the fast response.
This is ‘not that of a concern’ (ie. I can live with that) because usually pages will be preset for the user, or in case not, a user-manual can always include ‘use X page template, save your page to enable all boxes.. and continue editing’, at least that’s the case with WPAlchemy (linked above).
Thanks again!
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] I really can't get this plugin to workThat’s my solution also..
Regrading the output folder, I think oncletom has a point regarding the folder permissions on the server and where to write files to, but what you can do is after finishing the development on the site is just copy the parsed file, move it into your theme and just include it as any other css file the normal way.Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] I really can't get this plugin to workhey Bento, this worked for me, note that its using the bootstrap/embed and not as a plugin.
1. put bootstrap-for-theme.php inside your theme folder.
2. put the lib (comes inside the plugin) folder inside your theme folder also.
3. create a style.less file inside your theme’s folder.
4. paste this in your theme’s functions.php file:require dirname( __FILE__ ) . '/bootstrap-for-theme.php'; $WPLessPlugin -> dispatch( ); function theme_wp_hook( ) { wp_enqueue_style( 'ID-FOR-FILE', get_template_directory_uri( ) . '/style.less', array( ), false, 'screen,projection' ); } add_action( 'wp', 'theme_wp_hook' );
note that the only thing you can change is the ID-FOR-FILE, it’s an arbitrary name/identifier, if you leave it as is it will work the same.
Hope that helps.
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] I really can't get this plugin to workbump?
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] I really can't get this plugin to workI’m in the same problem.. it doesn’t look like it compiles/renders the .less file at all..
not much, i had 2 updates, yours and akismet, did them both automatically (checkboxes and bulk update) on the updates screen (the one under dashboard).
I’m running 3.0.5 on dreamhost, my own theme and the following plugins:
1. admin post navigation.
2. disqus.
3. geolocation.
4. google xml sitemaps.
5. gravity forms.
6. gravity forms-mailchimp.
7. wordpress seo (yours).let me know if i can give u more details. the site in question is dondeenpalermo.com.ar.
beside that the plugin is really cool, thanks!
pd. I’d love to have some default settings provided by you when the plugin gets activated, since there are too many items to consider.. thanks again!
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] upgrade breaks less filebump
Forum: Alpha/Beta/RC
In reply to: "Blog pages show at most" affects admin screensfound the problem, was related to some code I wrote and not 3.1 itself.
see screenshot here https://dl.dropbox.com/u/6112260/screenshots/Screen%20shot%202010-12-30%20at%209.28.19%20AM.png
I was looking through your code to see if you set it somewhere but couldn’t find anything.. this is tested on 3.1-rc1 safari 5 on osx.
have u got a rough estimation for the release of 0.6?
happy holidays!
I managed it in a workaround for now:
class changes:
starting at line 54
public function register($args = array()) { $defaults = array( 'label' => null, 'id' => null, 'post_type' => 'post', 'priority' => 'low', 'new_width' => null, //<=ADDED THAT 'new_height' => null //<=ADDED THAT ); $args = wp_parse_args($args, $defaults);
then at line 241 (last array arguments changed)
$thumbnail_html = wp_get_attachment_image($thumbnail_id, array($this->new_width, $this->new_height));
and the just instantiate it like that:
new MultiPostThumbnails( array( 'label' => 'Athlete Thumbnail Image', 'id' => 'id_athlete_thumb', 'post_type' => 'my_type', 'new_width' => 138, //<=ADDED THAT 'new_height' => 174 //<=ADDED THAT ));
fixed. thanks for the fast response!
Forum: Fixing WordPress
In reply to: videopress 1.2- set width and height through filterbump
Forum: Hacks
In reply to: custom rewrite rules for custom post typebetzster: doesn’t work, tried it already.
Forum: Hacks
In reply to: Multiple "Custom Background"sbump?