Forum Replies Created
-
AuthorPosts
-
Ok… is there just a CSS class that this white overlay is calling from? Perhaps I can just change it to another color or use a background image?
Sorry. I fixed the link.
Basically, it involves disabling the affecting plugin first (in this case, Advanced Custom Fields), and then commenting out this line in config-templatebuilder > avia-template-builder > php > template-builder.class and uploading the file back into the theme.
Comment this line //wp_enqueue_script('avia_element_js' , $this->paths['assetsURL'].'js/avia-element-behavior.js' , array('avia_builder_js'), $ver, TRUE );
Then activating said plugin, uncommenting out that line and reuploading to the theme.
I’m not sure if this is a sure fire solution, but it did work (for now)
I just wanted to chime because I’ve had the same problem on some instances of using Enfold and Advanced Custom Field Pro.
Using the solution found here (though it doesn’t specify ACF, it still worked): https://wordpress.org/support/topic/error-cannot-call-methods-on-sortable-prior-to-initialization-attempted-to-cal has seemed to work for me.
Hope this helps.
- This reply was modified 9 years, 3 months ago by nguyen51.
I hate to hijack this thread, but I’m having the same problems with Enfold and Advanced Custom Fields Pro as well. I’m sure as with synergy320 this plugin is pretty vital to our sites. Could you take a look at the error at least with Avia Builder?
Uncaught Error: cannot call methods on sortable prior to initialization; attempted to call method 'toArray'jquery.js?ver=1.11.1:2 m.extend.errorwidget.min.js?ver=1.11.2:11 (anonymous function)jquery.js?ver=1.11.1:2 m.extend.eachjquery.js?ver=1.11.1:2 m.fn.m.eachwidget.min.js?ver=1.11.2:11 a.widget.bridge.a.fn.(anonymous function)postbox.min.js?ver=4.1.1:1 (anonymous function)jquery.js?ver=1.11.1:2 m.extend.eachjquery.js?ver=1.11.1:2 m.fn.m.eachpostbox.min.js?ver=4.1.1:1 postboxes.save_orderavia-builder.js?ver=0.8:135 $.AviaBuilder.place_topavia-builder.js?ver=0.8:118 $.AviaBuilder.set_upavia-builder.js?ver=0.8:107 $.AviaBuilderavia-builder.js?ver=0.8:1370 (anonymous function)jquery.js?ver=1.11.1:2 m.Callbacks.jjquery.js?ver=1.11.1:2 m.Callbacks.k.fireWithjquery.js?ver=1.11.1:2 m.extend.readyjquery.js?ver=1.11.1:2 J
Not to hijack this thread, but I’m having the same issue as well and am using WordPress HTTPS as suggested by Yigit. All components of the site are secure except the path to custom fontello font uploads. It’s the only thing in the console that is http vs. https. Seems like wherever the path is called needs to be relative.
Any solutions?
Hi!
So I think I figured it out, I had to change the following to be a resolution above 990px:@media only screen and (max-width: 989px) { .html_mobile_menu_tablet .main_menu , .html_mobile_menu_tablet #header_main_alternate{display:none;} .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide{display:block;} .html_mobile_menu_tablet #mobile-advanced{display:block;} }
Hey, so the toggle menu shows up, but when it’s above 990px the menu doesn’t show up on top of the content and everything is thrown off. Is there something else I need to change?
How about if I wanted to have it be bigger than 990px? For instance on desktop resolutions?
Thanks so much Dude, that did the trick!
Ismael, I also really appreciate your help on this too!
Yes it is a page
I must be doing something wrong. Here is what I have…
Code://now we got everything we need to preapre the output
foreach($sorted as $key => $post_type)
{
if(isset($post_type_obj[post]->labels->name))
{
$output .= “<h4>Articles</h4>”;
}
elseif(isset($post_type_obj[$key]->labels->name))
{
$output .= “<h4>”.$post_type_obj[$key]->labels->name.”</h4>”;
}
else {
$output .= “
“;
}I’ve cleared browser cache, tried other browsers and have even purged CDN cache, object cache and page-cache (I use WP Engine) and it still looks like this…
Hi Ismael – Still having the same results :(
Hi Ismael,
I tried the code mentioned above and now it’s repeating both areas as Articles. Any ideas?
-
AuthorPosts