Plugin Directory

Changeset 2792984


Ignore:
Timestamp:
10/02/2022 07:41:36 AM (3 years ago)
Author:
jomres
Message:

Jomres updated. For WP in particular changed No Theme handling so that BS5 is used instead of BS3 + fixed issues when running in 2022 theme.

Location:
jomres/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • jomres/trunk/includes/functions.php

    r2791322 r2792984  
    202202    }
    203203    add_shortcode('default_wordpress_loginform', 'jomres_login_form_shortcode');
     204
     205
     206    add_filter( 'run_wptexturize', '__return_false' , PHP_INT_MAX );
  • jomres/trunk/includes/jomres.php

    r2791322 r2792984  
    307307        if (! empty($this->css)) {
    308308            foreach ($this->css as $css_filename => $css) {
    309                 wp_register_style($css_filename, $css['0'], array(), $css['1'], 'all');
     309                if(is_admin()) {
     310                    $css_dep = $css['1'];
     311                } else {
     312                    $css_dep =  array('bootstrap_css');
     313                }
     314                wp_register_style( $css_filename, $css['0'], $css_dep , $css['1'], 'all' );
    310315                wp_enqueue_style($css_filename);
    311316            }
  • jomres/trunk/jomres.php

    r2791322 r2792984  
    1717     * Plugin URI:      https://www.jomres.net
    1818     * Description:    The complete online booking and property management solution for WordPress.
    19      * Version:        10.5.4
     19     * Version:        10.5.5
    2020     * Author:          Vince Wooll <support@jomres.net>
    2121     * Author URI:      https://www.jomres.net
     
    3535     */
    3636if (! defined('JOMRES_WP_PLUGIN_VERSION')) {
    37     define('JOMRES_WP_PLUGIN_VERSION', '10.5.4');
     37    define('JOMRES_WP_PLUGIN_VERSION', '10.5.5');
    3838}
    3939
  • jomres/trunk/public/jomres-public.php

    r2791322 r2792984  
    9999        if (is_object($post) && strstr(strtolower($post->post_content), '[jomres:' . strtolower($language) . ']')) {
    100100            if ($wp_jomres->get_content() != '') {
    101                 $content = '<div id="asamodule_search_results">' . $wp_jomres->get_content() . '</div>';
     101                $content = '<div id="asamodule_search_results" style="max-width:100%">' . $wp_jomres->get_content() . '</div>';
    102102            } else {
    103                 $content = '<div id="asamodule_search_results">' . $content . '</div>';
     103                $content = '<div id="asamodule_search_results" style="max-width:100%">' . $content . '</div>';
    104104            }
    105105        } else {
    106106            if (! strstr($content, 'asamodule_search_results')) {
    107                 $content = '<div id="asamodule_search_results">' . $content . '</div>';
     107                $content = '<div id="asamodule_search_results" style="max-width:100%">' . $content . '</div>';
    108108            }
    109109        }
  • jomres/trunk/readme.txt

    r2791443 r2792984  
    44Donate link: https://www.jomres.net
    55Requires at least: 4.3.1
    6 Tested up to: 6.0.2
     6Tested up to: 6.0
    77Stable tag: trunk
    88License: GPLv2
     
    1414
    1515Mature, intelligent, secure and powerful. Started in 2005 and maintained continuously for the last 17 years, Jomres is the most complete online booking engine available for WordPress.
    16 
    17 = Stripe payment gateway built into Jomres Core, totally free, no need to purchase a gateway plugin.
    18 = Free Instant Messaging system available through the Jomres plugin manager
    1916
    2017Jomres is a commission-free, responsive, Open Source multi-vendor, multi-language, multi-property online booking plugin for accommodation, rentals and tours used by thousands of businesses worldwide to manage their properties and reservations. You can create an unlimited number of booking websites, accessible to customers on any device, in any language.
Note: See TracChangeset for help on using the changeset viewer.