GithubHelp home page GithubHelp logo

Comments (9)

gregpriday avatar gregpriday commented on June 15, 2024 1

This is the specific issue that'll remove our need for the data dump siteorigin/siteorigin-panels#135

I'm starting on this now.

from docs.

danFWD avatar danFWD commented on June 15, 2024

Very old issue but one that needs updating. The answer to the original poster's question: the data-dump actually occurs on the edit page in admin. However, there is a bug - the php is dumped as an HTML comment, but if there are HTML comments within the content itself, then it prematurely closes the opening comment tag and cause the admin page to break.

My suggestion for the developers is to htmlspecialchars() the php dump and place it within a textarea for easy viewing/copying. Otherwise, the embedded comment tags will either have to be stripped or encoded somehow.

from docs.

Misplon avatar Misplon commented on June 15, 2024

Hey @danFWD thanks for raising this. What we'll do is introduce a change to Page Builder 2.5 that will allow you to register JSON layouts. That way you can build your prebuilt, click Layouts > Export and download the JSON file and then register it as the theme level prebuilt layout. We expect to launch version 2.5 beta to developers next week. The developer newsletter signup form is here, we'll let everyone know when it's out. Thanks for your support.

from docs.

danFWD avatar danFWD commented on June 15, 2024

Sounds like a much better plan. Thanks for your hard work!

from docs.

danFWD avatar danFWD commented on June 15, 2024

Hello, to follow up on this, I see that there is now a way to export and import a layout in JSON format with the 2.5 update. I was just wondering, can we use those JSON files to register a pre-built layout so that it's selectable in the Theme Defined layouts panel?

from docs.

Misplon avatar Misplon commented on June 15, 2024

Sorry for the delay, Greg will hit us up with the new inclusion method as soon as he has a moment to spare. I'll follow-up as soon as I know more.

from docs.

danFWD avatar danFWD commented on June 15, 2024

Okay, great. I'm trying at the moment to use the 'pb_custom_prebuilt_layouts' filter with file_get_contents and then json_decode on the exported JSON files. So far, no luck getting it to register.

from docs.

suganyaselvakumar avatar suganyaselvakumar commented on June 15, 2024

I got it,
function mytheme_prebuilt_layouts($layouts){
$layouts['home-page'] = array(
// We'll add a title field
'name' => __('Default Home', 'vantage'), // Required
'description' => __('Default Home Description', 'vantage'), // Optional
'screenshot' => plugin_dir_url( FILE ) . 'images/layout-screenshot.png', // Optional
'filename' => get_template_directory() . '/jsonfile.json',
);
return $layouts;

}
add_filter('siteorigin_panels_prebuilt_layouts','mytheme_prebuilt_layouts');

from docs.

Misplon avatar Misplon commented on June 15, 2024

Hi :) If anyone is still interested, this can now be done by exporting a JSON layout and then including it as follows:

https://github.com/siteorigin/siteorigin-corp/blob/develop/inc/siteorigin-panels.php#L11-L18

https://github.com/siteorigin/siteorigin-corp/tree/develop/inc/layouts

Hope that helps.

All the best.

from docs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.