Support only during business hours : Monday to friday, from 8:30 am – 5:30 pm CEST

Due to the decrease in our staff due to vacations, our response time may be longer.

Be sure we're doing our best to manage your topic as soon as possible.

Googles Meta description

This topic is resolved
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • thomas vierstraete
    Participant
    • 4 Topics
    • 9 Posts
    @vierthom

    Dear,
    when searching for my website on google, it shows me the demo meta description “Gwangi offers you the opportunity to simply accelerate this process by finding out which is right for you and maybe find your life partner.’.
    Where can I change this? Where is this piece of text stored?
    Thomas

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi Thomas,

    This description seems generated and stored by Google using the text displayed on the homepage Hero section.

    We recommend you to install Yoast SEO to edit this. It’s one of the best solution to improve your SEO ranking and customize your page titles, meta descriptions and so much more.

    For the best integration with Gwangi, make sure to also install Grimlock for Yoast SEO, our free add-on plugin for Grimlock and Gwangi. You can download it for free by clicking the following link:
    https://files.themosaurus.com/grimlock-wordpress-seo/grimlock-wordpress-seo.zip

    Finally, please remember that it takes several hours or days before you see the results of your changes in Google. The bot needs to review your changes and index them.

    We hope this helps. ?

    Best regards,

    thomas vierstraete
    Participant
    • 4 Topics
    • 9 Posts
    @vierthom

    thank you for pointing that out. I will download the extra plugins;
    another important question, I’m working with woocommerce and the event calendar + event tickets pro.
    But even after setting the page layout to minimal – it still has the header bar on top.
    please have a look at this page: https://www.singlesonthemove.be/kalender/
    I want to remove the image on top and have it minimal like all my other pages.

    Themosaurus
    Keymaster
    Themosaurus Support
    • 1 Topics
    • 1675 Posts
    @themosaurus

    Hi Thomas,

    Yes, that’s correct. You need custom PHP code to remove the header from these pages.
    Please add the following php code snippet to your website using the Code Snippets plugin (https://wordpress.org/plugins/code-snippets/):

    /**
     * Hide the Custom Header on events and shop pages.
     *
     * @since 1.0.0
     *
     * @param  array $args The array of arguments passed for the Custom Header.
     *
     * @return array       The updated array of arguments passed for the Custom Header.
     */
    function gwangi_custom_hide_custom_header( $args ) {
      $is_events_page = ( function_exists( 'tribe_is_month' ) && tribe_is_month() && ! is_tax() ) || // Month View Page
    	( function_exists( 'tribe_is_month' ) && tribe_is_month() && is_tax() ) || // Month View Category Page
    	( function_exists( 'tribe_is_past' ) && tribe_is_past() || function_exists( 'tribe_is_upcoming' ) && tribe_is_upcoming() && ! is_tax() ) || // List View Page
    	( function_exists( 'tribe_is_past' ) && tribe_is_past() || function_exists( 'tribe_is_upcoming' ) && tribe_is_upcoming() && is_tax() ) || // List View Category Page
    	( function_exists( 'tribe_is_week' ) && tribe_is_week() && ! is_tax() ) || // Week View Page
    	( function_exists( 'tribe_is_week' ) && tribe_is_week() && is_tax() ) || // Week View Category Page
    	( function_exists( 'tribe_is_day' ) && tribe_is_day() && ! is_tax() ) || // Day View Page
    	( function_exists( 'tribe_is_day' ) && tribe_is_day() && is_tax() ) || // Day View Category Page
    	( function_exists( 'tribe_is_map' ) && tribe_is_map() && ! is_tax() ) || // Map View Page
    	( function_exists( 'tribe_is_map' ) && tribe_is_map() && is_tax() ) || // Map View Category Page
    	( function_exists( 'tribe_is_photo' ) && tribe_is_photo() && ! is_tax() ) || // Photo View Page
    	( function_exists( 'tribe_is_photo' ) && tribe_is_photo() && is_tax() ) || // Photo View Category Page
    	is_singular( 'tribe_organizer' ) || // Single Organizer Page
    	is_singular( 'tribe_venue' ) || // Single Venue Page
    	is_singular( 'tribe_events' ); // Single Events Page
    
      $is_shop_page = ( function_exists( 'is_shop' ) && is_shop() ) || // Shop Page
    	( function_exists( 'is_product_category' ) && is_product_category() ) || // Product Category Page
    	( function_exists( 'is_product_tag' ) && is_product_tag() ) || // Product Tag Page
    	is_singular( 'product' ); // Single Product Page
      
      if ( $is_events_page || $is_shop_page ) {
    	$args['displayed'] = false;
      }
      return $args;
    }
    add_filter( 'grimlock_custom_header_args', 'gwangi_custom_hide_custom_header', 1000, 1 );
    
    /**
     * Remove the CSS classes on the body tag for the Custom Header on events and shop pages.
     *
     * @since 1.0.0
     *
     * @param  array $classes The array of CSS classes on the body tag for the Custom Header.
     *
     * @return array          The updated array of CSS classes on the body tag for the Custom Header.
     */
    function gwangi_custom_remove_body_classes( $classes ) {
      $is_events_page = ( function_exists( 'tribe_is_month' ) && tribe_is_month() && ! is_tax() ) || // Month View Page
    	( function_exists( 'tribe_is_month' ) && tribe_is_month() && is_tax() ) || // Month View Category Page
    	( function_exists( 'tribe_is_past' ) && tribe_is_past() || function_exists( 'tribe_is_upcoming' ) && tribe_is_upcoming() && ! is_tax() ) || // List View Page
    	( function_exists( 'tribe_is_past' ) && tribe_is_past() || function_exists( 'tribe_is_upcoming' ) && tribe_is_upcoming() && is_tax() ) || // List View Category Page
    	( function_exists( 'tribe_is_week' ) && tribe_is_week() && ! is_tax() ) || // Week View Page
    	( function_exists( 'tribe_is_week' ) && tribe_is_week() && is_tax() ) || // Week View Category Page
    	( function_exists( 'tribe_is_day' ) && tribe_is_day() && ! is_tax() ) || // Day View Page
    	( function_exists( 'tribe_is_day' ) && tribe_is_day() && is_tax() ) || // Day View Category Page
    	( function_exists( 'tribe_is_map' ) && tribe_is_map() && ! is_tax() ) || // Map View Page
    	( function_exists( 'tribe_is_map' ) && tribe_is_map() && is_tax() ) || // Map View Category Page
    	( function_exists( 'tribe_is_photo' ) && tribe_is_photo() && ! is_tax() ) || // Photo View Page
    	( function_exists( 'tribe_is_photo' ) && tribe_is_photo() && is_tax() ) || // Photo View Category Page
    	is_singular( 'tribe_organizer' ) || // Single Organizer Page
    	is_singular( 'tribe_venue' ) || // Single Venue Page
    	is_singular( 'tribe_events' ); // Single Events Page
    
      $is_shop_page = ( function_exists( 'is_shop' ) && is_shop() ) || // Shop Page
    	( function_exists( 'is_product_category' ) && is_product_category() ) || // Product Category Page
    	( function_exists( 'is_product_tag' ) && is_product_tag() ) || // Product Tag Page
    	is_singular( 'product' ); // Single Product Page
      
      if ( $is_events_page || $is_shop_page ) {
    	unset( $classes[ array_search( 'grimlock--custom_header-displayed',          $classes, true ) ] );
    	unset( $classes[ array_search( 'grimlock--custom_header-title-displayed',    $classes, true ) ] );
    	unset( $classes[ array_search( 'grimlock--custom_header-subtitle-displayed', $classes, true ) ] );
      }
      return $classes;
    }
    add_filter( 'body_class', 'gwangi_custom_remove_body_classes', 1000, 1 );

    If you want to know more about this plugin and how it works, you can also refer to this article of our documentation for more information about Code Snippets:

    Adding Custom PHP Without Changing Your Child Theme

    This should solve your issue. ?

    Best regards,

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Googles Meta description’ is closed to new replies.

Troubleshooting Demo Imports

You're trying to setup your theme but you're experiencing errors when importing the demo content? Or you've just followed the setup guide but your website doesn't look exactly like our demo? These are common issues for which you can find easy and quick fixes.

Happy With our Support So Far?

Feel free to review our theme on Themeforest! It helps us making our products more known to new potential customers, which allow us more time to improve the quality and develop new features. #SharingIsCaring ❤️

Discover MatchPress

Skip • Like • Super-Like

Add powerful matching features like Member likes, skips, super likes, conditional private messaging and much more.

Setup Your Cera or Gwangi powered Community Website and Turn it into an iOS and Android App

15% discount for Cera users

To unleash the full power of your Cera or Gwangi theme, we have partnered with the Zipline team. Your community website can now be fully setup and turned into your very own custom app for iOS and Android.

Whether you've newly acquired the theme or already got your site up and running, Zipline got you covered. And we got you an incredible discount.

Holiday, Weather & Festive effects
to pimp your WordPress Site