Pro WooCommerce Single Page Customization

It is completely empty!
Please sow as you see how to work with your template, for example, using Phpshorm, do you have Github? Where can I read the hooks?

~/wp-content/themes/pro-child/functions.php

 <?php

// =============================================================================
// FUNCTIONS.PHP
// -----------------------------------------------------------------------------
// Overwrite or add your own custom functions to Pro in this file.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Enqueue Parent Stylesheet
//   02. Additional Functions
// =============================================================================

// Enqueue Parent Stylesheet
// =============================================================================

add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );



// Additional Functions
// =============================================================================

Hi @shumuher,

Yes, it’s completely empty.

Please add the code below after Additional Functions

function x_ethos_entry_top_navigation() {

}

For example

<?php

// =============================================================================
// FUNCTIONS.PHP
// -----------------------------------------------------------------------------
// Overwrite or add your own custom functions to Pro in this file.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Enqueue Parent Stylesheet
//   02. Additional Functions
// =============================================================================

// Enqueue Parent Stylesheet
// =============================================================================

add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );



// Additional Functions
// =============================================================================

function x_ethos_entry_top_navigation() {

}

For more information kindy refer to the links below

Thanks

If we use a child theme, then updates will not be available to us?

Hi Shumuher,

Updates will still be available when using a child theme.

Kindly take time to review the links below.


Thanks

So, this question I decided

function x_ethos_entry_top_navigation() {
remove_action( 'init', 'x_ethos_entry_top_navigation' );
}

If you click

Lightbox will appear.
But it covers the header menu

Help please figure it out!

Thanks a lot for your help!!!

Hi @shumuher,

Sure, please add this CSS to your custom CSS (Like Theme Options > CSS or child theme’s CSS).

.pswp {
 z-index: 999500 !important;
}

There is no available option for this since it’s Woocommerce feature, it has to be overriden through CSS.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.