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

  • 8 years, 11 months ago Mirela
    Participant
    in reply to: Main nav pushed outside of header in chrome

    Hello,

    I edited out the code to this:

    header#header {
        height: 100px !important;
    }

    I tested it in chrome and Safari. It’s ok in both browsers. Please check and let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Demo data specular default not working

    Hello,

    Please make sure you have all necessary rights on files and database. So that the import process add add the content in it. Contact your host about it.
    Did the import finish successfully? or did you get any error message along the way?
    If you still can not manage, then send us your wp credentials in a private reply. So we can give this a closer look.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Image Distortion

    Hello,

    Please add the wp login information on the extra information fields of your profile data. So we can give it a closer look.

    Read this article for more information.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: woocommerce-missing icon zoom image

    Hello,

    I see the zooming is ok even with only one image. See screenshot of your product page image zoomed while on mouse over: https://postimg.org/image/oexuggvql/

    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Folie – cannot Header Button text

    Hello,

    Just click on the button, when in option panel. You will see the list of button’s options unfold in the left sidebar. Find here the name field and rename the button. Save changes after you are done.
    Let us know if you still can not find it.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Not access to the configuration of folie theme

    Hello,

    Please make sure to have the same server configurations and PHP version, running in the server that presents the issue as in the one that does not have problems.
    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: New Menu on Interior Pages

    Hello,

    Please watch this video tutorial to understand better how to set up a one page:

    Please know that the one page is designed to have the entire site set in one single page. It is not it’s default structure to have external pages as well.
    Check out these related topics for reference:
    https://support.codeless.co/?topic=site-with-multiple-one-page-scrolling-pages
    https://support.codeless.co/?topic=use-menu-as-one-page-menu

    Theme only supports one menu. Adding more is considered a change/customization based on your own preference to set up the site. Personal customizations are not included in support.

    Read our policy here: https://support.codeless.co/?page_id=4207
    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Static homepage

    Hello,


    @sbas3
    Can you please explain better your issue? I am not able to understand clearly.
    If you have a 404 Not Found issue, try deleting your .htaccess file in the server and reset permalinks.
    It doesn’t matter if it’s anew server with no other plugins. This is a common issue.
    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Not access to the configuration of folie theme

    Hello,

    Do you have these installations in the same server?

    Regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Adding custom social icon in Child Theme

    Hello,

    Yes, if you make the changes directly to parent theme files, they will be overwritten in case of a theme update. And as result, the changes will be gone.
    There are three ways you can avoid this.
    1-You can save a copy of the file you are adding changes and replace it in the future (after theme update).
    2-Perform a partial update. Meaning, you check the change log and overwrite ONLY the files that has been altered from the release. Not overwrite the entire theme folder.
    3-Just use a child theme.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Portfolio images not scrolling

    Hello,

    Sorry for the late reply.
    Please try this out instead. In file js/codeless-main.js, find this block of code:

       /**
         * Isotope Portfolio Init
         * used on Customizer too
         * 
         * @since 1.0.0
         */
        CL_FRONT.isotopePortfolioGrid = CL_FRONT.init_cl_portfolio = function( $el ) {
            "use strict";
            $( '#portfolio-entries' ).each(function(){
                if( $(this).hasClass('cl-carousel') )
                    CL_FRONT.components.Carousel( $( this ) );
                else if( $(this).hasClass('cl-justify-gallery') )
                    CL_FRONT.components.JustifyGallery( $( this ) );
                else
                    CL_FRONT.components.Isotope( $( this ));
            })
            
        };

    Edit to this:

       /**
         * Isotope Portfolio Init
         * used on Customizer too
         * 
         * @since 1.0.0
         */
        CL_FRONT.isotopePortfolioGrid = CL_FRONT.init_cl_portfolio = function( $el ) {
            "use strict";
            $( '#portfolio-entries' ).each(function(){
                if( $(this).hasClass('cl-carousel') )
                    CL_FRONT.components.Carousel( $( this ) );
                else if( $(this).hasClass('cl-justify-gallery') )
                    CL_FRONT.components.JustifyGallery( $( this ) );
                else
                    CL_FRONT.components.Isotope( $( this ));
                    autoplay: true,
                    loop: true
            })
            
        };

    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Add Linkedin sharing on each Blog posts.

    Hello,

    Please refer to this topic regarding this: https://support.codeless.co/?topic=add-linkedin-share-button-on-articles

    Let us know.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Select2 Error Woocommerce

    Hello,

    The code in my last reply is what you need to add in order to stop a script from being called in a page. Replace the page id with your page’s id. Which in your case is ‘4578’. See screenshot.
    So the code would become like this:

    $page_id = get_the_ID();
    if($page_id == 4578){ wp_dequeue_script('select2'); }

    See here an example of the page.php file with this code added:
    https://codeshare.io/5DP7dW
    You can find file page.php directly under ‘specular‘ theme folder, or in Appearances > Editor, in the listed files at the right sidebar.

    Please know that we do not support third party plugins. The two plugins you are using have not been tested with theme (it’s impossible to do so with all plugins available) and script incompatibility is possible to happen.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: Demo content Specular theme default

    Hello,

    You can install it automatically by going to Specular > Import/Export (Dummy Data) . Select the demo you want to have and click on import button below.
    Watch this video tutorial for a visual guidance.
    *find more helpful video tutorials here: https://support.codeless.co/?page_id=45

    All demo files can also be found in specular\includes\dummy_data\demos folder.

    Let us know if you need further help.

    Best regards!

    8 years, 11 months ago Mirela
    Participant
    in reply to: New Menu on Interior Pages

    Hello,

    Sorry but theme supports only one main menu. To add more, implies custom coding which is not included in support service.
    I suggest you hire a freelance dev to help you customize theme to your needs.

    Best regards!

Viewing 15 posts - 5,401 through 5,415 (of 12,542 total)
← 1 2 3 … 360 361 362 … 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