Hello,
Please provide us with WP Dashboard credentials in private content.
Best regards,
Jack Richardson.
Hello,
Please provide us with WP Dashboard credentials in private content.
Best regards,
Jack Richardson.
Hello,
You may try to use this plugin https://wordpress.org/plugins/iframe/ .
Also read these articles:
https://wordpress.org/support/topic/how-to-add-an-iframe
https://85ideas.com/plugins/best-iframe-plugins-for-wordpress/
http://www.sean-barton.co.uk/2013/07/create-simple-shortcode-embed-iframe-wordpress/#.Vnwkd17APz8
Best regards,
Jack Richardson.
Hello,
You’re welcome.
Best regards,
Jack Richardson.
Hello,
It was the issue with some files in the new theme package so I replaced them with the fixed ones.
Please take our apologies for such inconveniences.
Best regards,
Jack Richardson.
Hello,
Add “Button” layer instead of the current code you are using for buttons on slider http://prntscr.com/9i2cqa and configure it to your needs http://prntscr.com/9i2beq
Best regards,
Jack Richardson.
Hello,
Please take our apologies but VC element doesn’t have sorting.
Unfortunately it can’t added.
Best regards,
Jack Richardson.
Hello,
Please provide us with correct WP Dashboard credentials in private content.
Best regards,
Jack Richardson.
Hello,
To edit contact form you need copy this function to file functions.php in the child theme and make changes you need:
if(!function_exists('et_contact_form')) {
function et_contact_form($atts) {
extract( shortcode_atts( array(
'class' => ''
), $atts ) );
$captcha_instance = new ReallySimpleCaptcha();
$captcha_instance->bg = array( 244, 80, 80 );
$word = $captcha_instance->generate_random_word();
$prefix = mt_rand();
$img_name = $captcha_instance->generate_image( $prefix, $word );
$captcha_img = ETHEME_CODE_URL.'/inc/really-simple-captcha/tmp/'.$img_name;
ob_start();
?>
<div id="contactsMsgs"></div>
<form action="<?php the_permalink(); ?>" method="get" id="contact-form" class="contact-form <?php echo $class; ?>">
<div class="form-group">
<p class="form-name">
<label for="name" class="control-label"><?php _e('Name and Surname', ETHEME_DOMAIN) ?> <span class="required">*</span></label>
<input type="text" name="contact-name" class="required-field form-control" id="contact-name">
</p>
</div>
<div class="form-group">
<p class="form-name">
<label for="contact-email" class="control-label"><?php _e('Email', ETHEME_DOMAIN) ?> <span class="required">*</span></label>
<input type="text" name="contact-email" class="required-field form-control" id="contact-email">
</p>
</div>
<div class="form-group">
<p class="form-name">
<label for="contact-website" class="control-label"><?php _e('Website', ETHEME_DOMAIN) ?></label>
<input type="text" name="contact-website" class="form-control" id="contact-website">
</p>
</div>
<div class="form-group">
<p class="form-textarea">
<label for="contact_msg" class="control-label"><?php _e('Message', ETHEME_DOMAIN); ?> <span class="required">*</span></label>
<textarea name="contact-msg" id="contact-msg" class="required-field form-control" cols="30" rows="7"></textarea>
</p>
</div>
<div class="captcha-block">
<img src="<?php echo $captcha_img; ?>">
<input type="text" name="captcha-word" class="captcha-input">
<input type="hidden" name="captcha-prefix" value="<?php echo $prefix; ?>">
</div>
<p class="pull-right">
<input type="hidden" name="contact-submit" id="contact-submit" value="true" >
<span class="spinner"><?php _e('Sending...', ETHEME_DOMAIN) ?></span>
<button class="btn btn-black big" id="submit" type="submit"><?php _e('Send message', ETHEME_DOMAIN) ?></button>
</p>
<div class="clearfix"></div>
</form>
<?php
$output = ob_get_contents();
ob_end_clean();
return $output;
}
}
and add this code to child functions.php:
function Etheme_Recent_Posts_Widget() {
$widget_ops = array('classname' => 'etheme_widget_recent_entries', 'description' => __( "The most recent posts on your blog (Etheme Edit)", ETHEME_DOMAIN) );
parent::__construct('etheme-recent-posts', '8theme - '.__('Recent Posts', ETHEME_DOMAIN), $widget_ops);
$this->alt_option_name = 'etheme_widget_recent_entries';
add_action( 'save_post', array(&$this, 'flush_widget_cache') );
add_action( 'deleted_post', array(&$this, 'flush_widget_cache') );
add_action( 'switch_theme', array(&$this, 'flush_widget_cache') );
}
function widget($args, $instance) {
$cache = wp_cache_get('etheme_widget_recent_entries', 'widget');
if ( !is_array($cache) )
$cache = array();
if ( isset($args['widget_id']) && isset($cache[$args['widget_id']]) ) {
echo $cache[$args['widget_id']];
return;
}
ob_start();
extract($args);
$box_id = rand(1000,10000);
$title = apply_filters('widget_title', empty($instance['title']) ? false : $instance['title']);
if ( !$number = (int) $instance['number'] )
$number = 10;
else if ( $number < 1 )
$number = 1;
else if ( $number > 15 )
$number = 15;
$slider = (!empty($instance['slider'])) ? (int) $instance['slider'] : false;
$r = new WP_Query(array('posts_per_page' => $number, 'post_type' => 'post', 'post_status' => 'publish', 'ignore_sticky_posts' => 1));
if ($r->have_posts()) : ?>
<?php echo $before_widget; ?>
<?php if ( $title ) echo $before_title . $title . $after_title; ?>
<?php if($slider): ?>
<div class="owl-carousel blogCarousel slider-<?php echo $box_id; ?>">
<?php endif; ?>
<ul class="blog-post-list slide-item">
<?php $i=0; while ($r->have_posts()) : $r->the_post(); $i++; ?>
<?php
if ( get_the_title() ) $title = get_the_title(); else $title = get_the_ID();
$title = trunc($title, 10);
?>
<li>
<div class="media">
<a class="pull-left" href="#">
<time class="date-event"><span class="number"><?php the_time('d'); ?></span> <?php the_time('M'); ?></time>
</a>
<div class="media-body">
<h4 class="media-heading"><a href="<?php the_permalink() ?>"><?php echo $title; ?></a></h4>
<?php _e('by', ETHEME_DOMAIN) ?> <strong><?php the_author(); ?></strong> <?php the_time('M'); ?> <?php the_time('d'); ?> <?php the_time('y'); ?>
</div>
</div>
</li>
<?php if($i%2 == 0 && $i != $r->post_count): ?>
</ul>
<ul class="blog-post-list slide-item">
<?php endif; ?>
<?php endwhile; ?>
</ul>
<?php if($slider): ?>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
jQuery(".slider-<?php echo $box_id; ?>").owlCarousel({
items:1,
navigation: true,
lazyLoad: true,
rewindNav: false,
addClassActive: true,
itemsCustom: [1600, 1]
});
});
</script>
<?php endif; ?>
<?php echo $after_widget; ?>
<?php
wp_reset_query(); // Restore global post data stomped by the_post().
endif;
if(isset($args['widget_id'])) {
$cache[$args['widget_id']] = ob_get_flush();
wp_cache_add('etheme_widget_recent_entries', $cache, 'widget');
}
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['number'] = (int) $new_instance['number'];
$instance['slider'] = (int) $new_instance['slider'];
$this->flush_widget_cache();
$alloptions = wp_cache_get( 'alloptions', 'options' );
if ( isset($alloptions['etheme_widget_recent_entries']) )
delete_option('etheme_widget_recent_entries');
return $instance;
}
function flush_widget_cache() {
wp_cache_delete('etheme_widget_recent_entries', 'widget');
}
function form( $instance ) {
$title = esc_attr($instance['title']);
if ( !$number = (int) $instance['number'] )
$number = 5;
$slider = (int) $instance['slider'];
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', ETHEME_DOMAIN); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of posts to show:', ETHEME_DOMAIN); ?></label>
<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /><br />
<small><?php _e('(at most 15)', ETHEME_DOMAIN); ?></small></p>
<?php etheme_widget_input_checkbox(__('Enable slider', ETHEME_DOMAIN), $this->get_field_id('slider'), $this->get_field_name('slider'),checked($slider, true, false), 1); ?>
<?php
}
You need add under all content in child functions.php.
If you have any difficulties provide us with correct WP Dashboard credentials.
Best regards,
Jack Richardson.
Hello,
Portfolio page is created as described in the documentation https://www.8theme.com/demo/docs/blanco/#!/portfolio and it shows projects that you created in Portfolio section in WP Dashboard.
To show “Recent Works” slider you need enable it in “Blanco – Theme Settings” > Portfolio > tick “Show Recent Works”.
To remove icons add this code in custom.css file:
.portfolio-item .portfolio-descr .button {
display: none;
}
To create custom.css you need rename default.custom.css to custom.css in wp-content/themes/blanco directory via FTP and enable it in Blanco – Theme Settings, tick “Enable Custom CSS file”.
Best regards,
Jack Richardson.
Hello,
The problem was with your child theme configuration.
You wrote in child style.css:
@import url("../blanc/style.css");
but parent theme folder is “blanco”, not “blanc”. I’ve edited it.
Clear browser cache and check tabs now.
Best regards,
Jack Richardson.
Hello,
You’re welcome.
Best regards,
Jack Richardson.
Hello,
Please update the theme to the latest version and Woocommerce as well.
Before update delete “woocommerce” folder in the directory wp-content/themes/legenda/ and it’ll be reuploaded from a new theme package.
Also update all required plugins https://www.8theme.com/download-plugins/ .
Don’t forget to create back up of your files and database before starting update process!
Best regards,
Jack Richardson.
Hello,
Please clarify what exactly you want to edit and to what content, and we’ll help you with it.
Best regards,
Jack Richardson.
Hello,
This is related to Woocommerce configuration.
You may try the solution described here:
http://stackoverflow.com/questions/22753220/display-tags-on-catalogue-pages-woo-commerce-wordpress
Best regards,
Jack Richardson.
Hello,
You enabled “Full height row” option in the row settings in “Footer” static block.
I’ve disabled it and now black space is removed.
To change widget title color I’ve added this code in Global Custom CSS:
footer .container .widgettitle {
color: #fff;
}
Please check footer now.
Best regards,
Jack Richardson.
Hello,
I’ve reuploaded theme files for version 2.10.0 and renamed the old one to legenda_old_2.9.2.
Please check your site now.
Best regards,
Jack Richardson.
Hello,
To remove some fields on Checkout page you can refer to this article:
http://www.wpmayor.com/how-to-remove-the-billing-details-from-woocommerce-checkout/
To add more fields in registration form you need edit the file et-registration.php and add the needed fields according to examples as other fields are added, i.e.
<p class="form-row form-row-first">
<label><?php _e( "Enter your name", ETHEME_DOMAIN ) ?> <span class="required">*</span></label>
<input type="text" name="name" class="text" value="" />
</p>
Best regards,
Jack Richardson.
Hello,
1. Add this code in custom.css:
.menu .nav-sublist-dropdown ul > li > a {
font-size: 9px;
}
2. Use this css code:
.header-type-6 .top-bar a {
font-size: 9px;
}
3.
.shop-text, .shop-text .total {
font-size: 10px;
}
.cart-popup-container .cart-popup .empty {
font-size: 10px;
}
4.
.price {
font-size: 18px !important;
}
5.
ins {
font-size: 20px;
}
Write font size values you need.
6.
span.sku_wrapper {
display: none;
}
Best regards,
Jack Richardson.
Hello,
Please update the theme to the latest version and Woocommerce as well.
Before update delete “woocommerce” folder in the directory wp-content/themes/classico/ and it’ll be reuploaded from a new theme package.
Also update all required plugins https://www.8theme.com/download-plugins/ .
Don’t forget to create back up of your files and database before starting update process!
(it’s for Legenda theme but the process is the same).
Best regards,
Jack Richardson.
Hello,
Yes, you can download a new version and update the theme.
Best regards,
Jack Richardson.
Hello,
Please disable the option “Ajax “Add To Cart”” in Theme Options > Single Product Page and check simple products then.
Best regards,
Jack Richardson.
Hello,
Plugins must be updated manually via FTP.
You need update Revolution Slider, Visual Composer, Ultimate VC Addons plugins.
Best regards,
Jack Richardson.
Hello,
Please show a page where you see those errors.
Thank you.
Best regards,
Jack Richardson.
Hello,
You’ve been replied in your other topic.
Please check it.
Best regards,
Jack Richardson.
Hello,
You’re using very old versions of required plugins.
Update them https://www.8theme.com/download-plugins/ and check your site after that.
Best regards,
Jack Richardson.
Hello,
This error has been fixed in the latest version 2.5.1. So you shouldn’t worry.
Best regards,
Jack Richardson.
Hello,
As I see the button is on the right:
http://storage3.static.itmages.com/i/15/1223/h_1450880741_4582172_06b5a76508.png
Please show a screenshot what button you mean.
Best regards,
Jack Richardson.
Hello,
Please show a direct page where you added the shortcode.
Best regards,
Jack Richardson.
Hello,
As I see the code which I provided before is working as it should. There are no borders on the top menu. Please clear browser cache before you check the site.
Best regards,
Jack Richardson.
Hello,
Try to use this code in custom.css file:
.product-loop {
display: inline-block;
}
How to create custom.css you can watch in this tutorial
Best regards,
Jack Richardson.