Make carlos
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Veritcle menu with 3 leval – need column in 3rd leval menuOkay please check this screenshot. what i am trying to achieve.
left side section is submenu and right side one sub sub menu. Please check content Up and down
https://snipboard.io/i295hK.jpg
I hope that make sense now ?Forum: Plugins
In reply to: [Max Mega Menu] Veritcle menu with 3 leval – need column in 3rd leval menuThank you for your message. As you know only parent level have settings for adding columns like 2 columns and 3 columns etc but I need that column in sub menus(sub sub), is this possible with pro version ?
Forum: Plugins
In reply to: [Max Mega Menu] Veritcle menu with 3 leval – need column in 3rd leval menuclass Custom_Walker_Nav_Menu extends Walker_Nav_Menu {
function start_lvl( &$output, $depth = 0, $args = null ) {
// Call the parent function to maintain default behavior
parent::start_lvl( $output, $depth, $args );
// Check if we're in a second-level menu
if ( $depth === 1 ) {
// Add your custom HTML before the second-level menu
$output .= '<div class="menu-section">';
$output .= '<div class="top-menu-content">';
$output .= '<h2>' . esc_html( $args->item->title ) . ' Programs</h2>';
$output .= '<p>' . get_post_meta( $args->item->ID, 'menu_description', true ) . '</p>';
$output .= '</div>';
}
}
}
// Usage in wp_nav_menu
wp_nav_menu( array(
'theme_location' => 'your_menu_location',
'walker' => new Custom_Walker_Nav_Menu(),
) );If i use custom walker menu then does it apply to override mega menu or not ?
Please adviceForum: Plugins
In reply to: [Max Mega Menu] Veritcle menu with 3 leval – need column in 3rd leval menuHi
Okay thanks for your reply. I got your point but i need another question.
I need to show content before and after submenu and this is for second level submenu and as per your plugin we can add columns and html, image etc on parent level.
So how can we do for second child level menu ? Is there any hook available to show content before and after ?Forum: Plugins
In reply to: [WooCommerce] Problem with pagination on woocommerceHi
Looks like issues with the Porto theme. Please switch theme to default one and check the pagination.
ThanksForum: Plugins
In reply to: [WooCommerce] Cart and Checkout Block Action HooksHi @doublezed2
Thanks and i can understand but there is no document where we can have filter hooks to get the result. there is no hook for block based cart ?
Can’t find out any proper document where to startForum: Plugins
In reply to: [WooCommerce] Cart and Checkout Block Action HooksHi @omarfpg
any thought on this please:
https://wordpress.org/support/topic/block-based-cart/
ThanksHi @smashbaloon
I am facing same issues, Please check attached screenshot.
Plugin is already update with generated new short code but still same issues
https://prnt.sc/Mn0DJh9miRoDHi
Any reply on this please.
Thanks<?php global $post; $postType = $post->post_type; $sharing_meta = get_post_meta( $post->ID, '_heateor_sss_meta', true ); if ($sharing_meta['sharing'] != '1') { // Add your shortcode here if sharing is not equal to '1' echo do_shortcode('[your_shortcode_here]'); } ?>You mean like this yes ? Please confirm
Thanks
MakeHi
Or else How do i get email template by ID?
admin.php?page=mailpoet-newsletter-editor&id=177
For example i need to use HTMl design of ID = 177 in my custom script
So HTML template design should be dynamic in my custom script. If i do some changes in my Email Template so those updates email template i can get in my custom script.
Thanks
MakeForum: Plugins
In reply to: [WooCommerce] get_post_meta not workedHi
have you tried this ?
$order_data = $order->get_meta(‘_my_custom_key’);get_post_meta( $order_id, 'your_meta_key', true );This is NOT compatible with HPOS – High Performance Order Storage
ThanksHi
Sorry for the late reply. I have more questions for GTIN.
Q1. Suppose one of category have 200 Products and those products do not have any GTIN. so i have selected options like this:
https://i.imgur.com/kdlUjPm.png
is this correct ? Do we must have GTIN for All the products ? Google will accept our products without GTIN ? Please advice
Q2. We have variable products as well and as you know we can’t have GTIN for each variations for example we have 10 variations then we do not have different GTIN for each. in this condition what settings we need to do in feed ? Please advice with screenshot.
Right now google have disapproved our alomost all the products due to GTIN as per my above questions
Thanks
MakeForum: Plugins
In reply to: [Contact Form 7] Bravo Add on option not showingHi
Thanks but this is totally admin side option where i can see that tab ?
I don’t think you need front side for this ? Once its enable from admin side we can so in front side settings
Please adviceForum: Plugins
In reply to: [WooCommerce] How to hide out of stock products on category pagesHi
// Hide out-of-stock products on category pages function hide_out_of_stock_products_on_category_pages( $query ) { if ( $query->is_main_query() && $query->is_tax( 'product_cat' ) ) { $query->set( 'meta_query', array( array( 'key' => '_stock_status', 'value' => 'instock', 'compare' => '=' ) ) ); } } add_action( 'pre_get_posts', 'hide_out_of_stock_products_on_category_pages' );This code uses the
pre_get_postsaction hook to modify the main query for category pages (product_cattaxonomy) and includes a meta query to filter out products with the_stock_statusmeta key set to ‘instock’. This will hide any out-of-stock products from being displayed on category pages.Remember to save the changes and clear any caching plugins or server caches for the modifications to take effect.
- This reply was modified 2 years, 11 months ago by Kathryn Presner.
- This reply was modified 2 years, 11 months ago by Kathryn Presner. Reason: put the function in a code block