This topic has 6 replies, 2 voices, and was last updated 7 years, 8 months ago by Fem.
Viewing 7 posts - 1 through 7 (of 7 total)
[album columns=”4” limit=”12” pagination=”true”] when i place this code in pages the posts are appearing but pagination is not appering why???? how to fix it
Website : https://www.filmyringtones.com/
Go through the directory path ..\wp-content\musicplay\framework\shortcode\music_album.php and find these lines of code
if ( function_exists( 'atp_pagination' ) ) {
if ( true === $pagination ) {
$out .= atp_pagination();
}
}
And replace with this
if ( function_exists( 'atp_pagination' ) ) {
if ( 'true' === $pagination ) {
$out .= atp_pagination();
}
}
Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.