[BUG] CTA Selector Limited To 10 CTAs
-
This is the same bug as this issue.
The CTA selection modal will only show 10 CTAs. This is due to using the incorrect WP_Query argument for retrieving all CTAs.
Changing line 296 in wp_hubspot_visual.php from:
$args = array('post_type' => 'hs-action', 'numberposts' => -1);
To:
$args = array('post_type' => 'hs-action', 'posts_per_page' => -1);
Will fix the issue.
- The topic ‘[BUG] CTA Selector Limited To 10 CTAs’ is closed to new replies.