Skip to content

Commit

Permalink
2.1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stiofan committed Aug 10, 2021
1 parent 8cab4e9 commit 202abd3
Show file tree
Hide file tree
Showing 23 changed files with 803 additions and 328 deletions.
59 changes: 43 additions & 16 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

// Define the version number for quick access
if (!defined('DIRECTORY_STARTER_VER')) define('DIRECTORY_STARTER_VER', '2.1.0.5');
if (!defined('DIRECTORY_STARTER_VER')) define('DIRECTORY_STARTER_VER', '2.1.0.6');

require_once('vendor/autoload.php'); // Composer autoload
require_once('lib/utils.php'); // Utility functions goes here
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
while ( have_posts() ) : the_post();

// Include the page content template.
get_template_part( 'template-parts/content/content' );
get_template_part( 'template-parts/post/content' );

// End the loop.
endwhile;
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: paoltaia, stiofansisland, ayecode
Tags: food-and-drink, blog, one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, translation-ready
Requires at least: 4.0
Tested up to: 5.7
Stable tag: 2.1.0.5
Tested up to: 5.8
Stable tag: 2.1.0.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -21,6 +21,10 @@ No, this is optional but recommended.

== Changelog ==

= 2.1.0.6 =
* Template changes for UsersWP Compatibility - CHANGED
* AUI framework updated to latest version - UPDATED

= 2.1.0.5 =
* Option added to be able to change content/sidebar order on mobile view - ADDED
* Some page templates changed for new features - CHANGED
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Theme URI: https://wpgeodirectory.com/downloads/directory-starter/
Author: GeoDirectory Team
Author URI: https://wpgeodirectory.com/
Description: Directory Starter is a starter theme for our GeoDirectory plugin (https://wordpress.org/plugins/geodirectory/), perfect to be edited directly or to create your own child themes. Directory Starter is a fully responsive Directory Theme that has been methodically coded to be lightweight and customisable, we have used all the latest WordPress Customizer options allowing you to customise the look and feel of your site with no coding knowledge. Check out the 1st child theme for DS called Supreme directory (https://wpgeodirectory.com/downloads/supreme-directory/)
Version: 2.1.0.5
Version: 2.1.0.6
Requires at least: 4.0
Tested up to: 5.7
Tested up to: 5.8
Requires PHP: 5.6
License: GPLv2 or greater
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down
7 changes: 1 addition & 6 deletions template-parts/content/content.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@
</header>
<div class="entry-content entry-summary">
<?php
if (is_singular() || (function_exists('is_bbpress') && is_bbpress())) {
the_content();
} else {
directory_theme_post_thumbnail();
the_excerpt();
}
the_content();
?>
<?php
wp_link_pages( array(
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/assets/css/ayecode-ui-rtl.css

Large diffs are not rendered by default.

Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@
@import "spinners-rtl";
@import "utilities";
@import "print";


// changes for text-left/right
@import "utilities/text-rtl";
2 changes: 1 addition & 1 deletion vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
add_action('after_setup_theme', function () {
global $ayecode_ui_version,$ayecode_ui_file_key;
$this_version = "0.1.45";
$this_version = "0.1.58";
if(version_compare($this_version , $ayecode_ui_version, '>')){
$ayecode_ui_version = $this_version ;
$ayecode_ui_file_key = wp_hash( __FILE__ );
Expand Down
40 changes: 40 additions & 0 deletions vendor/ayecode/wp-ayecode-ui/change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
= 0.1.58 =
* Filter added to be able to override AUI loading from wp-admin - ADDED

= 0.1.57 =
* Video shows extra padding on Divi theme - FIXED

= 0.1.56 =
* Radio with empty value do not renders value attribute - FIXED

= 0.1.55 =
* Add unique CSS class to radio/checkbox wrapper - ADDED
* Added wp_unslash() to value output helper - ADDED

= 0.1.53 =
* Better escaping for input values - CHANGED

= 0.1.52 =
* WP 5.8 legacy widgets preview not loading styles - FIXED

= 0.1.51 =
* Textarea "name" arg can't contain [square brackets] - FIXED

= 0.1.50 =
* Scroll within popup scrolls the modal background on iOS mobile device - FIXED

= 0.1.49 =
* Unable to save empty value for multiselect fields - FIXED
* Text left/right classes alignment swapped for RTL CSS - CHANGED

= 0.1.48 =
* Tooltips in wp-admin have wrong margin offset - FIXED
* Inline CSS and JS is now minified to reduce size - CHANGED

= 0.1.47 =
* Timeago labels are not translatable - FIXED
* Kleo theme fix for mobile menu in some situations not showing - FIXED

= 0.1.46 =
* JS function added to open embedded items in a lightbox gallery - ADDED

= 0.1.45 =
* Some texts missing a textdomain - FIXED

Expand Down
Loading

0 comments on commit 202abd3

Please sign in to comment.