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, 9 months ago Ludjon
    Keymaster
    in reply to: Youtube Video

    Added the vimeo, it works on me

    Please copy the embed link, its a browser problem not a theme issue.

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: How to make product quick view for Product image and name

    Please,

    Can you share a link?
    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Web Customization – Contact Form. + Home Pg Issues

    Hello,

    Please, write me at [email protected] so we can continue the discussion

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Creative Content Never Imported

    Hello,

    Sorry for the late response, we was on holiday

    I will help you right now to fix and setup your website.
    Please update credentials on profile too

    Thanks,
    Sorry again for the delay. Please send me an email when you will go online on [email protected]

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: SPECULAR styles different from Online-Showcase

    Hello,

    Can you please send me a link of your website?
    Please update credentials on profile too, so I can help you to fix these issues

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: footer 1 column full width

    Hello,

    Do you have fixed this issue?
    I saw that your website footer looks good

    Let me know, sorry for the delay

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Header button not centered

    Hello,

    Sorry for the delay, we was on holiday

    Please add this css line:

    .header_button{ -webkit-transform: translateY(-50%) !important; transform: translateY(-50%) !important }

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Links disappear on hover

    Hello,

    For content links use this:

    p a:hover{color:#222;}

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Sidebar bullet points display issue

    Hello,

    Sorry for the delay, we was on holiday

    I am looking at your website and it looks ok
    Let me know how can I help you

    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: How to Rename 'Blog'

    Hello,

    Sorry for the delay, we was on holiday

    1. You need to create a page (add name as you want)
    2. Set this page as a blog page at page template options

    That’s all

    Let me know
    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Icon is not trasparent anymore

    Hello,

    Sorry for the delay, we was on holiday

    Take a look at header.php file

    Normal favicon:

    <link rel="icon" href="favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

    PNG/GIF favicon:

    <link rel="icon" type="image/gif" href="favicon.gif" />
    <link rel="icon" type="image/png" href="favicon.png" />

    This can help you
    Thanks

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: How to make product quick view for Product image and name

    Or please replace this function on js/codeless-main.js

    CL_FRONT.quickView = function(){
    
            if( CL_FRONT.config.$isMobileScreen )
                return;
    
            $('.product_item').on( 'click', function(e){
                e.preventDefault();
                var $button = $(this).find( '.cl-quick-view' );
                $button.addClass('loading');
    
                var id = $button.data('id');
    
                var data = {
                    id: id,
                    action: "codeless_woo_quick_view"
                };
                
                CL_FRONT.components.loadDependencies( [ codeless_global.FRONT_LIB_JS + 'jquery.magnific-popup.min.js' ], function() {
                    $.ajax({
                        url: codeless_global.ajax_url,
                        data: data,
                        method: "get",
                        success: function(message) {
                            var $result = $(message);
                            $result.find( '.woocommerce-product-gallery--with-images').css('opacity', '');
                            $result.imagesLoaded(function(){
                                $.magnificPopup.open({
                                    items: {
                                        src: '<div class="mfp-with-anim popup-quick-view single-product woocommerce">' + $result[0].outerHTML + "</div>",
                                        type: "inline"
                                    },
                                    
                                    removalDelay: 300,
                                    preloader: true,
                                    tClose: '',
                                    callbacks: {
                                        beforeOpen: function() {
                                            $.magnificPopup.close();
                                            this.st.mainClass = "mfp-move-horizontal" + " quick-view-wrapper";
    
                                        },
    
                                        open: function() {
    
                                            $(".popup-quick-view .variations_form").each(function() {
                                                $(this).wc_variation_form().find(".variations select:eq(0)").change()
                                            });
    
                                            $(".popup-quick-view .variations_form").trigger("wc_variation_form");
    
                                            $( '.popup-quick-view .woocommerce-product-gallery__wrapper' ).addClass('cl-carousel owl-theme owl-carousel');
                                            
                                            setTimeout(function(){
                                                CL_FRONT.components.Carousel( $( '.popup-quick-view .woocommerce-product-gallery__wrapper' ), { items: 1, nav: true }, function(){ CL_FRONT.nanoScroller(); } );
                                            }, 1);
                                            
                                            CL_FRONT.shopDropDown();
                                            CL_FRONT.shopFixes();
                                            CL_FRONT.xBrowserFixes();
    
                                            if( $('.popup-quick-view').find('.product-type-grouped').length > 0 )
                                                CL_FRONT.quickView();
    
                                            CL_FRONT.ajaxProductAdd();
                                            
                                            $('.popup-quick-view .variation-selector select').on('change', function(){
                                                $(this).closest('.popup-quick-view').find('.woocommerce-product-gallery__wrapper').trigger('to.owl.carousel', 0)
                                            });
                                         
                                            if( $.fn.tawcvs_variation_swatches_form )
                                                $( '.popup-quick-view .variations_form' ).tawcvs_variation_swatches_form();
                                            
                                            $button.removeClass("loading");
    
                                        }
                                    }
                                })
                            })
                            
                            
                        },
                        complete: function() {
                            
                        },
                        error: function() {
                            $button.removeClass("loading")
                        }
                    } );
                });
    
            });
    
        }
    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: How to make product quick view for Product image and name

    ah ok,

    If you know a little bit of coding, please add this class on title or image:

    cl-quick-view

    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Youtube Video

    Its caused from this error:

    youtube …….. in a frame because it set ‘X-Frame-Options’ to ‘sameorigin’.

    Try using links embed like this:

    https://www.youtube.com/embed/A6XUVjK9W4o

    • This reply was modified 7 years, 9 months ago by Ludjon.
    7 years, 9 months ago Ludjon
    Keymaster
    in reply to: Youtube Video

    Hello,

    Sorry for the delay, we was on holiday

    I will try to fix now

    Thanks

Viewing 15 posts - 1,291 through 1,305 (of 1,583 total)
← 1 2 3 … 86 87 88 … 104 105 106 →

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