You’re welcome!
What element do you use to display posts on your home page? Please, provide link to page where we’ll be able to see them
Regards,
Rose Tyler.
Hello,
Please add this code in Theme Options > Custom CSS:
input.wpcf7-form-control.wpcf7-text {
width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
width: 100%;
}
Regards,
Rose Tyler.
Hello,
Please set Excerpt length (words) in Theme Options -> Blog Layout, for example 99999. Next, you need to remove the tag More http://prntscr.com/bm10tb.
To remove Read more button add this code in Theme Options > Custom CSS:
span.btn.big.filled.pull-right.read-more {
display: none;
}
Regards,
Rose Tyler.
Hello,
We tried to fix the problem but seems js files are cached. Could do disable server/cloud flare cache if you use it.
Regards,
Rose Tyler.
Hello,
If you have the latest version WooCommerce, you can remove the € sign by adding this code in Theme Options > Custom CSS:
.woocommerce-Price-currencySymbol {
display: none;
}
Or read this article https://docs.woothemes.com/document/add-a-custom-currency-symbol/.
We do not have strange symbols on our test site. If in the theme files have been any changes, please move all changes in child theme https://codex.wordpress.org/Child_Themes. We have already created and included child theme in theme package. You just need to find royal-child folder in theme package and upload it to /wp-content/themes/ folder.
After transferring the changes, try to re-upload the original theme files and check if strange symbols disappears.
New version of WooCommerce supports warning message. Within next days we’ll release new theme update that will be compatible with WC 2.6. Please, wait a few days and update the theme + WC to the latest versions.
Regards,
Rose Tyler.
No, this code does not work for all the headings and breadcrumbs. You need to change it depending on where exactly you want to make titles shorter. We just gave you the point into the right direction and now you can change the code according to your needs. If you need additional customization you can order our customization service https://www.8theme.com/customization-services/
Regards,
Rose Tyler.
You’re welcome!
If you want to make equal size for all the product images, either upload images with the same sizes or enable Hard Crop in WooCommerce-> Settings-> Product -> Display and Regenerate thumbnails after that.
Regards,
Rose Tyler.
Hello,
Also, you can try to add something like the following code in your child theme functions.php file.
add_filter( 'the_title', 'shorten_my_title', 10, 2 );
function shorten_my_title( $title, $id ) {
if ( is_shop() && get_post_type( $id ) === 'product' && strlen( $title ) > 50 ) {
return substr( $title, 0, 50 ) . '...'; // change 50 to the number of characters you want to show
} else {
return $title;
}
}
Regards,
Rose Tyler.
Hello,
Please, specify Popup background image in Theme Options -> Promo Popup.
By default you can see demo content there, navigate to Theme Options > General > Disable Footer demo content. To create a footer, please, create statics block with content you need (detailed information https://www.8theme.com/demo/docs/legenda/#!/footer). If you don’t need Flickr just don’t add this element to your footer static block.
Regards,
Rose Tyler.
You’re welcome!
Regards,
Rose
Hello,
Please specify Excerpt length (words) in Theme Options> Blog Layout, for example 25