• Resolved jonasverhulst

    (@jonasverhulst)


    We are trying to configure the inline shortcodes to configure the products, but they don’t seem to work.

    The button is not clickable. The inline configurator is not visible.

    Can you check?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor Marc Lacroix

    (@marcusig)

    Hi Jonas,

    It looks like the plugin does’t detect the shortcode on the page, so it doesn’t add the scripts.

    You can use the following code snippet to force it to load:

    add_filter( 'load_configurator_on_page', function( $should_load ) {
    	global $post;
    	if ( 39727 == $post->ID ) return true;
    	return $should_load;
    } );

    39727 appears to be the ID of the page you shared.

    Best wishes,

    Marc.

Viewing 1 replies (of 1 total)
  • The topic ‘Shortcodes’ is closed to new replies.