Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
That text can be found in wp-content/themes/royal/languages/default.po file or in wp-content/themes/royal/woocommerce/single-product/related.php (line 30).
Regards,
Eva Kemp.
Hello,
Please provide us with a link to your site.
Thank you.
Regards,
Eva Kemp.
Hello,
Unfortunately there is no such possibility. Sorry.
Regards,
Eva Kemp.
Hello,
As I see social media icons are shown:
http://storage4.static.itmages.com/i/15/0525/h_1432552057_6617268_51ac9ba862.png
Please clear browser cache and check again.
Thank you.
Regards,
Eva Kemp.
Hello,
Then you need edit the file structure-*.php in the directory wp-content/themes/classico/headers according to the header type you’re using.
Regards,
Eva Kemp.
Hello,
Sorry for a delay.
I’ve added 2 lines in wp-config.php file:
define( 'WP_MEMORY_LIMIT', '1024M' );
define( 'WP_MAX_MEMORY_LIMIT', '1024M' );
Clear browser cache and try to add hover image again.
Thank you.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
You can change font size in Theme Options > Typography.
Regards,
Eva Kemp.
Hello,
You can create an image with your text content with some program, Photoshop for example and upload this image as a logo.
Regards,
Eva Kemp.
Hello,
I’ve reuploaded “fonts” folder in the directory wp-content/themes/legenda/css.
Please clear your browser cache and check the site.
Regards,
Eva Kemp.
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
Please read our documentation:
https://www.8theme.com/demo/docs/legenda/index.html#!/visual_composer
Thank you.
Regards,
Eva Kemp.
Hello,
We don’t see WPML widget in the header.
Please show a screenshot where you added it.
Thank you.
Regards,
Eva Kemp.
Hello,
Sorry, but your query “CUSTOM FIELDS ADDING CONTINUOUSLY EVER TIME UPDATE THE PRODUCT” is a bit unclear.
Please clarify how we can replicate the issue.
Thank you.
Regards,
Eva Kemp.
Hello,
Please disable the plugin Password Protected and clear the cache https://www.8theme.com/blog/clearing-facebooks-share-cache/ , also clear your browser cache.
Thank you.
Regards,
Eva Kemp.
Hello,
Please try to use this code in custom.css file:
h2.title {
top: 10px !important;
}
Thank you.
Regards,
Eva Kemp.
Hello,
Please add this code in .htaccess file:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
Thank you.
Regards,
Eva Kemp.
Hello,
We can’t log in to wp-admin panel:
http://storage1.static.itmages.com/i/15/0525/h_1432548617_8667433_b194d7b549.png
Please check the issue with your host.
Also as I see featured image is shown when a user is not logged in:
https://s3.amazonaws.com/fvd-data/notes/168674/1432548836-mssZ20/screen.png
Regards,
Eva Kemp.
Hello,
If you don’t want to use Wishlist you can disable Wishlist plugin in wp-admin > Plugins.
To center the price and button add this code in custom.css file:
.products-grid .product .add-to-container {
text-align: center;
}
Concerning the sidebar on a single product page I’ve added this code in custom.css file:
.span3.sidebar.sidebar-left.single-product-sidebar {
width: 14.5299% !important;
}
.sidebar-widget ul, #pages-2 ul {padding:0;text-transform:uppercase;font-size:13px;line-height:25px;font-weight:bold!important;}
Please check now.
Regards,
Eva Kemp.
Regards,
Eva Kemp.
Hello,
If email can’t be sent via Contact form 7 too then the issue isn’t with the theme.
You need contact your host and ask them to check mail logs on a server. There should be some errors why messages can’t be sent.
Regards,
Eva Kemp.
Hello,
Add this code in style.css of your child theme:
.blog-post, col-md-3.sidebar.sidebar-right {
margin-top: 20px !important;
}
* {
line-height: 1.5 !important;
}
Please provide us with links to Spanish blog page and to French blog page.
Thank you.
Regards,
Eva Kemp.
Hello,
You need copy all modified files in your child theme folder with the same directory structure as it is in the parent theme.
Regards,
Eva Kemp.
Hello,
You need replace old links with new ones in your database.
If you don’t know how to do this you need contact your host.
Also read this article:
https://codex.wordpress.org/Changing_The_Site_URL
Thank you.
Regards,
Eva Kemp.
Hello,
Try to add this code in custom.css file:
.header-vertical-enable .page-wrapper .header-type-vertical2 .header-custom-block {
position: relative !important;
top: 250px !important;
}
.header-vertical-enable .page-wrapper .header-type-vertical2 .container .navbar {
position: relative !important;
top: 200px !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,
You can close the first category by editing wp-content/themes/royal/js/etheme.js file. Find and comment out line 1652
$this.find('>li').first().find('.open-this').html(minusIcon).parent().addClass('opened').find('ul.children').show();
Thank you,
Regards,
Eva Kemp.
Hello,
In this case you need increase the width of your image adding this code in custom.css file:
.wpb_single_image img {
width: 418px !important;
}
and remove margin value:
.wpb_single_image {
margin-bottom: 0px !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,
You can disable captcha commenting or deleting the code in wp-content/themes/royal/framework/theme-functions.php (line 1580):
$captcha_instance = new ReallySimpleCaptcha();
if(!$captcha_instance->check( $_REQUEST['captcha-prefix'], $_REQUEST['captcha-word'] )) {
$return['status'] = 'error';
$return['msg'] = __('The security code you entered did not match. Please try again.', ETHEME_DOMAIN);
echo json_encode($return);
die();
}
and the line 1409:
$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;
and line 1436:
<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>
Regards,
Eva Kemp.
Hello,
1. Unfortunately custom logo can’t be set for Blog and Shop pages. You can only upload your image in Theme Options > Header > Logo image, but custom logo can be set for home page in the page editor in “Logo image for this page” section on the right side.
2. Please provide us with wp-admin panel credentials in Private Content.
3. Add this code in custom.css file:
.main-footer p {
font-size: 14px !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,
1. Please read our documentation:
https://www.8theme.com/demo/docs/royal/#!/3_one_page
2. Unfortunately custom logo can’t be set for Shop page. You can add other logo in Theme Options > Header > Logo image and upload a custom logo for your home page in Pages > edit home page > “Logo image for this page” on the right side of the editor.
3. You can edit those links in the file wp-content/themes/royal/framework/shortcodes.php (lines 1729-1761).
Regards,
Eva Kemp.