• Hi there,
    I’m experiencing an issue: if I design the badge page with Elementor, when displaying an issued badge in the evidence page (the one with [badgeos_evidence] shortcode) all the Elementor content is not displayed at all, only the badge image, the title and the issue information are shown.

    Is there a way to solve it?
    Thanks in advance
    Davide

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter dartanidi

    (@dartanidi)

    Just to update, I made a new badge from scratch; now the content created with elementor shows up, but the styling is completed stripped out.

    Is there a way to keep the content as created with elementor?
    Thanks

    Thread Starter dartanidi

    (@dartanidi)

    Is this plugin abandoned? I don’t see too much reaction from the developer…

    Amnyway, let me try another time: looks like the issue is related only to the evidence page (the one with the shortcode). Creating a badge page with Elementor works perfectly in the “normal” badge pages, but the styling is completely stripped out when using the [badgeos_evidence] shortcode.

    Is there a way to solve it?

    Thanks

    Thread Starter dartanidi

    (@dartanidi)

    SInce there is no interaction from the developer, I have solved myself.
    Maybe the developer can add it to a future version of the plugin.

    In evidence-shortcode.php you must change from line 173 as follows:

    ?php if($achievement) { ?>

    <?php
    $contentElementor = “”;

    if ( \Elementor\Plugin::$instance->db->is_built_with_elementor($achievement->ID) ) {

    $pluginElementor = \Elementor\Plugin::instance();
    $contentElementor = $pluginElementor->frontend->get_builder_content($achievement_id);
    echo $contentElementor;
    } else {

    echo $achievement->post_content;

    }
    ?>

    <?php } ?>`

    doing so, if the achievement is created with Elementor, it is echoed using the style used, otherwised the standard content is printed.

    • This reply was modified 3 years, 9 months ago by dartanidi.
    • This reply was modified 3 years, 9 months ago by dartanidi.

    Thanks that is very helpfull

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Badge page created with Elementor not showing in evidence page’ is closed to new replies.