physalis
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Post Expirator] Daylight Saving Time problem (?)*Cough* Anyone? Do you all use the delete function and it works as expected?
Forum: Plugins
In reply to: [Plugin: Post Expirator] Daylight Saving Time problem (?)Anyone tried the change-to-draft function, does that work? In my case it doesn’t seem to… though this is what I really need^^.
Forum: Plugins
In reply to: [Plugin: Post Expirator] Daylight Saving Time problem (?)Same here. The config page still shows the wrong date.
Is the plugin actually working, since it seemed to have no effect. May have been a conflict with the time zone stuff…If you’re interested in a temporary solution, this is the way to go:
Open up portfolio_slideshow.php in the correspondent plugin folder, go to line 97 and replace 97-111 with the following code
$(\'#portfolio-slideshow'.$i.'\').after(\'<div id=\"slides1\">\').cycle({ fx: \''. $ps_trans . '\', speed: '. $ps_speed . ', timeout: '. $timeout . ', next: \'.slideshow-nav'.$i.' a.slideshow-next\', startingSlide: index, prev: \'.slideshow-nav'.$i.' a.slideshow-prev\', after: onAfter, pager: \'#slides'.$i.'\', manualTrump: false, cleartypeNoBg: true });Save it, upload it, enjoy (yet unstyled) clickable image numbers. If you don’t like them appear below the images, change the .after in line 97 of the new code to .before – simple as that.
Thanks, Dalton, for your help and support in the meantime ;).Hey there,
since you seem actively monitoring your plugin-related posts, there is hope that I can fetch up on a former post up here and ask you whether it is possible to replace the nav’s prev/next with the actual numbers of the images themselves. Meaning: if you have 4 images, can we have “1 2 3 4” while each number being clickable instead of the current nav bar?
As simple as it seems, your plugin seems exactly what I need once I got this number thing working ;).Thanks in advance 😉
Forum: Plugins
In reply to: creating link to large/medium image while inserting in textIs there an update on this matter? Does anyone know a plugin or something enabling us to choose to link to another image than the full size one?
Forum: Plugins
In reply to: Improved Include Page – displaying teaser of pageSame thing I want, and same thing happening here… not much of an excerpt showing but the full content as well… is there something we didn’t get?!
Forum: Plugins
In reply to: Plugin Upgrade Failing, Cannot Remove Old PluginIs there a simple solution to this “could not remove old plugin” problem? Seems the other ones may be of a different kind, since I am only having the error message above & all other upgrades (i.e. WordPress itself) work fine all the way…
Forum: Plugins
In reply to: Arrays do not work correctly on Widget LogicHi there,
I have the exact same problem. I am combining like the following:
is_page(array(30,20,25,26)) OR in_category(array(1,6,7,8)) OR is_category(array(1,6,7,8))or, but that does not change anything, like:
is_page(array(30,20,25,26)) || in_category(array(1,6,7,8)) || is_category(array(1,6,7,8)), and the same goes for a reduced one like:
is_page(array(30,20,25,26)) || is_category(array(1,6,7,8))or even if I split it up into single categories/pages to avoid arrays.
Any insight on this? Does this happen to others as well? Did bluebird happen to have it solved in some way?I might add up that I use five different widgets, all with different conditions.
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Not showing WYSIWYG (no CSS)Well, for the wp_head thing I don’t know… it is definitely in the header.php. Not too bad since I copied the css into my main file.
Erm, the loop thing… commenting this out does in deed help. I can finally edit the page content and save it accordingly.
Your trick for 1.3 helped as well.
Thanks a bunch!!!
Forum: Plugins
In reply to: [Plugin: Ajax Comment Posting] Initialize correctionHey there,
if I do exactly what you are saying here the plugin refuses to work, it’s just bypassed… are you sure it is working that way 🙂 ? I am a php/jquery noob, if that helps ;)…
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Contact 7 input width in CSS… also, you need to to write 150px for the browser to recognize it is a px size you’re giving.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Contact 7 input width in CSSIt must be ‘input’, not IMput. I styled it with css, no problem at all. Best to put it into the style.css if you didn’t already do that 🙂 .
Forum: Plugins
In reply to: [Plugin: Front-end Editor] Not showing WYSIWYG (no CSS)Well, the wp_head is already included.. so this cannot trick wordpress to forget the css…
Yes, it is a custom loop, looking like this:
<?php // page id 18 will get category ID 6,7,8 posts, page 30 will... etc. if (is_page('18') ) { $cat = array(6,7,8); } elseif ( is_page('30') ) { $cat = 9; } elseif ( is_page('22') ) { $cat = 10; } else { $cat = ''; } $showposts = 2; // -1 shows all posts $do_not_show_stickies = 1; // 0 to show stickies $args=array( 'category__in' => $cat, 'showposts' => $showposts, 'caller_get_posts' => $do_not_show_stickies ); $my_query = new WP_Query($args); ?> <?php if( $my_query->have_posts() ) : ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php //necessary to show the tags global $wp_query; $wp_query->in_the_loop = true; ?>…followed by the specific post appearance with usual parameters (the_permalink, the_time etc.).
My last point was obviously bullshit. I checked again and found out that it integrates images nicely and as it should. Only custom classes from my own css are ignored (so that I see no bg pics etc.).
Thanks for looking into that 😉 .
Forum: Plugins
In reply to: [Plugin: Simple Tags] WP 2.8.4 post tags work – page tags DO NOTSame here, rest assured. Wonder if no-one else is facing these problems here.