Daiv Mowbray
Forum Replies Created
-
Forum: Plugins
In reply to: [SuperSlider] disabling features since upgrade to WordPress 3.5All superslider plugins use Mootools js framework.
Bajirek – please take you issues to the proper forum, you want this one. Your site is full of Jquery, and from visiting your site, you do not have ss-login activated. Can’t trouble shoot this for you.
Also, you would need to be more specific as to What doesn’t work.
Please be more specific!Forum: Plugins
In reply to: [SuperSlider-Image] Updated for WP 3.5older versions are here: http://wordpress.org/extend/plugins/superslider-image/developers/
What is the error you get?
Did you update the settings options on the back side?Forum: Plugins
In reply to: [SuperSlider] disabling features since upgrade to WordPress 3.5This plugin has been updated to work with WP 3.5
Forum: Plugins
In reply to: [SuperSlider-Media-Pop] iframeSuperslider-media-pop does not launch a pop up of any kind.
Best of luck with what ever you are trying to do.Forum: Plugins
In reply to: [SuperSlider-Media-Pop] iframeHello,
I have no idea what you are asking for.Forum: Plugins
In reply to: [WP eCommerce] server ram usageThanx for the response,
I would be interested to know if my reading of 9+ mega consumption is consistent with other users, with just the basic install and default products.
I commend your transition of the various elements to use WordPress standards. This is very good.I understand that breaking a php project into on demand classes can reduce ram requirements, I’m trying to reduce the usage of my own plugins.
Yes raise memory, full system on this one project is running at 58 mega. A bit much…
Yep, well like I said, new versions coming soon. I’ll post to this thread if I remember.
Hah, and just to confuse the issue.
I use an excerpt plugin which creates a specific image size just for those excerpts. you can set their size and crop and then inserts that image size , or any other image size into every excerpt. And if the post doesn’t have a registered feature image it looks at the first attached image and if still no image it gets a random image from that category. its called superslider-excerpt, adds some funky mootools animation in while its at it, if you want.
I do have a new version coming out soon of all my superslider plugins, still in beta testing for the moment. And as for image control within your post, have a look at superslider-image, you might like it.Forum: Plugins
In reply to: [SuperSlider-Login] Localized versionWell the bar does display, it’s just that the admin bar is on top of the login bar, so adjust your css file, set the #toppanel z-index to 100000 this will place it on top of the admin bar, you may also need to add something like this to .logintab right:200px;
I will adress this with the upcoming new version.Forum: Plugins
In reply to: [SuperSlider-Login] Localized versionwhen the new version is published, you take the file named : superslider-login-es_ES.po and duplicate it naming it superslider-login-LANGUAGE CODE, and put it into the language folder. You then open that file with the application Poedit and enter your translations for each text string in that file. You will need to get the app poedit, it’s free.
New version launch should be soon, I’m busy updating 10 different plugins, lots of work.
Forum: Plugins
In reply to: [Nice PayPal Button Lite] Depricated functionjust ran in to a few more, and ya I know, just deactivate print to screen on my debug, but that’s why I have it on, testing code…
Notice: Undefined index: sku in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 284
Notice: Undefined index: shipping in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 291
Notice: Undefined index: shipping2 in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 298
Notice: Undefined index: tax in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 305
Notice: Undefined index: quantity in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 312
Notice: Undefined index: weight in /wp-content/plugins/nice-paypal-button-lite/nicePayPalButtonLite.php on line 319
Forum: Plugins
In reply to: [SuperSlider-Login] Localized versionHello danicasati,
I’ll be launching an updated version of this plugin within the next few weeks with localization for Spanish, if you need another language you can then make one.I wanted the same so I just removed || is_home() from line 58 of the ataa-widget.php file
since the home page is a page and it does have an author, it works fine for me.Forum: Plugins
In reply to: [Image Feed Widget] Random Images on Image Feed WidgetI wanted the same functionality with this plugin.
To pull just one image from the feed, but randomly select which to display, so I’ve made an adjustment to the plugin.
At like 36 as the script goes to call for the feeds I replaced what was there with the following:// Get a SimplePie feed object from the specified feed source $feedsarray = split(',',$feedslist); $rss = fetch_feed($feedsarray); // Figure out how many total items there are. $maxitems = $rss->get_item_quantity((int)$maxfeeds); // Build an array of all the items, starting with element 0 (first element). // I have set the max number to get as 10 $rss_items = $rss->get_items(0,10); shuffle($rss_items);// shake up the array reset($rss_items); // reset index // now from that 10 items, slice the array down to the maxitems if( (count($rss_items) > $maxitems))$rss_items = array_slice($rss_items, 0, $maxitems);Works for me.
I am having similar issues,
as well, when I turn minify off completely after having it set to on, (and empty the cache) my page is still trying to load the minify css file returning a 404.I think that w3 minify is not ready for prime time, I’ve spent a few hours testing various configurations, auto minify and manual and turned off. Still getting a 404 for the css.
I’m ready to reinstall the plugin then leave minify turned off, and use http://wordpress.org/support/plugin/bwp-minify though that plugin works well, it doesn’t automatically include your theme css file, so you have to manually enque the theme css file.