how to edit woocommerce checkout page
this solves the issue here: .woocommerce .col-1, .woocommerce .col-2 { max-width:none; }
this solves the issue here: .woocommerce .col-1, .woocommerce .col-2 { max-width:none; }
Please try disabling all your Plugins by going to your File Manager through cpanel, in wp-content folder rename the plugins folder to “Plugins-old” and then check if the homepage is back. If it is not then try disabling the themes by renaming the folder the same way as well. If the homepage still isn’t back … Read more
Looks like you are trying to get a link to next/previous pagination results on a single(single.php) view which it doesn’t make sense to me. Please refer to the docs: https://codex.wordpress.org/Function_Reference/posts_nav_link For archive view: For displaying next and previous pages of posts see next_posts_link() and previous_posts_link(). For single view: For displaying next and previous post navigation … Read more
which template should I use for single category post?
archive product page overwrite into your current active theme. More detail wp_is_mobile() <?php // archive product page if( wp_is_mobile() ) { // your costume template path }else{ // Woocommerce defult archive page code put into else part } ?> Hope is work for you
You are not using all possibilities of the get_custom_logo filter. As you can see from the source not only the $html is passed to it, but also the $blog_id. You can use the latter to do a preg_replace on the link like this: add_filter (‘get_custom_logo’,’wpse305624_change_logo_link’,10,2); function wpse305624_change_logo_link ($html,$blog_id) { $homelink = get_home_url (); $bloglink = … Read more
I got the solution as @Sally CJ posted comment in my question. Setting quicktags to true did the job for me.
It’s not really the Customizer that stores the changes, sort of. All changes to a theme’s settings are done by the theme settings code, and are stored (usually) in the wp-options table (although a theme might have it’s own table where it stores settings). So, if you make changes via the theme’s Customizer interface, the … Read more
Conceptually wp_add_inline_style adds some lines as if they were concatenated to a style file. This means that your setup will only work if you are adding the inline style to a style file loaded in the footer, because by the time you are calling add_inline_style in a template the header has already been assembled. That … Read more
remove_action(‘genesis_header’,’genesis_do_header’) hook not working