Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 7 years, 2 months ago Mirela
    Participant
    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/fDwGdrT

    Let us know.

    Best regards!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Slow down Testimonials Cycle

    Hello,

    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/GqqbNq

    2-Open file vc_templates/testimonial_cycle.php
    Edit all code to this:
    https://codeshare.io/5zxjXO

    3-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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Urgent: Changing a Folie theme

    Hello,

    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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: WPBakery doesn't load on the front-end

    Hello,

    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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Email fields in Staff Post Type link as web pages instead of emails

    Hello,

    I don’t see the https before the email. See screenshot: https://ibb.co/r0Z4FkS
    Did you manage to fix it?
    Let us know if you need further help.

    best regards!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Need to edit max number of products

    Hello,

    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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Make blog post thumbnail clickable

    Hello,

    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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Change order of images

    Hello,

    I checked both sides, from the Customizer and live page, the order is the same. See screenshots:
    https://ibb.co/ZTFhkST
    https://ibb.co/K5N2RW4

    Did yo manage to fix it? Le tus know.

    Best regards!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Page Header on Blog Posts
    This reply has been marked as private.
    7 years, 2 months ago Mirela
    Participant
    in reply to: Thumbnails on Product Detail Page not aligning

    Hello,

    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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: shop page

    Hello,

    These are the filters of a portfolio. Sorry but this can not be achieved from theme options. It requires coding (personal customization) that is not included in support.

    Best regards!

    7 years, 2 months ago Mirela
    Participant
    in reply to: lightbox in mobile version folie theme (2)
    This reply has been marked as private.
    7 years, 2 months ago Mirela
    Participant
    in reply to: Responsive Slider Home

    Hello,

    Can you please add some wp credentials in a private reply? So i can check.

    Best regards!

    7 years, 2 months ago Mirela
    Participant
    in reply to: Link in Portfolio

    Hello,

    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-155 is 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!

    7 years, 2 months ago Mirela
    Participant
    in reply to: about changing portfolio items

    Hey,

    That’s great news.
    Let me know if you need anything else.

    Best regards!

Viewing 15 posts - 1,651 through 1,665 (of 12,542 total)
← 1 2 3 … 110 111 112 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password