Changeset 2792984
- Timestamp:
- 10/02/2022 07:41:36 AM (3 years ago)
- Location:
- jomres/trunk
- Files:
-
- 5 edited
-
includes/functions.php (modified) (1 diff)
-
includes/jomres.php (modified) (1 diff)
-
jomres.php (modified) (2 diffs)
-
public/jomres-public.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jomres/trunk/includes/functions.php
r2791322 r2792984 202 202 } 203 203 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 307 307 if (! empty($this->css)) { 308 308 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' ); 310 315 wp_enqueue_style($css_filename); 311 316 } -
jomres/trunk/jomres.php
r2791322 r2792984 17 17 * Plugin URI: https://www.jomres.net 18 18 * Description: The complete online booking and property management solution for WordPress. 19 * Version: 10.5. 419 * Version: 10.5.5 20 20 * Author: Vince Wooll <support@jomres.net> 21 21 * Author URI: https://www.jomres.net … … 35 35 */ 36 36 if (! defined('JOMRES_WP_PLUGIN_VERSION')) { 37 define('JOMRES_WP_PLUGIN_VERSION', '10.5. 4');37 define('JOMRES_WP_PLUGIN_VERSION', '10.5.5'); 38 38 } 39 39 -
jomres/trunk/public/jomres-public.php
r2791322 r2792984 99 99 if (is_object($post) && strstr(strtolower($post->post_content), '[jomres:' . strtolower($language) . ']')) { 100 100 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>'; 102 102 } else { 103 $content = '<div id="asamodule_search_results" >' . $content . '</div>';103 $content = '<div id="asamodule_search_results" style="max-width:100%">' . $content . '</div>'; 104 104 } 105 105 } else { 106 106 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>'; 108 108 } 109 109 } -
jomres/trunk/readme.txt
r2791443 r2792984 4 4 Donate link: https://www.jomres.net 5 5 Requires at least: 4.3.1 6 Tested up to: 6.0 .26 Tested up to: 6.0 7 7 Stable tag: trunk 8 8 License: GPLv2 … … 14 14 15 15 Mature, 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 manager19 16 20 17 Jomres 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.