Tim
Forum Replies Created
-
Hello,
The following sorting options are available in the Pro version:
– None
– Random
– Filename
– Title
– Caption
– Alt Text
– URLSorting can be ascending or descending.
Thanks.
Hi Bernd,
Thank you for the positive review. I would suggest you add a review by visiting https://wordpress.org/support/view/plugin-reviews/envira-gallery-lite
Thanks,
Tim.
Looks fine to me – but then I’ve no idea what you mean by “squiffy”.
The more precise you are with the problem, the better we can assist.
Thanks.
Forum: Plugins
In reply to: [Comment Rating Field Plugin] Comment Area Don't have rateIf you’re using WordPress’ native functions for outputting the comment form, the plugin will work.
Without a working URL and details of what you’re using, it’s hard to advise further.
Hi,
This is a question about the Pro plugin, so you’d need to raise it via:
https://www.wpcube.co.uk/supportThanks,
Tim.
Forum: Plugins
In reply to: [Comment Rating Field Plugin] Automatic Update for Existing Pro CustomersHi,
This is a question about the Pro plugin, so you’d need to raise it via:
https://www.wpcube.co.uk/supportThanks,
Tim.
Hi,
You’d need to change the settings and the order of tags used. For example:
{title} {excerpt} {link}
If you need to have a different format for Facebook, you’d need to upgrade to the Pro version, which will let you specify a different layout for Facebook (and each social network profile). It’ll also support line breaks, meaning you can have:
{title}
{excerpt}{link}
Thanks.
There is no limit.
Ignore my last message. I’ve included the fix we implemented in Pro for the free version of Envira (1.3.5.2+)
This is a known bug in WordPress:
https://core.trac.wordpress.org/ticket/14459The Pro version of Envira has its own code to resolve this, until WordPress patch the issue.
Thanks.
Please refer to https://wordpress.org/support/topic/read-this-before-you-post-12?replies=1
Thank you.
There is no default option to do this with a gallery. It can be achieved using CSS to hide all but the number of images you want to display but keep in mind that the page will still load the full gallery and it will impact the page load time. To hide all but the first six images in a gallery you can use:
.envira-gallery-wrap .envira-gallery-item:nth-of-type(n+6) { display: none !important; }You may need to tweak the CSS to meet your precise needs.
Fixed in 1.3.5.1, releasing Thursday.
You need to submit your German translation to https://translate.wordpress.org/projects/wp-plugins/envira-gallery-lite.
Once approved, Envira Lite will display in German provided your WordPress site is set to the same locale. No need to upload .mo / .po files within the plugin.
You can hook into the
envira_gallery_skipped_posttypesfilter, adding the Post Type(s) to the array of Post Types that will be skipped by Envira.This will result in the metabox not displaying on those Post Types.
Example:
function skip_post_types( $post_types ) { $post_types[] = 'your-cpt'; return $post_types; } add_filter( 'envira_gallery_skipped_posttypes', 'skip_post_types' );