Hi,
Apologize for the delay, didn’t realised the topic was assigned to me.
Can you try this change below in the file uplift/swift-framework/core/sf-formatting.php
In the function sf_add_cpt_tags_to_archive()
comment this line
//if ( is_category() || is_tag() ) {
and add this one below
if ( get_query_var('is_category') || is_tag() ) {
So it will look like this
function sf_add_cpt_tags_to_archive($query) {
//if ( is_category() || is_tag() ) {
if ( get_query_var('is_category') || is_tag() ) {
This should sort it, let’s know if it worked so we can include it in the next update.
-Rui