Spooky Savings Alert! Grab 15% OFF on Lifetime & All Themes Package. Use coupon code HALLOWEEN15 | Till Nov 10 Buy Now

WordPress Website Templates

Find Professional WordPress themes Easy and Simple to Setup

inner banner

Grace Themes

Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 2,060 total)
  • Author
    Posts
  • in reply to: Our Features – Photo Gallery #7503
    Grace Themes
    Member

    Hi

    Please use same size of photos for Photo Gallery section.

    Regards
    Grace Themes

    in reply to: Delay below the Slider #7493
    Grace Themes
    Member

    Hi 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 scroll

    Regards
    Grace Themes

    in reply to: Posts Shortcodes #7476
    Grace Themes
    Member

    Hi 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 Themes

    in reply to: Wordpress 4.9.2 #7460
    Grace Themes
    Member

    Hi Giancarlo,

    You can update your WordPress to newer version 4.9.2
    All of our themes are compatible to latest WordPress version.

    Regards
    Grace Themes

    in reply to: Align infobox to bottom #7455
    Grace Themes
    Member

    Hi Vinicius,

    Can you please share your website URL so we can check and assist you quickly?

    Regards
    Grace Themes

    in reply to: Featured font settings #7440
    Grace Themes
    Member

    Hi 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 Themes

    in reply to: info for setup #7439
    Grace Themes
    Member

    Hi 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-lite

    If 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 Themes

    in reply to: Delete page name all of them #7427
    Grace Themes
    Member

    Hi

    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 Themes

    in reply to: Contact form translation #7413
    Grace Themes
    Member

    You are most Welcome

    in reply to: servicios #7411
    Grace Themes
    Member

    Hi 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 Themes

    in reply to: Delete page name all of them #7407
    Grace Themes
    Member

    Hi 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 Themes

    in reply to: Posts Shortcodes #7397
    Grace Themes
    Member

    Hi 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 Themes

    in reply to: Who We Are Section #7396
    Grace Themes
    Member

    You are most welcome..!

    in reply to: Contact form translation #7386
    Grace Themes
    Member

    Hi,

    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 function

    function 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 Themes

    in reply to: category specific gallery #7382
    Grace Themes
    Member

    Hi 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

Viewing 15 posts - 1,186 through 1,200 (of 2,060 total)