Dario Ferrer
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Smart Image II] Determine if custom size exists?Hi mmcginnis,
The next version will bring this feature very improved. You’ll love it ??
As you say, we can call the “custom2” size, but still lacks the # setting. So the query implies a little complex array. This is the code i’m using:
if (class_exists('max_image_size_control')) { $wpsi_misc = get_option('max_image_size_control_data'); $wpsi_misc = $wpsi_misc['max_image_size']; foreach($wpsi_misc as $key => $misc) { if($misc['everypost']) $count += $misc['everypost']; for ( $i = 0; $i <= count($key); $i++ ) { if($misc['custom'][$i]['custom_size_w'] and $count == 1) $formulario .= ' <option value="custom'. $i .'">'.__('Setting', 'wp-smart-image').' #'. $key .' » Custom'.$i.': '.$misc['custom'][$i]['custom_size_w'].' x '.$misc['custom'][$i]['custom_size_h'].'</option>'; } } }
Forum: Everything else WordPress
In reply to: WP SVN issue. Why my screenshots are not updated?Thanks for staying tuned cnorris23. ??
Well, this is embarrassing. I just updated the plugin according this conversation and the old screenshots still remain:
https://www.ads-software.com/extend/plugins/wp-smart-image-ii/screenshots/
This is the Trunk. The Tags also has been updated.
Forum: Plugins
In reply to: [Plugin: WP Smart Image II] Why to wpsi into my templat?Hi,
This plugin is involved into the design/layout work. The tags must to be placed in the file system. Please read the documentation.
Forum: Everything else WordPress
In reply to: WP SVN issue. Why my screenshots are not updated?Oh, thank you cnorris23. Yes, this must to be the issue. Kind regards.
Forum: Everything else WordPress
In reply to: WP SVN issue. Why my screenshots are not updated?Thank you cnorris23,
You should add a folder, ‘0.1.4,’ to the tags folder, and then copy the trunk files to that folder. You also need to give things some time to update.
Tag folder is not to store previous versions?
www.ads-software.com employs caching so that the site runs faster, so it may take a little bit for those files to update.
You’re right, but it is around 15 min.. In my case, those old screenshots still remain. In fact, is the first time this happens to me.
Forum: Plugins
In reply to: wp-smart-image ingoring parameters…Hello geektown,
What you described is part of a -recent known- bug of this plugin. Whiting few days a new version will be released, with all bugfixed and tons of improvements (it rocks!). Please stay tuned.
Forum: Developing with WordPress
In reply to: WP_Query problem (this must be possible…)Roelani try this. Let’s fix the same initial example (Note the brackets on $do_no_duplicate):
<?php $featured = new WP_Query('meta_key=featured&meta_value=on'); while($featured -> have_posts()) : $featured -> the_post(); $do_not_duplicate[] = $post->ID; ?> ...
The second loop will use this variable in the “posts_not_in” parameter:
<?php $other = new WP_Query(array( 'post__not_in' => $do_not_duplicate )); while($other -> have_posts()) : $other -> the_post(); $do_not_duplicate_other[] = $post->ID; ?> ...
Suppose you have a third loop which do not show posts from the first and second loops. Note the variable $do_not_show (without brackets!):
<?php $do_not_show = array_merge($do_not_duplicate , $do_not_duplicate_other); $third = new WP_Query(array( 'post__not_in' => $do_not_show )); while($third -> have_posts()) : $third -> the_post(); ?> ...
Forum: Plugins
In reply to: [Plugin: Get the Image] Beware – try othersI just readed this topic. kjetilgf, many plugin developers have been wasted large and useful hours to create and maintain their works. They give us a open/free code to be taken, modified, etc. by us. The support is one of the few things can be used as remuneration source.
Even if X plugin was not documented is right receive a payment for give support (Instead, Get The Image is well documented). This is a free choose by developer, which many of them have this only source of money and they are completely dedicated to work on their plugins.
May be your claim comes from a little confusion. I hope your understanding about this, and please do not draw more comparisons between plugins. It’s fun to develop, share and receive good comments from our work (Does the life has another meaning?), and of course to receive a few coins occasionally. So man, do not take away the fun. ??
Forum: Plugins
In reply to: WP Smart Image functionality for pages instead of posts?Oliver, this issue has been solved on new version of WPSI (0.3.2). Download it and let me know how it works.
Forum: Requests and Feedback
In reply to: [Plugin: Max Image Size Control] Request: New sizesReally?? Hahaha these things happen sometimes.
This plugin rocks man. In fact I’ll do something now. I’ll tell you tomorrow.
Kind regards.
Forum: Plugins
In reply to: [Plugin: WP Smart Image] Works as a thumbnail generator?Hello Kjetil,
You must to place the tag into the loop. See the screenshot #3:
https://s.www.ads-software.com/extend/plugins/wp-smart-image/screenshot-3.png?r=137736
—–
Edited:
Ok I saw your page. The function works, but it don’t act in the posts where you don’t have an image, for example:
<a href="https://www.dolcevita.no/marked/knalltilbud/"><img src="" alt="" title="" /></a>
If you wish to show default images, you must to fill the textfields in your panel. Also there is a way to fill it with default values throught “Add/Restore data” button. If you still having problems let me know.
Forum: Plugins
In reply to: WP Smart Image problem >> Image will not show!I just found this post through Google. :S (tag added already)
What am I doing wrong?
If you don’t show your code, it is very difficult to know what you’re doing wrong.
Forum: Plugins
In reply to: [Plugin: WP Smart Image] Works as a thumbnail generator?Hi Kjetil,
WP Smart Image does what you comment, but generate thumbnails; this part is made by WordPress. I already saw dolcevita.no, that is exactly the work of this plugin ??
Place the code just above the_content and change the parameters as you wish. Your will show the thumbnails.
However, I assume you have been uploaded images through editor (instead -for example- custom field). If this is true, the first image en “gallery” menu will be shown as thumbnail. Clickable thumbs are set as default.
Works like a charm. Since last post I could test the plugin again and again; all fine, at least until I could see.
I also added a note to give attention not to make ID sections blank.
I think this issue can be solved easily including a little js alert (with only “accept” button) if that fields are empty.
Forum: Themes and Templates
In reply to: Changing header image..The Debil, what’s wrong with you? Thecoffeedude has been asked in the correct forum.
Thecoffeedude, make sure you’re pointing your path to the new image. also check your browser cache. Sometimes appears older elements where must to be the recents. In this case press control + F5 to refresh your page retrieving data direct from server, instead from your cache.