rzvcuceu
Forum Replies Created
-
you can inspect the form and overwrite with your own CSS
Thank you, this helped. Was ACF that was causing the issue, I updated it and now it’s all good.
Forum: Plugins
In reply to: [WooCommerce] Show notice after logout@riaanknoetze thank you for your reply. What I could come up with it’s this, but still notice isn’t shown.
add_action('template_redirect', 'logout_notice'); function logout_notice() { global $wp; if ( isset( $wp->query_vars['customer-logout'] ) && 'true' === $wp->query_vars['customer-logout'] ) { wc_add_notice( __( 'You have been logged out.' ) , 'success' ); } }Do you have any idea?
Forum: Plugins
In reply to: [Polylang] Tie two post togetherI found a solution for this, that wasn’t specified nowhere on the internet about. So basically there’s an hidden input field where you can put the other language post ID and save it, and the post will be related together.
I see that your stylesheet is minified, you can go to your stylesheet in “wp-content/themes/storefront/style.css”, and you write at the very bottom:
.site-header{
margin-bottom: 0;
}Forum: Plugins
In reply to: [Ultimate Product Catalog] Moved to new hosting > Products are goneI had the same issue and the solution was to go to the MySql database and change from the db the table names from the plugin like that:
wp_upcp_categories –> wp_UPCP_Categories
wp_upcp_item_images –> wp_UPCP_Item_Images
…and so on.“UPCP” has to be with capital letters and each word after underscore must start with a capital letter.
Hope it works for you.
That is great!
How this can be done for when the user is searching? I think the search is using the products filter, or isn’t?Thank you.
The simplest, but not the best practice will be to create another attributes like 11″-13″, 13″-17″, etc, attach them to products and make them hidden on the product page. Those will be used only for filtering.
Forum: Themes and Templates
In reply to: [NewGamer] Menu links in centerHi Bojan,
My website is on my local machine, so I can’t show it to you. You can see the theme here.
Forum: Themes and Templates
In reply to: I accidentally deleted all of my pages?do you have your pages it you look in admin panel at Pages>All Pages?