如何禁用Post Grid VC Shortcode的ajax内容加载?
我不希望显示加载点。
由于
答案 0 :(得分:1)
在Post Grid中使用Visual Composer短代码如果您使用显示样式作为“分页”,则必须从此处设置分页样式:分页>分页样式(选择“无”)。它将删除分页点,并且不会有帖子的ajax数据和没有分页。有关详细信息,请参阅附图。
答案 1 :(得分:0)
你的问题是"我不希望加载点显示",你只需要做 添加自定义css
.vc_grid-loading {display: none;}
您可以通过点击视觉作曲家的右上角齿轮图标添加自定义CSS(参见下图)
答案 2 :(得分:0)
查看插件并找到处理AJAX的脚本名称及dequeue。
/**
* Dequeue a JS script.
*
* Hooked to the wp_print_scripts action, with a late priority (100),
* so that it is after the script was enqueued.
*/
function wpdocs_dequeue_script() {
wp_dequeue_script( 'script-name' );
}
add_action( 'wp_print_scripts', 'wpdocs_dequeue_script', 100 );
答案 3 :(得分:0)
您可以使用第二个短代码封装短代码,该短代码会删除触发AJAX的选择器。请参阅:enclosing shortcodes
[new-shortcode][original-shortcode][/new-shortcode]
function new_shortcode($atts = [], $content = null) {
// do something to $content
// run shortcode parser recursively
$content = do_shortcode($content);
// always return
return $content;
}
add_shortcode('new-shortcode', 'new_shortcode');