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

  • 6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Clients Carousel

    Hello,

    Try this manual fix:

    1. Go to vc_templates/clients.php
    2. Find this line: $output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">'; should be line 41
    3. Replace with:
    $output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'" target="_blank">';

    Let me know if you need further help

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Offset for Sticky Menu with Anchor tags.

    Maybe now that we have set that page as a one page we don’t need anymore this code:

    // The function actually applying the offset
    function offsetAnchor() {
      if (location.hash.length !== 0) {
        window.scrollTo(window.scrollX, window.scrollY - 124);
      }
    }
    
    // Captures click events of all <a> elements with href starting with #
    $(document).on('click', 'a[href^="#"]', function(event) {
      // Click events are captured before hashchanges. Timeout
      // causes offsetAnchor to be called after the page jump.
      window.setTimeout(function() {
        offsetAnchor();
      }, 0);
    });
    
    // Set the offset when entering page with hash present in the url
    window.setTimeout(offsetAnchor, 0);

    Try to remove that code and hard refresh. If this doesn’t work please send me credentials and FTP access so I can make some tests directly into your website.

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Social widget in footer sidebar dissapeared after updating the theme

    You’re welcome!

    If you like our theme and support please leave us a review on themeforest, it’s important for us

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Problem search page

    Sorry but all the problems are caused by third-party plugin that you have installed, it’s not a functional plugin with premium themes like this. That plugin is not part of WordPress Repository too. I have dis-actived that, and everything works fine.

    Please do not active anymore that plugin, use other already registered plugins and Widgets.

    Let me know
    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: How to attach a picture on a topic

    THANK YOU!!

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: How to attach a picture on a topic

    You’re welcome! Let me know if you need further help!

    If you can, please help us with a review on Themeforest :)

    Regards

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Social widget in footer sidebar dissapeared after updating the theme

    We are still working to a better solution, for now please update this file: includes/widgets/codeless_socialwidget.php

    replace with:

    <?php 
    
    class CodelessSocialWidget extends WP_Widget{
    
        function __construct(){
    
            $options = array('classname' => 'social_widget', 'description' => 'Add a social widget' );
    
            parent::__construct( 'social_widget', THEMENAME.' Social Widget', $options );
    
        }
    
        function widget($atts, $instance){
    
            extract($atts, EXTR_SKIP);
    
            global $cl_redata;
    
            echo codeless_complex_esc($before_widget);
    
            
    
            $title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
    
            $text = empty($instance['text']) ? '' : $instance['text'];
    
            $style = empty($instance['style']) ? '' : $instance['style'];
            
    
            
            if(!empty($title))
                echo codeless_complex_esc($before_title) . $title . $after_title;
         
    
            echo '<ul class="footer_social_icons '.esc_attr($style).'">';
                
                if( !empty($cl_redata['facebook']) )
                   echo '<li class="facebook"><a href="'.esc_url($cl_redata['facebook']).'" target="_blank"><i class="fa-facebook fa"></i></a></li>';
                if( !empty($cl_redata['twitter']) )
                    echo '<li class="twitter"><a href="'.esc_url($cl_redata['twitter']).'" target="_blank"><i class="fa-twitter fa"></i></a></li>';
                if( !empty($cl_redata['flickr']) )
                    echo '<li class="flickr"><a href="'.esc_url($cl_redata['flickr']).'" target="_blank"><i class="fa-flickr fa"></i></a></li>';
                if( !empty($cl_redata['google']) )
                    echo '<li class="google"><a href="'.esc_url($cl_redata['google']).'" target="_blank"><i class="fa-google fa"></i></a></li>';
                if( !empty($cl_redata['dribbble']) )
                    echo '<li class="dribbble"><a href="'.esc_url($cl_redata['dribbble']).'" target="_blank"><i class="fa-dribbble fa"></i></a></li>';
                if( !empty($cl_redata['foursquare']) )
                    echo '<li class="foursquare"><a href="'.esc_url($cl_redata['foursquare']).'" target="_blank"><i class="fa-foursquare fa"></i></a></li>';
                if( !empty($cl_redata['linkedin']) )
                    echo '<li class="foursquare"><a href="'.esc_url($cl_redata['linkedin']).'" target="_blank"><i class="fa-linkedin fa"></i></a></li>';
                if( !empty($cl_redata['pinterest']) )
                    echo '<li class="pinterest"><a href="'.esc_url($cl_redata['pinterest']).'" target="_blank"><i class="fa-pinterest fa"></i></a></li>';
                if( !empty($cl_redata['youtube']) )
                    echo '<li class="youtube"><a href="'.esc_url($cl_redata['youtube']).'" target="_blank"><i class="fa-youtube fa"></i></a></li>';
                if( !empty($cl_redata['email']) )
                    echo '<li class="email"><a href="'.esc_url($cl_redata['email']).'" target="_blank"><i class="fa-envelope fa"></i></a></li>';
                if( !empty($cl_redata['instagram']) )
                    echo '<li class="email"><a href="'.esc_url($cl_redata['instagram']).'" target="_blank"><i class="fa-instagram fa"></i></a></li>';
    
            echo '</ul>';
    
            echo codeless_complex_esc($after_widget);
    
        }
    
        function update($new_instance, $old_instance){
    
            $instance = array();
    
            $instance['title'] = $new_instance['title'];
    
            $instance['text'] = $new_instance['text'];
    
            $instance['style'] = $new_instance['style'];
    
            return $instance;
    
        }
    
        function form($instance){
    
            $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'text' => '', 'style' => '') );
    
            $title = isset($instance['title']) ? $instance['title']: "";
    
            $text = isset($instance['text']) ? $instance['text']: "";
    
            $style = isset($instance['style']) ? $instance['style']: "";
    
            ?>
    
            <p>
    
                <label for="<?php echo esc_attr($this->get_field_id('title')); ?>">Title: 
    
                <input id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label>
    
            </p>
    
            <p>
    
                <label for="<?php echo esc_attr($this->get_field_id('text')); ?>">Text: 
    
                <textarea id="<?php echo esc_attr($this->get_field_id('text')); ?>" name="<?php echo esc_attr($this->get_field_name('text')); ?>" ><?php echo esc_attr($text); ?></textarea>
    
            </p>
    
            <p>
    
                <label for="<?php echo esc_attr($this->get_field_id('style')); ?>">Style: 
    
                <select id="<?php echo esc_attr($this->get_field_id('style')); ?>" name="<?php echo esc_attr($this->get_field_name('style')); ?>" value="<?php echo esc_attr($style); ?>">
                    <?php $values = array('Simple', 'Circle'); ?>
                    <?php foreach($values as $v): ?>
                        <?php $selected = ''; if(strtolower($v) == esc_attr($style) ) $selected = 'selected="selected"'; ?>
                        <option value="<?php echo strtolower($v) ?>" <?php echo codeless_complex_esc($selected) ?> ><?php echo codeless_complex_esc($v) ?></option>
                    <?php endforeach; ?>
                </select>
    
            </p>
    
            <?php
    
        }
    
    }
    ?>
    

    Let me know
    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: How to attach a picture on a topic

    Try to add this code on js/codeless-main.js after this line:

    self.isotopePortfolioGrid();

    probably line 116, add this ( after that line ):

    $(document.body).on('jetpack-lazy-loaded-image', function () {
         CL_FRONT.isotopePortfolioGrid();
     });

    Try this, can fix the jetpack lazy load issue

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: How to attach a picture on a topic

    Hmm, it’s probably caused by Jetpack Lazyload, also your website is loading very slow, maybe you have activated various plugins?

    Let me check and send you a solution

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Change \"ALL\" text in Portfolio List at Home Page

    You’re welcome! Let me know if you need further help!

    If you like our theme and support, please take 2 minutes to leave us a review on Themeforest, it’s important for our projects!

    Thank You so Much

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Custom Code Problem

    You’re welcome!

    Please, if you like our theme and support, take 2 minutes to leave us a review on Themeforest, it’s important for us!

    Thank you so much!

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Offset for Sticky Menu with Anchor tags.

    Oh, how it’s possible ?!

    Sorry for the late response we was on holiday yestarday.

     

    Please try to edit this code:

    $(document).on('click', 'a[href^="#"]', function(event) {
      // Click events are captured before hashchanges. Timeout
      // causes offsetAnchor to be called after the page jump.
      window.setTimeout(function() {
        offsetAnchor();
      }, 0);
    });

    the a[href^=”#”] part replace with
    a[href^=”/activities#”]

    Let me know

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Problem search page

    Hello,

    Sorry for the late response, we was on holiday yesterday. Nice to hear you that everything is good :)

    About the categories, use the Product Filter by Categories Widget.

    Let me know if you need further help with your project.

     

    Please take 2 minutes to update your review on themeforest. Sorry for any inconvenience.

     

    Thanks

     

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: Social widget in footer sidebar dissapeared after updating the theme

    This probably a bug from the last update, added on update list.

    Can you please send me credentials so I can fix directly on your site?

    Thanks

    6 years, 11 months ago Ludjon
    Keymaster
    in reply to: How to attach a picture on a topic

    Try this https://imgur.com/upload and send back the link

    Thanks

Viewing 15 posts - 1,201 through 1,215 (of 1,583 total)
← 1 2 3 … 80 81 82 … 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