Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1088255

    hi guys, as i use this function for customization of our systems, my question is:
    is there any possibility to turn this of by functions.php ?

    i can go in detail later, if we do not find a simple solution…

    greez
    rene

    #1088550

    Hi Rene,

    I’m not sure I understand your question, could you try clarify or explain a bit further please?

    Best regards,
    Rikard

    #1088622

    hi rikard,

    in version 4.5.5 you changed. “fixed: an issue with shortcodes used outside of template builder pages”

    as we design our own shortcodes based on avia and load a script via ajax which uses WP functionality, our scripts do not work anymore.
    if we try to fix this with a small extension like so:

    $avia_config[‘template’] = “avia-blank”;
    $avia_config[‘conditionals’][‘is_builder_template’] = true;
    get_template_part(‘template-builder’);

    our output gets now visible again, but mostly all JS functionalities are broke. another problem is that we now have the header and breadcrump output, which we dont want. everything worked fine with the version 4.5.3, so we are sure all this is caused by the 4.5.4 update and the “issue with shortcodes used outside of template builder pages”.

    so, if possible, is there some possibility to “fix” this for us via something like an avia_config Parameter?

    cheers
    rene

    • This reply was modified 5 years, 7 months ago by isee.
    #1091019

    Hi,

    Try to update:

    enfold/config-templatebuilder/avia-template-builder/php/shortcode-template.class.php

    with https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/AIO_SEO/shortcode-template.class.php

    and enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php

    with https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/AIO_SEO/template-builder.class.php

    This fixes some problems with functionality for REST API, feed, …

    Check the well documented filters in function shortcode_handler_prepare in shortcode-template.class.php.

    Make sure to enqueue your scripts in function extra_assets() as we do for our shortcodes (if your shortcodes are derived from aviaShortcodeTemplate). This adds your scripts to the header.
    Or try to hook into ‘wp_head’ action with 1 to add your scripts as one of the first scripts.

    Best regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.