Home › Forums › WoodMart support forum › Information about new updates?
Information about new updates?
- This topic has 22 replies, 2 voices, and was last updated 6 years, 10 months ago by ducphuli.
-
AuthorPosts
-
January 21, 2018 at 4:51 am #34508
ducphuliParticipantI heard in (woodmart version 2) will have
1. Sticky search bar
2. Lazy load jquery imageFurther I need this modification in the update, it looks too small in the product details dilemma.
(Tablet device)January 21, 2018 at 10:04 am #34531
Artem TemosKeymasterHello,
1. Our theme 2.0 update will include a visual drag & drop header builder.
2. Sorry, but we will not add lazy loading for images in this update. We hope to implement it later.
Could you please provide us a link where we can see this problem?
Regards
January 21, 2018 at 11:58 am #34556
ducphuliParticipantHi,
1. Ok
2. I found a web page and a code snippet, did it load the image fast?
3. The web I am maintaining (I will update the link later), but on (computer) I leave 6 columns, so on (tablet device) is still 6 columns.January 21, 2018 at 3:30 pm #34568
Artem TemosKeymasterCould you please send us a direct link where we can see this problem?
Sorry, but we didn’t test the code you mentioned so we don’t know how it works.
January 22, 2018 at 1:00 am #34644
ducphuliParticipanthi, ok
3. 🙂
January 22, 2018 at 1:31 am #34645
ducphuliParticipantIn the future would you develop a product like this?
January 22, 2018 at 7:34 am #34667
Artem TemosKeymasterWe will take your suggestion into account.
January 22, 2018 at 8:55 am #34679
ducphuliParticipantThanks.
January 22, 2018 at 9:05 am #34684
Artem TemosKeymasterPlease, send us a link where we can see the 6 columns problem.
January 22, 2018 at 10:20 am #34697
ducphuliParticipantok, try it on tablet device.
January 22, 2018 at 10:54 am #34717
Artem TemosKeymasterTry to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_get_owl_items_numbers( $slides_per_view ) { $items = array(); $items['desktop'] = ( $slides_per_view > 0 ) ? $slides_per_view : 1; $items['desktop_small'] = ( $items['desktop'] > 1 ) ? $items['desktop'] - 1 : 1; if ( $items['desktop'] == 6 ) $items['desktop_small'] = 4; $items['tablet'] = ( $items['desktop_small'] > 1 ) ? $items['desktop_small'] : 1; $items['mobile'] = ( $items['tablet'] > 2 ) ? $items['tablet'] - 2 : 1; if( $items['mobile'] > 2 ) { $items['mobile'] = 2; } return $items; }
January 22, 2018 at 11:36 am #34724
ducphuliParticipantThanks you.
The web I’ve customized so much in functionality so I do not want to add a lot of code that will cause conflicts, hopefully the new update will have the option for this function.
January 22, 2018 at 12:05 pm #34734
ducphuliParticipantI am wanting to secure wordpress, especially files (inline svg) (so that users do not easily download .svg files)
I used this plugin (https://vi.wordpress.org/plugins/svg-support/) to make the .svg url go inline, but it broke the class.
In future (woodmart) have inline support .svg? For example:
<svg height=”130″ width=”500″>
<defs>
<linearGradient id=”grad1″ x1=”0%” y1=”0%” x2=”100%” y2=”0%”>
<stop offset=”0%” style=”stop-color:rgb(255,255,0);stop-opacity:1″ />
<stop offset=”100%” style=”stop-color:rgb(255,0,0);stop-opacity:1″ />
</linearGradient>
</defs>
<ellipse cx=”100″ cy=”70″ rx=”85″ ry=”55″ fill=”url(#grad1)” />
<text fill=”#ffffff” font-size=”45″ font-family=”Verdana” x=”50″ y=”86″>SVG</text>
Sorry, your browser does not support inline SVG.
</svg>January 22, 2018 at 12:55 pm #34749
Artem TemosKeymasterBut our theme works well with SVG. Where can see this problem?
Yes, we will change the number of products on tablet with 6 products per row in the next update.
January 22, 2018 at 3:54 pm #34811
ducphuliParticipantOk, works fine with (url .svg)
But I want to turn it into code, not the .svg link
Thanks.
January 22, 2018 at 4:02 pm #34815
Artem TemosKeymasterBut there is no way to upload an image with WordPress gallery and then use its code and not use IMG tag.
January 22, 2018 at 7:55 pm #34841
ducphuliParticipantI used this plugin (https://vi.wordpress.org/plugins/svg-support/) to create a .svg url in line.
It works fine but it broke the css layer so the icon displayed upwards 🙂
Thanks, skip this step if not necessary.I have another question. How to on the (computer) display cart button so?
Seems inconsistent when the (computer) display is different than (tablet and phone).January 23, 2018 at 8:38 am #34916
Artem TemosKeymasterTry to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a { display: inline-block; position: relative; padding: 0; background-color: transparent; border: none; text-decoration: none; text-align: center; font-weight: 400; font-size: 0; letter-spacing: 0; width: 40px; height:40px; line-height: 40px; color: #333; box-shadow:none!important; top:0!important; } body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a:hover, body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a:focus { color: #189eff; } body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a span:not(.woodmart-tooltip-label) { display: none; } body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a:before { font-size: 21px; color:inherit; transform:none; transition:none; } body .product-grid-item.woodmart-hover-base:not(.product-in-carousel):not(.hover-width-small) .woodmart-add-btn>a:after { border: 1px solid #bbb; border-left-color: #000; }
January 23, 2018 at 2:47 pm #35013
ducphuliParticipantThanks you verry much
One last question, when do you update 2.0 release?
January 23, 2018 at 3:01 pm #35019
Artem TemosKeymasterUnfortunately, we don’t have an approximate date for this update. It has a lot of changes and we have to test everything before the release to make it bugs free.
January 23, 2018 at 5:02 pm #35046
ducphuliParticipantThanks.
I used (woodmart) to customize the professional.January 23, 2018 at 6:26 pm #35053
Artem TemosKeymasterYour website looks very nice 🙂
Do you have any extra questions regarding this topic?
January 23, 2018 at 7:01 pm #35056
ducphuliParticipantThanks you, wish you a good day.
Currently I do not have any other questions. -
AuthorPosts
The topic ‘Information about new updates?’ is closed to new replies.
- You must be logged in to create new topics. Login / Register