Grace Themes
Forum Replies Created
-
AuthorPosts
-
Grace Themes
MemberHi
Please use same size of photos for Photo Gallery section.
Regards
Grace ThemesGrace Themes
MemberHi Martin,
It’s due to the animation effects that are applied to homepage section. So section gets loaded or displayed on page scroll.
You can also remove this animation effect functionality
Go to Appearance -> Theme Options -> Basic Settings -> Disable Animation -> Check this to disable animation on scrollRegards
Grace ThemesGrace Themes
MemberHi Karl,
Please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and solve your issues quickly.
Regards
Grace ThemesGrace Themes
MemberHi Giancarlo,
You can update your WordPress to newer version 4.9.2
All of our themes are compatible to latest WordPress version.Regards
Grace ThemesGrace Themes
MemberHi Vinicius,
Can you please share your website URL so we can check and assist you quickly?
Regards
Grace ThemesGrace Themes
MemberHi Agata,
Thanks for your interest in purchasing Glamour World PRO theme.
1. The PRO theme is comes with several google fonts. You can easily change fonts of different homepage sections. The font color is also manageable for each sections.
2. You can remove the shadow from the title (boxed text section)
3. You can also use the header with logo image in the beginning of the menu bar with some changes in the css code.This theme has a ready to use demo content and images that allows you to set up your website in no time at all.
The most powerful feature of this theme is its Theme Options which will allow you to easily customize your website with clicks. So, now you no longer need to be a designer or a programmer to build customized websites. Theme Options allow you to toggle on and off features, adjust layouts, change colors, fonts, logo, favicon, background, add social links and custom CSS.
We provide documentation and user friendly support for any issues. If you have any questions regarding our WordPress themes, you can contact us through our support forum or you can mail us. Our support team is always ready to help you with any problems of customization.
Regards
Grace ThemesGrace Themes
MemberHi Paolo,
To setup and customize the Glamour World free theme, you need to create pages for slider, services and about section with featured image.
Then Go to Appearance -> Customize -> Slider / Services -> Select page
Please check the documentation
https://gracethemes.com/documentation/glamour-doc/#homepage-liteIf you are still getting any problem in setting them theme, please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and setup theme on your website quickly.
Regards
Grace ThemesGrace Themes
MemberHi
Please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and solve your issue quickly.
Regards
Grace ThemesGrace Themes
MemberYou are most Welcome
Grace Themes
MemberHi Erika,
Please send your website URL and WordPress admin login details for temporary at [email protected] so we can check and assist you quickly.
Regards
Grace ThemesGrace Themes
MemberHi Brette,
Can you please write in details what name you want to delete?
Please send us some screenshot to figure out the issues so we can check and assist you.Regards
Grace ThemesGrace Themes
MemberHi Karl,
You can use below shortcode in any of your page to display blog posts of specific category
(Select ‘Full Width’ page template for the page)[latestposts show="10" catid="10"]You need to change category ID.
Regards
Grace ThemesGrace Themes
MemberYou are most welcome..!
Grace Themes
MemberHi,
The contact form code is placed in custom-functions.php file
Go to Appearance -> Editor -> inc/custom-functions.php
at line no. 717 you will find the contact form functionfunction contactform_func
If you are getting any problem in translating the form fields, you can send your website URL and WordPress admin login details for temporary at [email protected] so we can check and assist you.
Regards
Grace ThemesGrace Themes
MemberHi Giancarlo,
To show photo gallery of specific category in your page
Go to Appearance -> Editor -> custom-functions.php
add below new code at the end of custom-functions.php file//[photogallery_cat] function photogallery_cat_shortcode_func( $atts ) { extract( shortcode_atts( array( 'show' => -1, 'category' => '', ), $atts ) ); $pfStr = ''; $pfStr .= '<div class="photobooth">'; $pfStr .= '<div class="row fourcol portfoliowrap"><div class="portfolio">'; $j=0; //query_posts('post_type=photogallery&posts_per_page='.$show); $args = array( 'post_type' => 'photogallery', 'posts_per_page' => $show, 'tax_query' => array( array( 'taxonomy' => 'gallerycategory', 'field' => 'ID', 'terms' => $category ), ) ); query_posts( $args ); if ( have_posts() ) : while ( have_posts() ) : the_post(); $j++; $videoUrl = get_post_meta( get_the_ID(), 'video_file_url', true); $imgSrc = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); $terms = wp_get_post_terms( get_the_ID(), 'gallerycategory', array("fields" => "all")); $slugAr = array(); foreach( $terms as $tv ){ $slugAr[] = $tv->term_id; } if ( $imgSrc[0]!='' ) { $imgUrl = $imgSrc[0]; }else{ $imgUrl = get_template_directory_uri().'/images/img_404.png'; } $pfStr .= '<div class="entry '.implode(' ', $slugAr).'"> <div class="holderwrap"> <a href="'.( ($videoUrl) ? $videoUrl : $imgSrc[0] ).'" data-rel="prettyPhoto[bkpGallery]"><img src="'.$imgSrc[0].'"/></a> <h5>'.get_the_title().'</h5> </div> </div>'; unset( $slugAr ); endwhile; else: $pfStr .= '<p>Sorry, photo gallery is empty.</p>'; endif; wp_reset_query(); $pfStr .= '</div></div>'; $pfStr .= '</div>'; return $pfStr; } add_shortcode( 'photogallery_cat', 'photogallery_cat_shortcode_func' );Now use this short code to display images of specific category.
You need to change photo gallery category ID in (category=”3″)[photogallery_cat category="3" show="10"]Please check and let me know your feedback.
Regards
Grace Themes -
AuthorPosts
