Home › Forums › Basel support forum › Search
Search
- This topic has 12 replies, 2 voices, and was last updated 7 years, 1 month ago by Artem Temos.
-
AuthorPosts
-
November 29, 2017 at 1:02 pm #26200
OscarParticipantHi there
Can I delete the search icon (header top right) so I can have a search page as a seperate page?
ThanxNovember 29, 2017 at 2:42 pm #26213
Artem TemosKeymasterHi,
Search icon can be disabled in Theme Settings -> Header -> Other.
Regards
November 29, 2017 at 2:43 pm #26216
OscarParticipantThanx
and then? second part of my question please thanxNovember 29, 2017 at 2:44 pm #26218
Artem TemosKeymasterWhat do you mean by separate search page? You can create a page in Dashboard -> Pages and place search form widget inside it.
November 29, 2017 at 2:49 pm #26222
OscarParticipanton admin back panel it has only WP SEARCH
and it only searches products
But I need a text search all through the site.November 29, 2017 at 2:52 pm #26225
Artem TemosKeymasterSorry, but there is no such kind of search mechanism in WordPress and in our theme.
November 29, 2017 at 2:58 pm #26230
OscarParticipantstrange
No plugin?November 29, 2017 at 3:40 pm #26239
OscarParticipantAny plugin to do that?
By th way can I ask another question: On product detaşl page (compact version)
There is SKU product code. I need that SKU code to appear just under title before the description. How can we do that please?(On your demo you dont have SKU but normally SKU should appear under description just above Category: New brands. But I need that under the product title
https://demo.xtemos.com/basel/shop/other/new-brands/yomber-jacket-trim/November 29, 2017 at 3:58 pm #26250
Artem TemosKeymasterSorry, we don’t know any plugin for that.
To move the SKU under the title add this to functions.php file in the child theme
add_action( 'woocommerce_single_product_summary', 'basel_sku_under_title', 6 ); function basel_sku_under_title() { global $product; if ( $product->get_sku() ) { echo 'SKU: ' . $product->get_sku(); } }
and this snippet to CSS
.single-product .product_meta span.sku_wrapper { display: none; }
November 29, 2017 at 7:11 pm #26277
OscarParticipanttHANX
I dont have child theme. So to use child theme what I have to do? What should be the structure? Do you have a structural schema? Or can you write down or send me a prnt screen image of child theme folder and its contents please. And what files I should have in child theme to achieve above thing you said. ThanxNovember 30, 2017 at 7:27 am #26309
Artem TemosKeymasterYou can get child theme from the package downloaded on themeforest. It contains all the required files. So you just need to install and activate it to be able to use it.
November 30, 2017 at 7:33 am #26314
OscarParticipantThank you. One last question here: I m using simplified header layout. And on the menu I want to add a menu item called CATEGORIES so when user clicks on it a Categories page opens so user only sees category list as thumbs. No product list. To do this do I have to create a categories page so I add category thumbs or just one link button does this basically is there a category list template in the theme? thanx
November 30, 2017 at 9:23 am #26348
Artem TemosKeymasterYou can create a page using our Visual Composer “Product categories” element for this purpose.
-
AuthorPosts
- You must be logged in to create new topics. Login / Register