Home Forums WoodMart support forum How to build this

How to build this

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #26483

    Weiching
    Participant

    Hello,

    How to build this.

    Attachments:
    You must be logged in to view attached files.
    #26497

    Artem Temos
    Keymaster

    Hi,

    We are glad to know that you considered using WoodMart for your web-site. I hope you will be happy with it.

    It is a default HTML table. Here is an example code from our demo website

    <table>
       <tbody>
          <tr>
             <th>Resolution</th>
             <td>2160p (4K)</td>
          </tr>
          <tr>
             <th>Hard Drive Capacity</th>
             <td>500 GB</td>
          </tr>
          <tr>
             <th>Drive Type</th>
             <td>Blu-ray</td>
          </tr>
          <tr>
             <th>Processor</th>
             <td>AMD 8-Core</td>
          </tr>
          <tr>
             <th>Output</th>
             <td>HDMI</td>
          </tr>
       </tbody>
    </table>

    Regards

    #26502

    Weiching
    Participant

    Hi,

    Is it possible to show Attributes here?

    #26530

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the functions.php file in the child theme

    remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);
    add_action('woocommerce_single_product_summary', function() {
    	global $product;
    	do_action( 'woocommerce_product_additional_information', $product ); 
    }, 20);

    Regards

    #26588

    Weiching
    Participant

    Thank you.

    #26594

    Artem Temos
    Keymaster

    You are welcome!

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘How to build this’ is closed to new replies.