Skip to content

Commit a4fc27c

Browse files
authored
Merge pull request #116 from MachoThemes/master
1.3.4 fixes
2 parents 775327c + ab34447 commit a4fc27c

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ matrix:
44
fast_finish: true
55
include:
66
- php: '5.3'
7-
env: SNIFF=1
87
- php: '5.4'
98
- php: '5.5'
109
- php: '5.6'
1110
- php: '7.0'
1211
- php: '7.1'
12+
env: SNIFF=1
1313
env: DEPLOY=1
1414
before_script:
1515
- export PHPCS_DIR=/tmp/phpcs

inc/class-activello-wp-bootstrap-navwalker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0
115115
}
116116

117117
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
118-
$item_output .= ( $args->has_children && $depth < 2 ) ? ' </a><span class="activello-dropdown"></span>' : '</a>';
118+
$item_output .= ( $args->has_children ) ? ' </a><span class="activello-dropdown"></span>' : '</a>';
119119
$item_output .= $args->after;
120120

121121
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );

inc/extras.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function activello_header_menu() {
101101
wp_nav_menu( array(
102102
'menu' => 'primary',
103103
'theme_location' => 'primary',
104-
'depth' => 3,
104+
'depth' => 6,
105105
'container' => 'div',
106106
'container_class' => 'collapse navbar-collapse navbar-ex1-collapse',
107107
'menu_class' => 'nav navbar-nav',

inc/template-tags.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function activello_posted_on() {
8383
esc_html( get_the_modified_date() )
8484
);
8585

86-
printf( '<span class="posted-on">' . __( 'Posted on', 'activello' ) . ' %1$s</span>',
86+
printf( '<span class="posted-on">' . __( 'Posted on', 'activello' ) . ' %1$s</span>' . __( 'by', 'activello' ) . ' %2$s',
8787
sprintf( '<a href="%1$s" rel="bookmark">%2$s</a>',
8888
esc_url( get_permalink() ),
8989
$time_string

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "activello",
33
"main": "Gruntfile.js",
4-
"version": "1.3.3",
4+
"version": "1.3.4",
55
"homepage": "https://www.colorlib.com",
66
"author": "Colorlib",
77
"license": "GPL v3",
8-
"repository": "https://github.com/giucu91/Activello",
8+
"repository": "https://github.com/puikinsh/Activello",
99
"devDependencies": {
1010
"grunt": "^0.4.5",
1111
"grunt-checktextdomain": "^1.0.0",

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@ Theme documentation is available on http://colorlib.com/wp/support/activello
7575
= 1.3.3
7676
* Fixed search functionality
7777

78+
= 1.3.4
79+
* Structured data missing hatom author
80+
* Allow theme to display more than 2 sub level menus
81+
7882
= 1.3.2
7983
* Added a new Blog Layout
8084
* Added option to show all categories in the blog page

style.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Theme URI: https://colorlib.com/wp/themes/activello/
44
Author: Colorlib
55
Author URI: http://colorlib.com
66
Description: Activello is a clean and minimal WordPress blog theme with premium look and feel well suited for food, fashion, travel, lifestyle, sports and any other awesome blogs. This theme features WooCommerce integration that allows you to create fully functional eCommerce website side by side with your blog. This theme has several customization options that are available WordPress Theme Customizer. Theme is also multilingual ready and translated in several languages. This awesome blog theme is also SEO friendly helping you to achieve the highest positions on Google. Activello is the only WordPress blog theme you will ever need.
7-
Version: 1.3.3
7+
Version: 1.3.4
88
License: GNU General Public License v3 or later
99
License URI: http://www.gnu.org/licenses/gpl-3.0.html
1010
Text Domain: activello
@@ -1192,9 +1192,6 @@ div.flex-caption {
11921192
.nav:not(.activello-mobile-menu) .dropdown-menu li.menu-item-has-children > a:after {
11931193
content: "\f105";
11941194
}
1195-
.nav:not(.activello-mobile-menu) .dropdown-menu .dropdown-menu li.menu-item-has-children > a:after {
1196-
display: none;
1197-
}
11981195
.nav:not(.activello-mobile-menu) li.menu-item-has-children > a:after {
11991196
display: inline-block;
12001197
float: right;

0 commit comments

Comments
 (0)