Góp ý chút cho admin update ở version sau
path rating trong con themes này đang sai path (vì gọi đến path của theme hhtq)
`<link href=“{{ asset(‘/themes/hhtq/libs/jquery-raty/jquery.raty.css’) }}” rel=“stylesheet” />
<script src=“{{ asset(‘/themes/hhtq/libs/jquery-raty/jquery.raty.js’) }}”></script>
<script>
var rated = false;
jQuery(document).ready(function($) {
$('#star').raty({
number: 10,
starHalf: '/themes/hhtq/libs/jquery-raty/images/star-half.png',
starOff: '/themes/hhtq/libs/jquery-raty/images/star-off.png',
starOn: '/themes/hhtq/libs/jquery-raty/images/star-on.png',
click: function(score, evt) {
if (!rated) {
$.ajax({
url: '{{ route('movie.rating', ['movie' => $currentMovie->slug]) }}',
data: JSON.stringify({
rating: score
}),
headers: {
"Content-Type": "application/json",
'X-CSRF-TOKEN': document.querySelector(
'meta[name="csrf-token"]')
.getAttribute(
'content')
},
type: 'post',
dataType: 'json',
success: function(res) {
alert("Đánh giá của bạn đã được gửi đi!")
rated = true;
}
});
}
}
});
})
</script>`
File /vendor/ophimcms/theme-xiao/resources/views/themexiao/episode.blade.php - dòng 521 trở đi
Change thành
`<link href=“{{ asset(‘/themes/xiao/libs/jquery-raty/jquery.raty.css’) }}” rel=“stylesheet” />
<script src=“{{ asset(‘/themes/xiao/libs/jquery-raty/jquery.raty.js’) }}”></script>
<script>
var rated = false;
jQuery(document).ready(function($) {
$('#star').raty({
number: 10,
starHalf: '/themes/xiao/libs/jquery-raty/images/star-half.png',
starOff: '/themes/xiao/libs/jquery-raty/images/star-off.png',
starOn: '/themes/xiao/libs/jquery-raty/images/star-on.png',
click: function(score, evt) {
if (!rated) {
$.ajax({
url: '{{ route('movie.rating', ['movie' => $currentMovie->slug]) }}',
data: JSON.stringify({
rating: score
}),
headers: {
"Content-Type": "application/json",
'X-CSRF-TOKEN': document.querySelector(
'meta[name="csrf-token"]')
.getAttribute(
'content')
},
type: 'post',
dataType: 'json',
success: function(res) {
alert("Đánh giá của bạn đã được gửi đi!")
rated = true;
}
});
}
}
});
})
</script>`
Nếu ae có cài theme hhtq thì vẫn có thể gọi được, còn nếu ae k cài thì sẽ 404 not found vì thực tế k có path đó trên hệ thống.
Hi vọng ad fix lại path cho chuẩn thôi, chứ bản chất thì cũng chả ảnh hưởng lắm 😃