Как изменить текст кнопки Older Posts? При попытке изменения в значении $button_text = - не меняется. Ниже в коде удалось сменить *loading...* на *загрузка...*, а здесь упрямо не хочет. Историю браузера чистил - не помогает.
// Define button text
if ($content.attr('data-button-text') === undefined) {
$button_text = 'Older Posts';
} else {
$button_text = $content.attr('data-button-text');
}
// Define on Scroll event
if ($content.attr('data-scroll') === undefined) {
$scroll = true;
} else if ($content.attr('data-scroll') === "false") {
$scroll = false;
} else {
$scroll = true;
}
// Add load more button
$el.append('<div class="load-more-btn-wrap"><button id="load-more" class="more">' + $button_text + '</button></div>');
var $button = $('#load-more');
//Parse Post Type for multiples
var $post_type = $content.attr('data-post-type');
$post_type = $post_type.split(",");
$('#load-more').text("загрузка...");
// Load posts function
AjaxLoadMore.loadPosts = function () {
$button.addClass('loading');