Forum Replies Created

Viewing 3 posts - 31 through 33 (of 33 total)
  • Author
    Posts
  • in reply to: Popup Maker and Enfold Avia Layour Builder #1132371

    Anyone here?

    in reply to: Google API Key Free Trial Expried #1131761

    So, i noticed that in the java script console there were some errors.

    Exceded quota for this api
    Google Maps JavaScript API Warning RetiredVersion
    Failed to loead resource server responded with status of 404

    So i went and checked the quotas for my API, saw that the limit was set to 1

    I had billing configured and enabled, tho.

    So i removed my billing and added it back, using same credit card.

    The notice saying that the trial was ended and that i needed to upgrade to paid account disappeared.

    It started working again.

    Now i want to ask: is the free daily usage quota still there? Or i will have to pay?

    Why did this happen? Will it happen again?

    in reply to: Avia Layout Builder not working with Plugin Popup Maker #1131759
    // Add Avia Builder to Popup Maker
    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
    $supported_post_types[] = "popup";
    return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types',
    'avf_alb_supported_post_types_mod', 10, 1);

    This code made the advanced layout editor button appear when editing the popup, but then it does not work, the popup is empty also if i build a layout.
    I tried also with this older code that i found here on the forums:

    `function add_builder_to_posttype($metabox)
    {
    foreach($metabox as &$meta)
    {
    if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘layout’)
    {
    $meta[‘page’][] = ‘popup’; /*Using ‘ as quotes*/
    }
    }

    return $metabox;
    }

    But this does nothing.. does not even show the blue advanced editor button

    So? What should we do?

Viewing 3 posts - 31 through 33 (of 33 total)