Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #314713

    Hello,
    I have a problem when I use layer slider. I’ve just installed WP 4.0.
    When I insert the layer slider, the content under has some problem. If I insert the content inside a color section it maintains the width of 1030, but if I put the content inside a 1/1 column, the content expands full page and the footer also has formatting problem.
    I am the only one to have this situation?

    thanks for support

    #314779

    Hi Gurify!

    This is the first I’ve heard of anyone having that kind of issue. Are you using Enfold 2.9.2?

    Can we see the page with an example of the issue?

    Best regards,
    Devin

    #315696
    This reply has been marked as private.
    #315923

    Hey!

    This is how it looks on my end – http://imgur.com/a/bwJZk
    Can you please post a screenshot and show the issue you are seeing?

    Cheers!
    Yigit

    #316311
    This reply has been marked as private.
    #317061

    Hey!

    That’s expected, if you use ALB on a page/post/cpt the file that gets rendered is template-builder.php.

    Best regards,
    Josue

    #317177

    Thanks for the patience, but please help me to clarify something.

    I have a custom post ( ex “hotel” ).
    I set in the config-templatebuilder > … > meta.php file to use ALB in this custom post.
    but if I use the Advanced Layer Slider i can’t see it on the page of my custom post, but I see a white box.
    Where is the mistake?

    and If I want to make a custom template for this custom post am I going to take the code inside the template-builder.php and put in a file called what?

    thanks a lot!

    #318542

    Hi!
    The first important things I need to know before continue the debugging are:

    1) With custom post type is it possibile to use Advanced Layer Slider?
    2) Are there some avia shortcodes that are not working in a custom post type or custom fields like a textarea?

    thanks a lot!

    #318559

    Hi!

    1. Yes, use this code in functions.php (change “custom-post-type”):

    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio', page', 'custom-post-type'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('portfolio', page', 'custom-post-type'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('portfolio', page', 'custom-post-type'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }

    2. As far as i know, no.

    Cheers!
    Josue

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