Forum Replies Created
-
AuthorPosts
-
Hi,
Which version of Color swatch are you using? and which product layout are you using? Please let me know, I will try to give you the solution.Thank you
Hi Tomi,
I will discuss with my team about this feature but I can not sure it will available in next update or not.Please see
function claue_change_portfolio_slug() { // get the arguments of the already-registered taxonomy $portfolio_cat_args = get_taxonomy( 'portfolio_cat' ); // returns an object // make changes to the args // in this example there are three changes // again, note that it's an object $portfolio_cat_args->show_admin_column = true; $portfolio_cat_args->rewrite['slug'] = 'your_new_portfolio_slug_here'; $portfolio_cat_args->rewrite['with_front'] = false; // re-register the taxonomy register_taxonomy( 'portfolio_cat', 'your_new_portfolio_slug_here', (array) $portfolio_cat_args ); } // hook it up to 11 so that it overrides the original register_taxonomy function add_action( 'init', 'claue_change_portfolio_slug', 11 );
February 7, 2018 at 9:53 pm in reply to: Using THE GRID plugin to take over the layout of main post category pages… #16861This reply has been marked as private.Hi,
Sorry to keep you wait. Please use the custom CSS code below
.summary .woocommerce-Price-currencySymbol { margin-right: 10px; }
Hello Rahim,
I’m sorry I don’t have any idea about this solution. But I made a quick check with Digits plugin and I think it compatible with our theme.
Hi,
Did you fix by yourself? I did not see any problem hereFebruary 7, 2018 at 9:33 pm in reply to: Base price only in product details but not in product listing #16853It’s is
.products .product .price-unit { display: none; }
Hi,
Sorry to keep you wait. Please use the custom CSS code below
Cheers,
FosterHi,
Sorry to keep you wait. I have checked, and I did not see any error, could you please explain a little bit more?
-
AuthorPosts