我使用WooCommerce预订,只是将日历视图从顶部放入一个WooCommerce标签。当访问者访问网站时此选项卡为$('.block-picker a').each(function() {
var width = $(this).width();
var height = $(this).height();
if ( width > max_width ) {
max_width = width;
}
if ( height > max_height ) {
max_height = height;
}
});
$('.block-picker a').width( max_width );
$('.block-picker a').height( max_height );
,jQuery插件无法正确计算日期的维度。
我可以在JavaScript文件中看到这段代码,但是如何管理从一开始就正确设置尺寸?
<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteBase /
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule .* index.php/$1 [PT,L]
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
当有人按下标签按钮时,我甚至尝试执行此代码,但这不会改变任何内容。
如果有人可以提供帮助,那会很棒。
谢谢!