Kailey (trepmal)
Forum Replies Created
-
Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] About links after excerptOy… I’m way behind on email/support.
The
[excerpt]tag has anafter_linkparameter. You can set this to false to prevent the “after” (which is be default “…”) from becoming a link.So
[excerpt]will give you “…” that links to the post.[excerpt after="More"]will give you “More” that links to the post.[excerpt after_link=0]will give you “…” that does not link to the post.Forum: Plugins
In reply to: [Mini Loops] Same thumb for every post???Hi,
Do you have a fallback setup? Perhaps something is causing the preferred thumb to be skipped and is displaying the same fallback image for each post.
I’ve not been able to replicate this problem, so I’ll need more information on your setup (what options are set, WP version, etc.) to try and figure out if there’s a plugin bug or some other conflict.
There are similar hooks for both the before and after fields. For those, use either
miniloops_before_items_formatorminiloops_after_items_formatin place ofminiloops_item_formatForum: Plugins
In reply to: [Active Plugins] Placement on the admin menuProbably would make more sense 🙂 Maybe the next update…
Forum: Plugins
In reply to: [Mini Loops] Using Internet Explorer 8 the widget not displaying imagesYou’re dealing with a CSS issue here.
The
<a>around your image needs to be block-level with a width so that themax-widthon the image isn’t squished down.Forum: Plugins
In reply to: [Simple Mobile URL Redirect] Redirect Once – less than a day@iammathews The “Redirect Once Cookie Expiry:” field sets how long the cookie will last for (in days).
So if set to ‘7’ then the user will be redirected on their first visit, but not again until after the week has passed.
Forum: Plugins
In reply to: [Advanced Most Recent Posts Mod] Show DATE instead of featured Image thumbTruthfully, I’m not really sure what you mean by “date icon.”
Do you mean just a very stylized date so that it looks like more of an icon than just text? If so, in Mini Loops you have the option of wrapping the date in as much markup as needed so you can use CSS to style it however you like.
However, CSS support is beyond what I’m able to give at this time, so if you’re looking for how to implement that styling, then you’ll need find someone else.
Forum: Plugins
In reply to: [Advanced Most Recent Posts Mod] Show DATE instead of featured Image thumbIf you want more customization of the layout, I’d recommend my other plugin Mini Loops. The setup is a different, but it provides the same functionality with a lot more control.
Forum: Plugins
In reply to: [Mini Loops] Message to display if there are no postsIt’s not a core feature right now, but it is a quick modification. See this code (notice lines 24-25). This is a modification of helpers.php in the plugin.
It’s a good idea, I’ll see about building this into a future release.
Forum: Plugins
In reply to: [Mini Loops] how to add alt tags to imagesUnfortunately, the plugin doesn’t allow for this particular kind of alt text scenario. The plugin will try and get the alt text from the attachment post meta (for images from thumb or attached, so you can edit this in the media library), from the original image tag (for images from first), or from the custom field (for images from customfield).
In the case of customfield, you must also provide the name of the custom field the alt text can be found in
[image from=customfield cfname='name-of-custom-field-with-thumb' cfnamealt='name-of-custom-field-with-alt']And you can supply backup alt text like this
[image from=thumb alttext='text used if none other is found']Forum: Plugins
In reply to: [Mini Loops] Artiss youtube embed with miniloopsI’ve begun adding this to the dev version which you can get here if you want to test it early.
Forum: Plugins
In reply to: [Mini Loops] Get posts from first category (if single)Sorry, this feature is not currently supported. Perhaps in a future version though 🙂
You might be able to use the
miniloops_item_formatfilter. For example, in the item format put a placeholder string, then use that filter to replace the string with whatever you need:add_filter( 'miniloops_item_format', function( $format ) { $string1 = __( 'Some text', 'text-domain'); $format = str_replace( '###', $string1, $format ); return $format; });Forum: Plugins
In reply to: [Mini Loops] [Plugin: Mini Loops] Cropped or resized thumbnailsWorking on crop/scale for v1.3, you can get the dev version here
Forum: Plugins
In reply to: [Mini Loops] Artiss youtube embed with miniloopsSorry, the Item Format field does not currently support non-Mini Loops shortcodes.