minor spelling and grammar fixes

This commit is contained in:
Adrian 2021-11-20 17:54:06 +02:00
parent 7f0fad92d9
commit b403a292db
6 changed files with 13 additions and 13 deletions

View File

@ -28,9 +28,9 @@ Upload the files to the plugins directory and activate it. You can also install
Once activated, go to the theme customizer and play around with Tainacan-related options for each of your collections.
This plugin will only work with [Tainacan plugin](https://wordpress.org/plugins/tainacan/) active, preferably with a version greater than or equal to 0.17.4;
This plugin will only work with [Tainacan plugin](https://wordpress.org/plugins/tainacan/) active, preferably at version 0.17.4 or newer;
Also, this plugin will only work with [Blocksy theme](https://wordpress.org/themes/blocksy/) active, preferably with a version greater than or equal to 1.7.0;
Also, this plugin will only work with [Blocksy theme](https://wordpress.org/themes/blocksy/) active, preferably at version 1.7.0 or newer;
== Find out more ==
@ -52,8 +52,8 @@ License details: https://github.com/tainacan/blocksy-tainacan/blob/master/LICENS
== Screenshots ==
1. With the plugin enabled, your customizer will offer options for each Tainacan collection items list and item page, besides the repository and term items list page;
2. The item single page can be customized for different layouts, so you can decide how to display the document, attachments and metadata;
3. Besides that, Blocksy offers different title banners, post navigation and related post features that can also be used in your item single page;
2. The single item page can be customized for different layouts, so you can decide how to display the document, attachments and metadata;
3. Besides that, Blocksy offers different title banners, post navigation and related post features that can also be used in your single item page;
== Changelog ==

View File

@ -142,7 +142,7 @@ if ( !function_exists('tainacan_blocksy_custom_post_types_supported_list') ) {
add_filter( 'blocksy:custom_post_types:supported_list', 'tainacan_blocksy_custom_post_types_supported_list', 10 );
/**
* Renders the item single page with a custom template that will use most of Blocksy features
* Renders the single item page with a custom template that will use most of Blocksy features
*/
if ( !function_exists('tainacan_blocksy_the_content_for_items') ) {
function tainacan_blocksy_the_content_for_items( $content ) {

View File

@ -63,7 +63,7 @@ $options = [
'label' => __( 'Show the "Hide filters" button', 'tainacan-blocksy' ),
'type' => 'ct-switch',
'value' => 'yes',
'desc' => __( 'Display the button for hidding the filters panel.', 'tainacan-blocksy' ),
'desc' => __( 'Display the button for hiding the filters panel.', 'tainacan-blocksy' ),
'sync' => ''
],
blocksy_rand_md5() => [

View File

@ -24,7 +24,7 @@ $options = [
'label' => __( 'Show the "Items per page" button', 'tainacan-blocksy' ),
'type' => 'ct-switch',
'value' => 'yes',
'desc' => __( 'Display the button for choosing how many items per page shoulb be loaded.', 'tainacan-blocksy' ),
'desc' => __( 'Display the button for choosing how many items per page should be loaded.', 'tainacan-blocksy' ),
'sync' => ''
],
$prefix . 'show_go_to_page_button' => [

View File

@ -13,7 +13,7 @@ $options = [
'type' => 'ct-switch',
'value' => $enabled,
'setting' => [ 'transport' => 'postMessage' ],
'desc' => __( 'Toggle to show or not the item thumbnail on the metadada list.', 'tainacan-blocksy' ),
'desc' => __( 'Toggle to show or not the item thumbnail on the metadata list.', 'tainacan-blocksy' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])

View File

@ -14,7 +14,7 @@ $options = [
'type' => 'ct-switch',
'value' => $enabled,
'setting' => [ 'transport' => 'postMessage' ],
'desc' => __( 'Toggle to hide or not the core title from the metadada list, as it already appears on the page title.', 'tainacan-blocksy' ),
'desc' => __( 'Toggle to hide or not the core title from the metadata list, as it already appears on the page title.', 'tainacan-blocksy' ),
'sync' => blocksy_sync_single_post_container([
'prefix' => $prefix
])