Forum Replies Created
-
in reply to: How to change the Single Product Display page
Hello,
You can customize the products from WordPress dashboard > Products menu. Open each product for edit and change the options in option panel. See screenshots:
https://ibb.co/517r9LL
https://ibb.co/fDwGdrTLet us know.
Best regards!
in reply to: Slow down Testimonials CycleHello,
You are right. The duration option is not present in testimonial Cycle. You can add it in theme code as advised in this other ticket of yours: https://support.codeless.co/?topic=testimonial-cycle-speed
Or add it as an option by making these changes:
1-Open file includes/core/codeless_elements.php
Find these lines:
https://codeshare.io/axjreM
Edit to these:
https://codeshare.io/GqqbNq2-Open file vc_templates/testimonial_cycle.php
Edit all code to this:
https://codeshare.io/5zxjXO3-Open file js/main.js
Find this function:/* ---------------------------- Testimonial Cycle ----------------------------- */ function testimonialsCycle(){ "use strict"; var $ = jQuery.noConflict(); $('.testimonial_cycle').each(function(){ var $self = $(this); var container_width = $self.parents('.wpb_wrapper').first().width(); $('.item', $self).width(container_width+'px'); loadDependencies( [ codeless_global.FRONT_LIB_JS + 'jquery.carouFredSel-6.1.0-packed.js'], function(){ $self.carouFredSel({ auto: true, scroll: { items : 1, fx: 'fade' }, }); }); }); }Edit to this:
/* ---------------------------- Testimonial Cycle ----------------------------- */ function testimonialsCycle(){ "use strict"; var $ = jQuery.noConflict(); var c_duration = $self.data('duration'); if(c_duration == 'undefined') c_duration = 500; $('.testimonial_cycle').each(function(){ var $self = $(this); var container_width = $self.parents('.wpb_wrapper').first().width(); $('.item', $self).width(container_width+'px'); loadDependencies( [ codeless_global.FRONT_LIB_JS + 'jquery.carouFredSel-6.1.0-packed.js'], function(){ $self.carouFredSel({ auto: true, scroll: { items : 1, fx: 'fade', duration: c_duration }, }); }); }); }Best regards!
in reply to: Urgent: Changing a Folie themeHello,
Normally you have to install another demo. Then check the Customize > Styling options to fix any last differences.
We can help you get the demo look. Just add some wp credentials in a private reply.Best regards!
in reply to: WPBakery doesn't load on the front-endHello,
Please make sure to have theme updated and all included plugins at the last version first. Deactivate all third party plugins second. If the error persists, add some wp credentials in a private reply. So we can check it closely.
Best regards!
Hello,
I don’t see the
httpsbefore the email. See screenshot: https://ibb.co/r0Z4FkS
Did you manage to fix it?
Let us know if you need further help.best regards!
in reply to: Need to edit max number of productsHello,
To increase the limit you have to edit theme code. Go to file june\includes\codeless_customizer\codeless_options\shop.php and find this block:
Kirki::add_field('cl_june', array( 'settings' => 'shop_item_per_page', 'label' => esc_html__('Shop Items Per Page', 'june') , 'tooltip' => esc_html__('', 'june') , 'section' => 'cl_shop', 'type' => 'number', 'priority' => 10, 'default' => 8, 'choices' => array( 'min' => 1, 'max' => 50, 'step' => 1, ) ,Change
'max' => 50,to 100 or more. save changes and refresh customizer.Best regards!
in reply to: Make blog post thumbnail clickableHello,
Yes there is, but you will have to edit theme code. I can guide you with that. But i need to see a link of your blog page. So i can see what type of blog are you using.
Best regards!
in reply to: Change order of imagesHello,
I checked both sides, from the Customizer and live page, the order is the same. See screenshots:
https://ibb.co/ZTFhkST
https://ibb.co/K5N2RW4Did yo manage to fix it? Le tus know.
Best regards!
in reply to: Page Header on Blog PostsThis reply has been marked as private.in reply to: Thumbnails on Product Detail Page not aligningHello,
Sorry but from what i see the original image size of the first image is still 100x100px. See screenshot: https://ibb.co/3NpppWw
Please try recreating the product from scratch. Regenerate all thumbnails first if you can. So that the new image (1200x1000px) thumbnail is recreated.
Let us know.
Best regards!in reply to: lightbox in mobile version folie theme (2)This reply has been marked as private.in reply to: Responsive Slider HomeHello,
Can you please add some wp credentials in a private reply? So i can check.
Best regards!
in reply to: Link in PortfolioHello,
Yes, just add this code into your Custom Css box:
.page-id-155 .entry-link, .page-id-155 .entry-lightbox { pointer-events: none; }The
.page-id-155is for the css to target only the element of this page. IF you want this effect in all pages, then just remove it.Best regards!
in reply to: about changing portfolio itemsHey,
That’s great news.
Let me know if you need anything else.Best regards!