Skip to content

Commit

Permalink
Merge pull request #42 from kprajapatii/master
Browse files Browse the repository at this point in the history
WooCommerce category page shows incorrect title - FIXED
  • Loading branch information
Stiofan authored Aug 3, 2018
2 parents bab67f6 + 67f54bd commit d30c714
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions change_log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.1.9
WooCommerce category page shows incorrect title - FIXED
Event dates missing from detail page sidebar - FIXED

v1.1.8
Responsive CSS improvements - CHANGED
is_bbpress called without checking if bbpress is active - FIXED
Expand Down
4 changes: 2 additions & 2 deletions inc/geodirectory-compatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ function sd_img_gallery_output()
add_action('geodir_detail_sidebar_inside', 'sd_img_gallery_output', 1);

// add recurring dates to sidebar if events installed
if(function_exists('geodir_event_show_shedule_date')){
add_action('geodir_detail_sidebar_inside', 'geodir_event_show_shedule_date', '1.5');
if(function_exists('geodir_event_show_schedule_date')){
add_action('geodir_detail_sidebar_inside', 'geodir_event_show_schedule_date', '1.5');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php
} elseif (is_shop()) {
} elseif (is_woocommerce()) {
?>
<h1 class="entry-title"><?php woocommerce_page_title(); ?></h1>
<?php
Expand Down

0 comments on commit d30c714

Please sign in to comment.