Category WordPress

[Solved] How to upgrade WordPress automatically?

By default WordPress automatically updates itself, plugins, and themes. If your WordPress install doesn’t do that then you probably have something that disables this. You can check your theme for something like this add_filter(‘auto_update_plugin’, ‘__return_false’); add_filter(‘auto_update_theme’, ‘__return_false’); And/Or in your…

[Solved] [Solved] How to upgrade WordPress automatically?

By default WordPress automatically updates itself, plugins, and themes. If your WordPress install doesn’t do that then you probably have something that disables this. You can check your theme for something like this add_filter(‘auto_update_plugin’, ‘__return_false’); add_filter(‘auto_update_theme’, ‘__return_false’); And/Or in your…

[Solved] [Solved] [Solved] How to upgrade WordPress automatically?

By default WordPress automatically updates itself, plugins, and themes. If your WordPress install doesn’t do that then you probably have something that disables this. You can check your theme for something like this add_filter(‘auto_update_plugin’, ‘__return_false’); add_filter(‘auto_update_theme’, ‘__return_false’); And/Or in your…

[Solved] Woocommerce category description as subtitle

There is an extra hook you can use for this woocommerce_archive_description, hook into it like this: add_action( ‘woocommerce_archive_description’, ‘wc_category_description’ ); function wc_category_description() { if ( is_product_category() ) { global $wp_query; $cat_id = $wp_query->get_queried_object_id(); $cat_desc = term_description( $cat_id, ‘product_cat’ ); $subtit=”<span…

[Solved] How to add wordpress username after url?

You can do <?php if( get_current_user_id() ): // check if user is loggedin $current_user = wp_get_current_user(); //get user ?> <a href=”https://direktoriku.com/shopping/?user=<?php echo $current_user->user_login;?> <button>Click me</button> </a> <?php endif;?> 1 solved How to add wordpress username after url?