Skip to content

Commit

Permalink
Merge pull request #2688 from kprajapatii/master
Browse files Browse the repository at this point in the history
Carousel control shows opposite icons on directory theme - FIXED
  • Loading branch information
kprajapatii authored Sep 23, 2024
2 parents 187d3ad + 6634eb6 commit 87c1650
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/class-geodir-frontend-scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -874,8 +874,8 @@ private static function get_script_data( $handle ) {
'gd_ajax_url' => geodir_ajax_url( true ),
'has_gd_ajax' => ( defined( 'GEODIR_FAST_AJAX' ) && geodir_get_option( 'fast_ajax' ) ? 1 : 0 ),
'gd_modal' => (int)geodir_get_option('geodir_disable_gb_modal'),
'is_rtl' => is_rtl() ? 1 : 0, // fix rtl issue
'basic_nonce' => wp_create_nonce( 'geodir_basic_nonce'),// fix rtl issue
'is_rtl' => (bool) is_rtl(),
'basic_nonce' => wp_create_nonce( 'geodir_basic_nonce'),
'text_add_fav' => apply_filters('geodir_add_favourite_text', __( 'Add to Favorites', 'geodirectory' )),
'text_fav' => apply_filters('geodir_favourite_text', __('Favorite', 'geodirectory' ) ),
'text_remove_fav' => apply_filters('geodir_remove_favourite_text', __( 'Remove from Favorites', 'geodirectory' )),
Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,9 @@ We don't offer free trials, but we have a 30-day money-back guarantee if you are

__WARNING: GDv2 is a significant update over GDv1 and may require manual work, such as adding widgets to sidebars to recreate your current layout. As always, we recommend trying this on a staging site first. [Learn more](https://docs.wpgeodirectory.com/article/260-upgrading-from-gdv1-to-gdv2)__

= GeoDirectory v2.3.80 - TBD =
* Carousel control shows opposite icons on directory theme - FIXED

= GeoDirectory v2.3.79 - 2024-09-19 =
* Image meta not saved properly when multiple file fields on add/edit listing page - FIXED
* Carousel in BootStrap modal not working on RTL - FIXED
Expand Down

0 comments on commit 87c1650

Please sign in to comment.