Make carlos
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Veritcle menu with 3 leval – need column in 3rd leval menuOkay thank you. I will check
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: Fixing WordPress
In reply to: Autoloaded options issue in site HealthAdjusting the threshold for large options
add_filter( 'wp_max_autoloaded_option_size', 'my_max_autoload_option_size' );
function my_max_autoload_option_size( $size ) {
// Reduce the threshold for large sizes to 100K (Default is 150K).
return 100000;
}If you want to change the size threshold for when options should no longer be autoloaded, you can use the new?
wp_max_autoloaded_option_size
?filter. Increasing this value is not recommended, as it could lead to slower performance.Forum: 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://www.ads-software.com/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/Mn0DJh9miRoDForum: Plugins
In reply to: [Easy Booking for WooCommerce] Sunday should be disable as start dateHi
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
ThanksForum: Plugins
In reply to: [WooCommerce Google Feed Manager] GTIN selection from dropdownHi
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
Make