Masonry tiles

Hi,
why is muffin builder / Blog style masonry tiles working on pages and not on posts?

here an example (you can see the 10 boxes at the bottom of the page):

thanks

Comments

  • Hi,
    I cannot see the issue because that post page is not working (404 error)
    Also, remember that "Posts" item does inherit options from Theme Options > Blog, Portfolio & Shop > Blog

    If you're using the "Blog" item, then these options from Theme Options are overwritten by item settings.
    So, if you want to have "Blog Masonry Tiles" style, then you have to change it in the Theme Options > Blog, Portfolio & Shop > Blog
    Thanks
  • This is the correct page where it's not showing
    http://www.dreamtimeviaggi.it/develop/giordania/
    I configured the blog item options in the same way I configured in the working page
  • Hi,
    Please disable all of the plugins, clear the cache of your browser and check if the issue still exists.
    THanks
  • Just tried.
    Disabled all plugins
    Cleared cache and tried with different browser both desktop and mobile.
    Blog masonry tiles style is not showing in posts..
  • Please update your theme to the latest version.
    You're using old version of BeTheme.

    Thanks
  • I updeated theme.
    Result: my child theme is no more working (white page) (why??)
    masonry tiles is not working (in the same way)

    actually I set the default betheme (not child)
  • In the newest version, we changed the way how the child theme works.
    To make your Child Theme work again,  you need to replace mfn_opts_show() with echo mfn_opts_get() in the functions.php file in the child theme.

    After fixing your child theme, please send us WordPress dashboard access privately thru the contact
    form which is on the right side at
    http://themeforest.net/user/muffingroup#contact and we will check what
    might be the reason.

    Notice!
    Please attach a link to this forum discussion.


    Thanks
  • It's quite strange. I have no mfn_opts_show in my child functions.php

    this is my file


    /* ---------------------------------------------------------------------------
     * Child Theme URI | DO NOT CHANGE
     * --------------------------------------------------------------------------- */
    define( 'CHILD_THEME_URI', get_stylesheet_directory_uri() );


    /* ---------------------------------------------------------------------------
     * Define | YOU CAN CHANGE THESE
     * --------------------------------------------------------------------------- */

    // White Label --------------------------------------------
    define( 'WHITE_LABEL', false );

    // Static CSS is placed in Child Theme directory ----------
    define( 'STATIC_IN_CHILD', false );


    /* ---------------------------------------------------------------------------
     * Enqueue Style
     * --------------------------------------------------------------------------- */
    add_action( 'wp_enqueue_scripts', 'mfnch_enqueue_styles', 101 );
    function mfnch_enqueue_styles() {

    // Enqueue the parent stylesheet
    // wp_enqueue_style( 'parent-style', get_template_directory_uri() .'/style.css' ); //we don't need this if it's empty

    // Enqueue the parent rtl stylesheet
    if ( is_rtl() ) {
    wp_enqueue_style( 'mfn-rtl', get_template_directory_uri() . '/rtl.css' );
    }

    // Enqueue the child stylesheet
    wp_dequeue_style( 'style' );
    wp_enqueue_style( 'style', get_stylesheet_directory_uri() .'/style.css' );

    }


    /* ---------------------------------------------------------------------------
     * Load Textdomain
     * --------------------------------------------------------------------------- */
    add_action( 'after_setup_theme', 'mfnch_textdomain' );
    function mfnch_textdomain() {
        load_child_theme_textdomain( 'betheme',  get_stylesheet_directory() . '/languages' );
        load_child_theme_textdomain( 'mfn-opts', get_stylesheet_directory() . '/languages' );
    }

    require_once( get_stylesheet_directory() .'/includes/content-post.php' );

  • Ok, I found the reason for the white screen after update

    Now it's updated but masonry tiles are not working in posts.
  • Hi,
    Please send us WordPress dashboard access privately thru the contact
    form which is on the right side at
    http://themeforest.net/user/muffingroup#contact and we will check what
    might be the reason.

    Notice!
    Please attach a link to this forum discussion.


    Thanks
  • edited March 2019
    I sent it few hours ago
  • Sorry, but these login credentials you sent are not working.
    Please send them once more, but now test them if they works before sending them.
    Thanks
  • Created new credentials
    Checked and sent again
  • edited March 2019
    You didn't turn on a "Builder" template
    http://prntscr.com/n4nuba

    It's really necessary to turn that option on if you want to add some content using the Muffin Builder in single post feature.

    I changed the template to the builder(on that page:http://www.dreamtimeviaggi.it/develop/giordania/) and everything works fine.
    Thanks
  • Thanks, it works in this way.
    Switching from default to builder template changes something else in the layout?


  • Yes, the builder template is just a blank page to fill. The default places the featured image and some information by default.
    thanks
Sign In or Register to comment.