Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
In this case you have to edit the file et-links.php in wp-content/themes/blanco directory and write the code of the links you need.
Unfortunately it can’t be done in Theme Options.
Regards,
Eva Kemp.
Hello,
Please update the theme to the latest version.
Before update delete “woocommerce” folder in the directory wp-content/themes/blanco/ 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).
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
You shouldn’t pay attention to the version that is written in your child style.css file. You can write any version you want there.
The current version that you’re using is written in wp-content/themes/woopress/style.css. So you shouldn’t worry about what version is written your child style.css.
Regards,
Eva Kemp.
Hello,
Please provide us with full permissions to be able to view all settings in wp-admin panel.
Regards,
Eva Kemp.
Hello,
How to add custom font is written in our blog:
https://www.8theme.com/blog/how-to-add-custom-fonts-in-wordpress-themes/
Please read it.
Regards,
Eva Kemp.
Hello,
I’ve added CSS class “menu-button” to your menu item in Appearance > Menus and added this code in Custom CSS:
.menu-button {
border: 1px solid rgb(155, 66, 27);
background-color: rgb(155, 66, 27);
margin-bottom: 5px !important;
}
.menu-button a{
padding: 10px !important;
}
.menu-button a:hover {
color: white !important;
}
Please check menu button now.
Regards,
Eva Kemp.
Hello,
You can speed up the site following the suggestions from these articles:
http://codex.wordpress.org/WordPress_Optimization
http://techtage.com/speeding-up-wordpress-sites/
http://www.sparringmind.com/speed-up-wordpress/
https://www.inmotionhosting.com/support/website/wordpress/heartbeat-ajax-php-usage#heartbeat-in-action
Also optimize your images:
http://premium.wpmudev.org/blog/10-best-image-optimization-plugins-to-speed-up-your-wordpress-site/
http://www.elegantthemes.com/blog/tips-tricks/optimize-images-for-your-wordpress-website
Regards,
Eva Kemp.
Hello,
If you’re using child theme now then the version of your child theme is shown, which is written in child style.css file. You don’t need to update child theme. To check the version of the parent theme go to wp-content/themes/woopress directory on your server and view style.css file. Theme version is written there.
Concerning the plugins, please provide us with wp-admin panel credentials to check them.
Regards,
Eva Kemp.
Hello,
Please add this code in custom.css file:
.navbar-right {
min-width: 50px !important;
}
.navbar-collapse.collapse {
float: right;
}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
Regards,
Eva Kemp.
Hello,
I’ve checked elements in Visual Composer editor and haven’t seen any issues:
http://storage2.static.itmages.com/i/15/0724/h_1437730151_4366573_f105730629.png
Have you resolved the issue?
Regards,
Eva Kemp.
Hello,
Also provide us with the link to your site and wp-admin panel credentials.
Please look at the screenshot:
http://storage2.static.itmages.com/i/15/0724/h_1437727830_4709173_32e29f295b.png
Thank you.
Regards,
Eva Kemp.
Hello @Brockway,
We can recreate the footer for you if you have difficulties with it.
Please provide us with wp-admin panel credentials in Private Content.
Regards,
Eva Kemp.
Hello,
The code “\e116” isn’t used for FontAwesome font, but for Glyphicons font. Such code won’t work with our theme.
You should use code from this site http://fontawesome.bootstrapcheatsheets.com/ .
7. I’ve added this code in /wp-content/themes/royal-child/functions.php:
remove_shortcode('contact_form', 'et_contact_form');
add_shortcode('contact_form', 'et_contact_form_child');
add_action('init','remove_parent_functions');
function et_contact_form($atts) {
extract( shortcode_atts( array(
'class' => ''
), $atts ) );
$captcha_instance = new ReallySimpleCaptcha();
$captcha_instance->bg = array( 204, 168, 97 );
$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('Full Name', 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('E-Mail', 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('Telephone', 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;
}
I’ve changed “email” to “e-mail” on “Lost Password” page in the file /wp-content/themes/royal-child/woocommerce/form-lost-password.php.
Please check.
Regards,
Eva Kemp.
Hello,
We can’t log in to your wp-admin panel.
Please provide us with the correct login details.
Thank you.
Regards,
Eva Kemp.
Hello,
The same thing persists with our default icon “\f039” too.
It’s not shown in fixed header when mobile menu is opened.
Please take our apologies but it can’t be done for fixed header.
Regards,
Eva Kemp.
Hello,
Please add this code in custom.css file:
@media (max-width: 480px) {.product-content {
display: inline-block !important;
}}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
Regards,
Eva Kemp.
Hello,
The reason is you added Instagram widget to the whole Footer area and not to static block. I’ve created a separate sidebar with Instagram widget and added it as Widgetised Sidebar element to the footer via Static Blocks and added this code in Custom CSS:
.widget-container.null-instagram-feed li img {
width: 100% !important;
}
Please check your footer now.
Regards,
Eva Kemp.
Hello @royal,
You need ask your host to activate allow_url_fopen function and increase values for upload_max_filesize and post_max_size functions.
After that try to install templates.
Regards,
Eva Kemp.
Hello,
Please show screenshots of the issue and provide us with wp-admin panel credentials in Private Content.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
You should add images to Description section in Products > Categories > edit a category.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
I’ve changed the settings for each video, I’ve ticked “Next Slide On End”:
http://storage2.static.itmages.com/i/15/0723/h_1437669364_5650595_015b344641.png
Please check your slider now.
Regards,
Eva Kemp.
Hello,
The screenshot is absent in your post.
Please resend it.
Also provide us with the link to your site and wp-admin panel credentials.
Thank you.
Regards,
Eva Kemp.
Hello,
Go to Pages > edit a page > select element “Post Grid” in Visual Composer editor.
Regards,
Eva Kemp.
Hello,
Please show a screenshot how you’d like the button to be displayed.
Regards,
Eva Kemp.
Hello,
Yes, you’re right.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.