DeoThemes
Forum Replies Created
-
Forum: Plugins
In reply to: [Breadcrumb NavXT] bcn_settings_init ReplacementThanks for the explanation. I was using this filter in our themes to simply modify the breadcrumbs separator and replace the site title with the word Home. I wonder how to achieve it now? Should I use native update_option to achieve it?
Forum: Plugins
In reply to: [Breadcrumb NavXT] 7.0 Fatal errors – detailed infoFatal error: Uncaught Error: Call to a member function get_value() on string in C:\Users\samok\Local Sites\estand\app\public\wp-content\plugins\breadcrumb-navxt\includes\adminKit\class-mtekk_adminkit.php:538
Yes, I can confirm that. Even when I set the Product Images setting to uncropped the images are still squared. Please fix.
Forum: Plugins
In reply to: [One Click Demo Import] WooCommerce auto generated pagesHi @capuderg,
get_page_by_title( ‘Shop’ ) is not perfect either, since after WooCommerce activation there is already a page with a name Shop. Upon fresh WooCommerce activation, it generates pages Shop, Cart, Account etc with the ID’s between 1-20, I’ve tested it multiple times. There is a possibility that the user deleted these default pages and recreated them, but it’s a very rare case I think. But to make it more accurate, maybe we can check if the pages Cart, Shop, Account already exist, and if not, we can assign our imported pages, but if there are some, the new imported pages will have slugs cart-2, shop-2 etc, we can assign them.
Cheers.
Forum: Plugins
In reply to: [One Click Demo Import] WooCommerce auto generated pagesThe problem is that WooCommerce generating pages upon activation. So the only way I found is to assign our demo-content pages by ID after import is completed.
update_option( 'woocommerce_shop_page_id', 198 );
@rizwan681 This helps, I wonder why is it not merged in the core?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Remove Plugin AssetsHi,
When I try to remove font-awesome deps it’s not working. Can you assist what might be wrong?
function arendelle_dequeue_yith_wcwl_font_awesome_styles( $deps ) { $deps = array( 'jquery-selectBox' ); return $deps; } add_filter( 'yith_wcwl_main_style_deps', 'arendelle_dequeue_yith_wcwl_font_awesome_styles' );
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Can’t remove action@webnetyapi I figured out to remove it with:
if ( function_exists( 'YITH_WCQV_Frontend' ) ) { remove_action( 'init', array( YITH_WCQV_Frontend(), 'add_button' ) ); }
It would be much easier if there is a hook for developers that never change.
- This reply was modified 4 years ago by DeoThemes.
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Can’t remove actionI don’t know what happened but it stopped working again ?? My script was working fine with 1.4.8.
What is the easy and proper way to remove button from the code without hiding it with CSS?
- This reply was modified 4 years ago by DeoThemes.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Updating font-awesome 5.xI completely understand backward-compatibility problem, but maybe just provide a simple filter for developers to deregister font-awesome completely, since it has huge effect on site performance. We want to replace font awesome icons with our own icons, but I can’t find any simple way to achieve it. When I looked at your code all styles are hard-coded and font awesome is listed as a dependency, so I can’t disable it without disabling main styles.
$deps = apply_filters( 'yith_styles_deps' ); wp_register_style( 'yith-wcwl-user-main', $style_url, $deps, $this->version );
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Can’t remove actionNevermind, solved it with:
if ( function_exists( 'YITH_WCQV_Frontend' ) ){ remove_action( 'woocommerce_after_shop_loop_item', array( YITH_WCQV_Frontend(), 'yith_add_quick_view_button' ), 15 ); }
The warnings are correct, they are displayed if the web admin has php warnings settings enabled, but it does not affect the functionality of the ordering widget.
Yes, but it’s affecting functionality of Elementor. With these warnings you can’t edit anything with Elementor.
I’m having similar issue, you guys should test everything with WP_DEBUG set to true before releasing, since there are many undefined indexes:
Notice: Undefined index: localize in \app\public\wp-content\plugins\menu-ordering-reservations\includes\modules\gutenberg\class-glf-module-gutenberg.php on line 118
Notice: Undefined index: class in \app\public\wp-content\plugins\menu-ordering-reservations\includes\utils\class-glf-utils.php on line 217
Forum: Themes and Templates
In reply to: [Everse] Header menu in mobile toggle not showingFixed, please check the recent version.
Forum: Themes and Templates
In reply to: [Everse] Header menu in mobile toggle not showingThanks for the heads up. We’re investigating the bug and will release update soon.
Regards.- This reply was modified 4 years, 2 months ago by DeoThemes.