Forum Replies Created
-
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
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
You’re welcome!
If you like our theme and support please leave us a review on themeforest, it’s important for us
Thanks
in reply to: Problem search pageSorry 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
Thanksin reply to: How to attach a picture on a topicYou’re welcome! Let me know if you need further help!
If you can, please help us with a review on Themeforest :)
Regards
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
Thanksin reply to: How to attach a picture on a topicTry 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
in reply to: How to attach a picture on a topicHmm, 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
in reply to: Change \"ALL\" text in Portfolio List at Home PageYou’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
in reply to: Custom Code ProblemYou’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!
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
in reply to: Problem search pageHello,
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
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
in reply to: How to attach a picture on a topicTry this https://imgur.com/upload and send back the link
Thanks