Home Forums WoodMart support forum Article per Page Reply To: Article per Page

#268315

Artem Temos
Keymaster

Try to add the following PHP code snippet to the child theme functions.php file to fix this

function woodmart_wcfmmp_shop_page_link($user_id) {
   add_filter( 'woodmart_shop_page_link', function() use($user_id){
      return wcfmmp_get_store_url($user_id);
   } );
}
add_action( 'wcfmmp_before_store_product', 'woodmart_wcfmmp_shop_page_link' );