sbaeder
Forum Replies Created
-
looks like a typo in the customizr file in question. The name of the function should be “picker”, and not “pickerS” (i.e. the “s” is extra – I capitalized it for effect!)
Not sure why they couldn’t duplicate it, since it looks like it is still in the master code on github.
looks like a typo in the customizr file in question. The name of the function should be “picker”, and not “pickerS” (i.e. the “s” is extra – I capitalized it for effect!)
Forum: Plugins
In reply to: [Event List] Is there any way to show old events?you have to make sure that the list selects the event, and the default is to do future events. Look at the optional settings on the short-code to make it display all of them.
or if this isn’t the issue – post again.
I am also seeing an issue – I have MANAGED wordpress from godaddy, and it is on PHP 5.4
Web Server Apache
PHP Version 5.4.42
MySQL Version 5.5.43-37.2-log
Server Timezone UTC
Display Errors Yes (1)
Safe Mode No
Memory Limit 256M
Upload Max Filesize 64M
Post Max Size 65M
Max Execution Time 30
Max Input Vars 1000
fsockopen Yes
cURL Yes
SOAP Yes
SUHOSIN No
WP Remote POST Yes
WP Remote GET YesDid you ever figure this out more? I am seeing the same sort of errors.
@bradvin …right now, the only “public” space is on a client sight.
http://eql.co/dkb-bunderchampionate-2015/
If you want to explore it more, look at the github code, or let me know via email (same username used here but at good old AOL dot com)
BTW – great gallery, and lots of neat options for developers to use…
Unfortunately, (AFAIK) that isn’t one of the options in the underlying engine that is used – The whole point of this style is to maximize different aspect ratio images so that “most” of the content is visible without resorting to cropping the image. This is why it only uses the “height” of the row to format.
Maybe, if you gave it a really WIDE image as the first one, you would get that sort of an effect??
I took a slightly different approach and modified the original code (and made it a separate plugin) to allow you to specify a specific thumbnail size to avoid the issue with dynamic resizing. While it is a good idea in theory, and may even work well in practice if you have relatively small “originals” and/or only a few images, for a large gallery, it can be rather slow to display, since all the images need to be re-sized.
While not “officially released”, anyone is free to look at / use it…(as is)
https://github.com/sbaeder/foogallery-justified-infinite-scroll-template
I’m not sure, but it sounds like you want one image for the thumbnail, and another image when they click on the thumbnail. (if not, explain what you really are trying to do, not how to do it)
But if that is the case, have you tried creating a gallery of the images you want for the thumbnails, and using a custom link to link it to the “real” image – and on that, sue the lightbox to display the custom link?
Forum: Plugins
In reply to: [Custom Post Limits] Error when activatedI saw this too, and it is a warning about a potential conflict. It seems to be mostly harmless, but if you really want to get rid of it, then all you have to do is to modify the code inside
custom-post-limits.phpso that it has the parameter declaration i.e. $localized_heading_text = ” (never used in the extension of the class) for the input parameter as shown below…/** * Outputs the text above the setting form * * @return void (Text will be echoed.) */ public function options_page_description($localized_heading_text = '') { $options = $this->get_options(); $current_limit = get_option( 'posts_per_page' ); $option_url = '<a href="' . admin_url( 'options-reading.php' ) . '">' . __( 'here', $this->textdomain ) . '</a>'; parent::options_page_description( __( 'Custom Post Limits Settings', $this->textdomain ) ); echo '<p>' . __( 'By default, WordPress provides a single configuration setting to control how many posts should be listed on your blog. This value applies for the front page listing, archive listings, author listings, category listings, tag listings, and search results. <strong>Custom Post Limits</strong> allows you to override that value for each of those different sections.', $this->textdomain ) . '</p>'; echo '<p>' . __( 'If the limit field is empty or 0 for a particular section type, then the default post limit will apply. If the value is set to -1, then there will be NO limit for that section (meaning ALL posts will be shown). For instance, you could set your Front Page to list 5 posts, but then list 10 on subsequent pages.', $this->textdomain ) . '</p>'; echo '<p>' . __( 'All but the individual archive limits support a "paged (non first page)" sub-setting that allows a different limit to apply for that listing type when not viewing the first page of the listing (i.e. when on page 2 or later).', $this->textdomain ) . '</p>'; echo '<p>' . sprintf( __( 'The default post limit as set in your settings is <strong>%1$d</strong>. You can change this value %2$s, which is labeled as <em>Blog pages show at most</em>', $this->textdomain ), $current_limit, $option_url ) . '</p>'; }In working on my own extension to the justified gallery, I noticed that there would be errors processing the gallery *IF* you used the “no link” option, since it requires the link to properly create the gallery.
Try using the full image link…
Also, a good thing to try is to turn on the “debug” capability in something like Chrome (i.e. inspect element)…It may show you some other error…
Note: just a user, but hope this helps.