Giter VIP home page Giter VIP logo

Comments (3)

andrew-worsfold avatar andrew-worsfold commented on July 24, 2024 3

WooCommerce products should already work, though we can look to refine the experience. The WooCommerce extension (available on GitHub and soon in the WordPress plugin repo) adds a few elements too.

I like the idea of applying the Tailor interface in other areas of WordPress, though this hasn't been a priority up to now. I will have a think about it, but would love to hear ideas or receive pull requests in the meantime. If it can be done in a way that's not intrusive or confusing to users, great (perhaps an extension is the best option here).

from tailor.

ManUtopiK avatar ManUtopiK commented on July 24, 2024 1

I made a little hack to provide ability to Tailor header of a site.
This code is in the area where I want a Tailor canvas. (Here in my header.php)

global $post;
$post_slug=$post->post_name;

$header = get_posts( array(
    'name' => 'header',
    'post_type' => 'page'
) );
if ($header) {
    if (!tailor()->is_canvas() || $post_slug == 'header') {
        echo do_shortcode($header[0]->post_content);
    } else {
        ?>
        <div class="container notification is-warning">
            <button class="delete"></button>
            <?php echo sprintf(__('Pour configurer l\'entête, <a href="%s">cliquer ici</a> ', 'hwsk'),
                esc_url(get_page_link($header[0]->ID)) . '?tailor=1'); ?>
        </div>
        <?php
    }
}

Just create a page with the name "header" to Tailor it!

from tailor.

ManUtopiK avatar ManUtopiK commented on July 24, 2024

Just to say, I do echo do_shortcode($header[0]->post_content); and not echo apply_filters('the_content', $header[0]->post_content); because the filter canvas_content override content with canvas elements.
The filter tailor_canvas_content come after overriding content...

from tailor.

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.