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, 11 months ago Mirela
    Participant
    in reply to: Social Media WIDGET

    Hello,

    Please go to file includes/widgets/codeless_socialwidget.php as suggested from my colleague. Find this block:

            echo '<ul class="social-icons-widget '.esc_attr($style).'">';
                
                if( !empty($facebook) )
                   echo '<li class="facebook"><a href="'.esc_url($facebook).'"><i class="cl-icon-facebook"></i></a></li>';
                if( !empty($twitter) )
                    echo '<li class="twitter"><a href="'.esc_url($twitter).'"><i class="cl-icon-twitter"></i></a></li>';
                if( !empty($instagram) )
                    echo '<li class="email"><a href="'.esc_url($instagram).'"><i class="cl-icon-instagram"></i></a></li>';
                if( !empty($pinterest) )
                    echo '<li class="pinterest"><a href="'.esc_url($pinterest).'"><i class="cl-icon-pinterest"></i></a></li>';
                if( !empty($tumblr) )
                    echo '<li class="email"><a href="'.esc_url($tumblr).'"><i class="cl-icon-tumblr"></i></a></li>';
                if( !empty($vk) )
                    echo '<li class="email"><a href="'.esc_url($vk).'"><i class="cl-icon-vk"></i></a></li>';
                if( !empty($google_plus) )
                    echo '<li class="google"><a href="'.esc_url($google_plus).'"><i class="cl-icon-google-plus"></i></a></li>';
                if( !empty($linkedin) )
                    echo '<li class="foursquare"><a href="'.esc_url($linkedin).'"><i class="cl-icon-linkedin"></i></a></li>';
    
                
                if( !empty($vimeo) )
                    echo '<li class="vimeo"><a href="'.esc_url($vimeo).'"><i class="cl-icon-vimeo"></i></a></li>';
                
                
                if( !empty($youtube) )
                    echo '<li class="youtube"><a href="'.esc_url($youtube).'"><i class="cl-icon-youtube-play"></i></a></li>';
                if( !empty($email) )
                    echo '<li class="email"><a href="'.esc_url($email).'"><i class="cl-icon-mail"></i></a></li>';
                
                
                if( !empty($skype) )
                    echo '<li class="email"><a href="'.esc_url($skype).'"><i class="cl-icon-skype"></i></a></li>';
                if( !empty($soundcloud) )
                    echo '<li class="email"><a href="'.esc_url($soundcloud).'"><i class="cl-icon-soundcloud"></i></a></li>';
                
                if( !empty($behance) )
                    echo '<li class="email"><a href="'.esc_url($behance).'"><i class="cl-icon-behance"></i></a></li>';
    
            echo '</ul>';
    
            echo wp_kses_post( $after_widget );
    
        }

    Replace it with this:

            echo '<ul class="social-icons-widget '.esc_attr($style).'">';
                
                if( !empty($facebook) )
                   echo '<li class="facebook"><a href="'.esc_url($facebook).'" target="_blank"><i class="cl-icon-facebook"></i></a></li>';
                if( !empty($twitter) )
                    echo '<li class="twitter"><a href="'.esc_url($twitter).'" target="_blank"><i class="cl-icon-twitter"></i></a></li>';
                if( !empty($instagram) )
                    echo '<li class="email"><a href="'.esc_url($instagram).'" target="_blank"><i class="cl-icon-instagram"></i></a></li>';
                if( !empty($pinterest) )
                    echo '<li class="pinterest"><a href="'.esc_url($pinterest).'" target="_blank"><i class="cl-icon-pinterest"></i></a></li>';
                if( !empty($tumblr) )
                    echo '<li class="email"><a href="'.esc_url($tumblr).'" target="_blank"><i class="cl-icon-tumblr"></i></a></li>';
                if( !empty($vk) )
                    echo '<li class="email"><a href="'.esc_url($vk).'" target="_blank"><i class="cl-icon-vk"></i></a></li>';
                if( !empty($google_plus) )
                    echo '<li class="google"><a href="'.esc_url($google_plus).'" target="_blank"><i class="cl-icon-google-plus"></i></a></li>';
                if( !empty($linkedin) )
                    echo '<li class="foursquare"><a href="'.esc_url($linkedin).'" target="_blank"><i class="cl-icon-linkedin"></i></a></li>';
    
                
                if( !empty($vimeo) )
                    echo '<li class="vimeo"><a href="'.esc_url($vimeo).'" target="_blank"><i class="cl-icon-vimeo"></i></a></li>';
                
                
                if( !empty($youtube) )
                    echo '<li class="youtube"><a href="'.esc_url($youtube).'" target="_blank"><i class="cl-icon-youtube-play"></i></a></li>';
                if( !empty($email) )
                    echo '<li class="email"><a href="'.esc_url($email).'" target="_blank"><i class="cl-icon-mail"></i></a></li>';
                
                
                if( !empty($skype) )
                    echo '<li class="email"><a href="'.esc_url($skype).'" target="_blank"><i class="cl-icon-skype"></i></a></li>';
                if( !empty($soundcloud) )
                    echo '<li class="email"><a href="'.esc_url($soundcloud).'" target="_blank"><i class="cl-icon-soundcloud"></i></a></li>';
                
                if( !empty($behance) )
                    echo '<li class="email"><a href="'.esc_url($behance).'" target="_blank"><i class="cl-icon-behance"></i></a></li>';
    
            echo '</ul>';
    
            echo wp_kses_post( $after_widget );
    
        }

    Save changes and refresh page.

    Let us know.

    Best regards!

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

    Hello,

    One of the current installed plugins could be conflicting with it.
    I will try adding the new theme update manually and keep both copies in the wp-content/themes folder. But i need the ftp credentials for this. Can you please add them in your profile data?

    Thanks!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Similar Styles

    Hello,

    Normally the child theme initially has only the functions.php and style.css files. You add and create every other file. So if a folder is not already present in it, you have to create it! Just make sure to keep the same file path in child theme as it is in parent theme!
    So if in parent you have this path: june/woocommerce/single-product/related.php
    The same will be in child theme: june-child/woocommerce/single-product/related.php

    Read more here: https://codex.wordpress.org/Child_Themes

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: LayerSlider WP

    Hello,


    @Nathan
    , sorry for the late reply.
    Can you please add some valid wp credentials in your profile data? So we can check this and fix it for you.
    Read this article for more information.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Search feature in header

    Hello,

    Sorry for the late reply.
    Yes, sure you can do that. Just add this css into your Custom Css menu:

    .extra_tools_wrapper.style-small .tool {
        background-color: red !important;
        border-radius: 50% !important;
    }
    .extra_tools_wrapper.style-small .tool > a:hover {
        background: red !important;
    }
    .extra_tools_wrapper .tool i {
        color: #f9fafb !important;
    }

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Install stops

    Hello,

    I uploaded the latest theme version. I renamed it to folie2 in order to not have issues with the current version you had installed. I imported the demo data and configured the initial settings. You can proceed in editing and adding more content to it.
    Apologies once again for the inconvenience. Some times issues from update to update can occur. But this is a new theme and we are constantly updating it. So you won’t have any problems.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Translation of elements

    Hello,

    Theme comes with the pot language file included. You can find it inside folder “lang”. Use the pot file to translate your site. Read this article for more details: https://support.ellethemes.com/?ht_kb=translate-site-using-po-mo-files

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Revolution Slider and Layer Slider plugin are missing

    Hello,

    Please redownload the June theme zip file. Get the full version this time. You have downloaded only the instalable files. In the full version you have the “extra_plugins” folder too. Here are the slider plugins included as well.

    Let us know.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Picante Demo Content Not Importing

    Hello,

    I made the changes. Please check your site.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Icons not showing

    Hello,

    What theme version do you have? What plugins do you have installed? Please make sure to have everything up to date first. If you send us some valid wp credentials in a private reply, we can give this a closer look.

    Thanks!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Page Fullwidth Content problem with new version

    Hello,

    We have released another theme update. Please download theme again.

    Let us know.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: menu header and slider questions

    Hello,

    Sorry for the late reply.
    1)I added this css for the header:

    .top_wrapper {
        margin-top: -100px !important;
    }

    You need to assign a homepage at least, in the General Options. Many important settings are assigned to the homepage.

    2) I don’t see any difference in the slide’s images from each other. Can you send a screenshot? You can, however, customize the positioning of each slide’s background image in the slider settings.

    3)I added this code:
    .tp-bullet:hover .tp-bullet-title { display: none;}
    Please check your site and let me know.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Script error on single posts

    Hello,

    I checked the page but i don’t see the error. Not in the page and not in the console. Did you manage to fix it? Let us know if you need further help.

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Single Portfolio, Content Position Bottom; Porfolio order

    Hello,

    1-Add this code:

    .portfolio_single.single_portfolio_container .row-fluid .span9 {
        width: 100% !important;
    }

    2-It’s not possible to change the order of portfolio items or posts like this. In fact you can not reorder to your wish using theme default settings. To do this use a custom plugin. We can suggest “Post Type Order“.

    Thanks for notifying us for the documentation. We will check as soon as we can!

    Best regards!

    7 years, 11 months ago Mirela
    Participant
    in reply to: Tower Child Widget Shortcode in Widget Top Header

    Hello,

    1-Great! Thanks for sharing your solution with the forum.
    2-Add this css into your Custom Css box:

    .top_nav a:hover {
        color: #696763 !important;
    }

    Let us know.
    Best regards!

Viewing 15 posts - 2,821 through 2,835 (of 12,542 total)
← 1 2 3 … 188 189 190 … 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