Home › Forums › WoodMart support forum › Categories with SVG icons
Categories with SVG icons
- This topic has 59 replies, 3 voices, and was last updated 6 years, 10 months ago by Artem Temos.
-
AuthorPosts
-
February 12, 2018 at 1:05 pm #39165
Artem TemosKeymasterIn this case, you need to contact plugins developers for help.
February 12, 2018 at 9:40 pm #39347
bubienokParticipantwhats the name of plugin ?
can I setup this plugin?
why the answer of searching is ,,no post found,, ? but I want to find product, not post.
February 12, 2018 at 10:17 pm #39349
bubienokParticipantthere is not question ,, Search for product,, but ,,Search for project,,
thats wrong
February 13, 2018 at 7:13 am #39379
Artem TemosKeymasterSorry, but we are a bit confused now. Could you please describe the problem you have now?
February 15, 2018 at 9:41 pm #40159
bubienokParticipantHi
please look at attached picture
is it OK ,,Search for project,, ?
I need ,, Search for PRODUCT,,
thank you
Attachments:
You must be logged in to view attached files.February 16, 2018 at 7:13 am #40184
Artem TemosKeymasterYou can change the search post type in Theme Settings -> Header -> Search.
February 17, 2018 at 9:25 pm #40584
bubienokParticipantthank you
is it possible that all the squares have the same height, independently of lenght of text and height of images?
thx
Attachments:
You must be logged in to view attached files.February 18, 2018 at 9:07 am #40623
Artem TemosKeymasterIt happens because you have different aspect ratio for images uploaded to your products. If you want to make all products inline you need to upload all images with the same proportion. Otherwise, you can enable hard crop in WooCommerce -> Settings -> Products -> Display and regenerate all thumbnails. But it will crop your images and in some cases, it may look incorrect.
February 19, 2018 at 6:41 am #40765
bubienokParticipantcan I show only 32characters of productÅ› name ?
February 19, 2018 at 8:26 am #40810
Artem TemosKeymasterHi,
Try to use some custom solution described in this article https://businessbloomer.com/woocommerce-shorten-product-titles/
Try 2nd and 3rd options.Regards
February 19, 2018 at 9:35 pm #41040
bubienokParticipantI add thi scode to Custom CSS, but it doesnt work
/ Note: this is simple CSS that can be placed in your custom.css file
// This CSS also adds 3 dots … at the end of each product title
.woocommerce ul.products li.product h3 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}February 20, 2018 at 7:13 am #41070
Artem TemosKeymasterAs we said, you need to try 2nd and 3rd options, not CSS solution.
February 20, 2018 at 8:02 pm #41270
bubienokParticipantthank you
problem is that it doesnt work with ,Product tabs, on homepage
the same problem is with ,Woo title limit, //wordpress.org/plugins/woo-title-limit/
Product titles arent shorter on ,Product tabs,
thank you for your help
February 20, 2018 at 9:01 pm #41294
Artem TemosKeymasterPlease, provide us your FTP access so we can try to do this for you. And please, add the code that works for the shop page but doesn’t work for product tabs on the home page.
February 20, 2018 at 10:15 pm #41314
bubienokParticipantprivate content
February 21, 2018 at 7:13 am #41338
Artem TemosKeymasterWe can’t connect to the server.
February 21, 2018 at 6:33 pm #41510
bubienokParticipant/public/wp-content/themes/woodmart-child/functions.php
Plz can you edit functions.php ?
attached file
February 22, 2018 at 7:13 am #41542
Artem TemosKeymasterSorry, but we can’t do this on our side. The point here is to check why it doesn’t work on your website.
You can also try to use CSS solution to limit the title for one line of text only
.product-grid-item .product-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
February 22, 2018 at 9:10 am #41578
bubienokParticipantthank you
how can I change it to limit for 2 lines of text ?
February 22, 2018 at 9:14 am #41581
Artem TemosKeymasterSorry, but it can’t be limited to two lines with that CSS.
February 25, 2018 at 6:42 pm #42199
bubienokParticipantthank you
plz how can I add width and height parameters to my SVG ICONS to be shown normal ?
attached svg
Attachments:
You must be logged in to view attached files.February 25, 2018 at 7:50 pm #42209
Artem TemosKeymasterHi,
You need to open your SVG icons file with some editor like Sublime Text or default system text editor and add height and width attributes to your
<svg>
tag like it is shown on the screenshot https://gyazo.com/83fd36b0bb9628bb1aed2bd3d5d063c5Regards
February 28, 2018 at 9:36 pm #43018
bubienokParticipantthank you
I updated theme and now I have problem with categories menu on header.
How can I change width of this part ?
attached picture
Attachments:
You must be logged in to view attached files.March 1, 2018 at 7:17 am #43040
Artem TemosKeymasterHello,
You need to clear your browser cache to see the changes after update. Here is a website with tutorials and guides how to clear the cache in different browsers and devices http://www.refreshyourcache.com/en/home/
Regards
March 24, 2018 at 9:03 pm #48542
bubienokParticipantHello
how can I change this shopping cart ( replace with image ) ?
thank you very much
Attachments:
You must be logged in to view attached files.March 24, 2018 at 9:26 pm #48548
Artem TemosKeymasterHi,
Do you mean you want to change the add to cart button? It is possible with additional code customization only.
Regards
March 25, 2018 at 12:22 am #48559
bubienokParticipantyes
I would like this style (attached picture)
thank you
Attachments:
You must be logged in to view attached files.March 25, 2018 at 10:20 am #48599
Artem TemosKeymasterTry to add the following code snippet to the Custom JS on document ready area in Theme Settings to fix this issue.
jQuery( '.product-grid-item' ).addClass( 'hover-width-small' ); jQuery(document).on('pjax:complete', function(xhr, textStatus, options) { jQuery( '.product-grid-item' ).addClass( 'hover-width-small' ); });
March 25, 2018 at 10:56 am #48606
bubienokParticipantthank you very much, you are great 😀
March 25, 2018 at 12:14 pm #48631
Artem TemosKeymasterYou are welcome!
-
AuthorPosts
The topic ‘Categories with SVG icons’ is closed to new replies.
- You must be logged in to create new topics. Login / Register