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, 10 months ago Mirela
    Participant
    in reply to: Logo does not support SSL

    Hello,

    The logo url is being generated automatically from get_template_directory_uri() and home_url() functions. See the function in file functions-specular.php. See screenshot: https://postimg.cc/image/ftju5l1jr/

    To force the https in logo url, in the same function, edit this line:
    $logo = "<a href='".esc_url($url = home_url( '/'))."'>".$logo.$logo_light."</a>";
    to this:
    $logo = "<a href='".esc_url($url = home_url( '/', 'https' ))."'>".$logo.$logo_light."</a>";

    Best regards!

    • This reply was modified 7 years, 10 months ago by Mirela.
    7 years, 10 months ago Mirela
    Participant
    in reply to: Installation Issues

    Hello,

    Can you please add some wp credentials in your profile data? SO i can give this a closer look.
    Read this article for more information.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Logo does not support SSL

    Hello,

    The logo by default will take the image url set up in the logo option in General Options. This option settings are set up in file include/core/codeless_options.php. See the section for logo:

    array(
            'id' => 'logo',
            'type' => 'media',
            'title' => __('Upload Logo', 'codeless'),
            'desc' => __('Upload here the logo that is placed in top of the page ', 'codeless'),
            'subtitle' => __('Upload any media using the WordPress native uploader', 'codeless'),
             'default' => array('url' => get_template_directory_uri().'/img/logo.png'),
    ),

    The url is gotten by wordpress function get_template_directory_uri().

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Import Template Freeze

    Hello,

    Please try increasing max_execution_time = 300 and upload_max_filesize = 32M or try importing manually using the xml file. Follow these steps:
    1-Go to Tools > Import > WordPress (run import): https://postimg.cc/image/5k14nskcn/
    2-Now open your theme folder and import file content_1.xml from this path: \picante\includes\codeless_demos_content\the_demo_you_want_name
    (screenshot)

    3-Import this file into wordpress importer. Let me know how it goes.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Specular – Couple of bugs (Mobile menu, accordion)

    Hello,

    Looks like some scripts are conflicting with theme. Can you please deactivate all third party plugins? See screenshot: https://postimg.cc/image/5k14nskcn/

    Let me know how it goes.
    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Logo does not support SSL

    Hello,

    Actually that is just one of the scenarios.
    1-Did you check the situation in Settings > General? Do you have set secure link here?
    2-Check in database that all links are changed succesfully to https after the installation of ssl. One of the mentioned plugins can help with this.

    3-The logo code is present in file specular\header.php. It’s called dynamically. While the function is present in file functions-specular.php:

    /* -------------------- Get Logo Image ------------------------------------------ */
    
    if(!function_exists('codeless_logo'))
    {
    
        function codeless_logo($default = "")
        {
            global $cl_redata;
            $output = '';
            if(!empty($cl_redata['logo']['url']) || !empty($cl_redata['logo_light']['url']) )
            {
    
                if(!empty($cl_redata['logo']['url']))
                  $logo = "<img class='dark' src=".esc_url($cl_redata['logo']['url'])." alt='' />";
                if(!empty($cl_redata['logo_light']['url']))
                  $logo_light = "<img class='light' src=".esc_url($cl_redata['logo_light']['url'])." alt='' />";
                
                $logo = "<a href='".esc_url(home_url('/'))."'>".$logo.$logo_light."</a>";
            }
            else
            { 
                $logo = get_bloginfo('name');
                if($default != '') $logo = "<img src=".esc_url($default)." alt='' title='$logo'/>";
                $logo = "<a href='".esc_url(home_url('/'))."'>".$logo."</a>";
            }
        
            return $logo;
        }
    }

    The link is generated dynamically from home url.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Specular – Couple of bugs (Mobile menu, accordion)

    Hello,

    Can you please add some wp credentials in your profile data? So i can give this a closer look.
    Read this article for more information.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Masonry Portfolio for Tower

    Hello,


    @Freedonut
    ,
    Please open new ticket and send us a link of the site and some wp credentials. Some can understand better the situation.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Address Issues

    Hello,

    The code is suggested n this ticket of yours: https://support.codeless.co/?topic=shop-not-displaying-products-using-internet-explorer
    No error was generated then. I suggest you check it out closely to not have made any mistake while pasting. Perhaps a missing bracket or misplaced coma.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Problems installing themes

    Hello,

    I set it up. Please check your site and let me know.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: PORTFOLIO HOVER not displaying correctly

    Hello,


    @Freedonut
    , Please add his code into your Custom Css box in General Options:

    .portfolio-item.overlayed h4 {
        font-size: 14px !important;
    }

    Change the font until you are satisfied with the result.

    PS: For future questions, please open your own tickets!

    Best regards!

    • This reply was modified 7 years, 10 months ago by Mirela.
    7 years, 10 months ago Mirela
    Participant
    in reply to: Portfolio item displays category slug instead of name

    Hello,


    @Freedonut
    ,
    Please open new ticket and send us some wp credentials in a private reply. So i can check what is happening.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Video in column background

    Hello,

    Please try adding this css:

    .tp-caption .fullscreenvideo {
        width: 782px !important;
        height: 441px !important;
    }

    Let me know.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Logo does not support SSL

    Hello,

    Please check this article for this.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Portfolio thumbnails not clickable on mobile
    This reply has been marked as private.
Viewing 15 posts - 2,581 through 2,595 (of 12,542 total)
← 1 2 3 … 172 173 174 … 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